Skip to content

Commit bb9152d

Browse files
author
Phil Varner
authored
update default OpenSearch to 2.7 (#563)
1 parent 1665fbe commit bb9152d

File tree

5 files changed

+18
-3
lines changed

5 files changed

+18
-3
lines changed

.github/workflows/push.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
cache-dependency-path: package.json
2929
- uses: ankane/setup-opensearch@v1
3030
with:
31-
opensearch-version: 2.5
31+
opensearch-version: 2.7
3232
- name: Upgrade npm
3333
run: npm install -g npm@latest
3434
- name: Install dependencies

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
66
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
77

8+
## [Unreleased] - TBD
9+
10+
### Changed
11+
12+
- Default to OpenSearch 2.7
13+
814
## [2.2.3] - 2023-07-14
915

1016
### Changed

README.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66
- [Overview](#overview)
77
- [Architecture](#architecture)
88
- [Migration](#migration)
9+
- [2.4.x](#24x)
10+
- [OpenSearch Version 2.7](#opensearch-version-27)
911
- [0.x or 1.x -\> 2.x](#0x-or-1x---2x)
1012
- [Fine-grained Access Control](#fine-grained-access-control)
1113
- [Enabling Post-ingest SNS publishing](#enabling-post-ingest-sns-publishing)
@@ -129,6 +131,13 @@ apiLambda --> opensearch
129131

130132
## Migration
131133

134+
### 2.4.x
135+
136+
#### OpenSearch Version 2.7
137+
138+
- Update the `EngineVersion` setting in the serverless config file to `OpenSearch_2.7`
139+
and re-deploy
140+
132141
### 0.x or 1.x -> 2.x
133142

134143
#### Fine-grained Access Control

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
version: "3.8"
22
services:
33
opensearch:
4-
image: opensearchproject/opensearch:2.5.0
4+
image: opensearchproject/opensearch:2.7.0
55
ports:
66
- "127.0.0.1:9200:9200"
77
- "127.0.0.1:9300:9300"

serverless.example.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ resources:
182182
InstanceCount: 1
183183
DedicatedMasterEnabled: false
184184
ZoneAwarenessEnabled: false
185-
EngineVersion: OpenSearch_2.5
185+
EngineVersion: OpenSearch_2.7
186186
DomainEndpointOptions:
187187
EnforceHTTPS: true
188188
NodeToNodeEncryptionOptions:

0 commit comments

Comments
 (0)