Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update dockercomposefiles with additional release notes changes in 2.12.0 release #4464

Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions docker/release/dockercomposefiles/docker-compose-1.x.yml
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -9,20 +9,20 @@
- node.name=opensearch-node1
- discovery.seed_hosts=opensearch-node1,opensearch-node2
- cluster.initial_master_nodes=opensearch-node1,opensearch-node2
- bootstrap.memory_lock=true # along with the memlock settings below, disables swapping
- OPENSEARCH_JAVA_OPTS=-Xms512m -Xmx512m # minimum and maximum Java heap size, recommend setting both to 50% of system RAM
- bootstrap.memory_lock=true # along with the memlock settings below, disables swapping

Check warning on line 12 in docker/release/dockercomposefiles/docker-compose-1.x.yml

View workflow job for this annotation

GitHub Actions / yaml-lint

12:36 [comments] too few spaces before comment
- "OPENSEARCH_JAVA_OPTS=-Xms512m -Xmx512m" # minimum and maximum Java heap size, recommend setting both to 50% of system RAM

Check failure on line 13 in docker/release/dockercomposefiles/docker-compose-1.x.yml

View workflow job for this annotation

GitHub Actions / yaml-lint

13:9 [quoted-strings] string value is not quoted with single quotes
ulimits:
memlock:
soft: -1
hard: -1
nofile:
soft: 65536 # maximum number of open files for the OpenSearch user, set to at least 65536 on modern systems
soft: 65536 # maximum number of open files for the OpenSearch user, set to at least 65536 on modern systems

Check warning on line 19 in docker/release/dockercomposefiles/docker-compose-1.x.yml

View workflow job for this annotation

GitHub Actions / yaml-lint

19:21 [comments] too few spaces before comment
hard: 65536
volumes:
- opensearch-data1:/usr/share/opensearch/data
ports:
- 9200:9200
- 9600:9600 # required for Performance Analyzer
- 9600:9600 # required for Performance Analyzer

Check warning on line 25 in docker/release/dockercomposefiles/docker-compose-1.x.yml

View workflow job for this annotation

GitHub Actions / yaml-lint

25:19 [comments] too few spaces before comment
networks:
- opensearch-net
opensearch-node2:
Expand All @@ -34,7 +34,7 @@
- discovery.seed_hosts=opensearch-node1,opensearch-node2
- cluster.initial_master_nodes=opensearch-node1,opensearch-node2
- bootstrap.memory_lock=true
- OPENSEARCH_JAVA_OPTS=-Xms512m -Xmx512m
- "OPENSEARCH_JAVA_OPTS=-Xms512m -Xmx512m"

Check failure on line 37 in docker/release/dockercomposefiles/docker-compose-1.x.yml

View workflow job for this annotation

GitHub Actions / yaml-lint

37:9 [quoted-strings] string value is not quoted with single quotes
ulimits:
memlock:
soft: -1
Expand All @@ -52,9 +52,9 @@
ports:
- 5601:5601
expose:
- '5601'
- "5601"

Check failure on line 55 in docker/release/dockercomposefiles/docker-compose-1.x.yml

View workflow job for this annotation

GitHub Actions / yaml-lint

55:9 [quoted-strings] string value is not quoted with single quotes
environment:
OPENSEARCH_HOSTS: https://opensearch-node1:9200
OPENSEARCH_HOSTS: '["https://opensearch-node1:9200","https://opensearch-node2:9200"]'
networks:
- opensearch-net

Expand Down
14 changes: 7 additions & 7 deletions docker/release/dockercomposefiles/docker-compose-2.x.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,21 +9,21 @@
- node.name=opensearch-node1
- discovery.seed_hosts=opensearch-node1,opensearch-node2
- cluster.initial_cluster_manager_nodes=opensearch-node1,opensearch-node2
- bootstrap.memory_lock=true # along with the memlock settings below, disables swapping
- OPENSEARCH_JAVA_OPTS=-Xms512m -Xmx512m # minimum and maximum Java heap size, recommend setting both to 50% of system RAM
- bootstrap.memory_lock=true # along with the memlock settings below, disables swapping

Check warning on line 12 in docker/release/dockercomposefiles/docker-compose-2.x.yml

View workflow job for this annotation

GitHub Actions / yaml-lint

12:36 [comments] too few spaces before comment
- "OPENSEARCH_JAVA_OPTS=-Xms512m -Xmx512m" # minimum and maximum Java heap size, recommend setting both to 50% of system RAM

Check failure on line 13 in docker/release/dockercomposefiles/docker-compose-2.x.yml

View workflow job for this annotation

GitHub Actions / yaml-lint

13:9 [quoted-strings] string value is not quoted with single quotes

Check warning on line 13 in docker/release/dockercomposefiles/docker-compose-2.x.yml

View workflow job for this annotation

GitHub Actions / yaml-lint

13:50 [comments] too few spaces before comment
- OPENSEARCH_INITIAL_ADMIN_PASSWORD=${OPENSEARCH_INITIAL_ADMIN_PASSWORD} # Sets the demo admin user password when using demo configuration, required for OpenSearch 2.12 and higher
prudhvigodithi marked this conversation as resolved.
Show resolved Hide resolved
ulimits:
memlock:
soft: -1
hard: -1
nofile:
soft: 65536 # maximum number of open files for the OpenSearch user, set to at least 65536 on modern systems
soft: 65536 # maximum number of open files for the OpenSearch user, set to at least 65536 on modern systems

Check warning on line 20 in docker/release/dockercomposefiles/docker-compose-2.x.yml

View workflow job for this annotation

GitHub Actions / yaml-lint

20:21 [comments] too few spaces before comment
hard: 65536
volumes:
- opensearch-data1:/usr/share/opensearch/data
ports:
- 9200:9200
- 9600:9600 # required for Performance Analyzer
- 9600:9600 # required for Performance Analyzer

Check warning on line 26 in docker/release/dockercomposefiles/docker-compose-2.x.yml

View workflow job for this annotation

GitHub Actions / yaml-lint

26:19 [comments] too few spaces before comment
networks:
- opensearch-net
opensearch-node2:
Expand All @@ -35,7 +35,7 @@
- discovery.seed_hosts=opensearch-node1,opensearch-node2
- cluster.initial_cluster_manager_nodes=opensearch-node1,opensearch-node2
- bootstrap.memory_lock=true
- OPENSEARCH_JAVA_OPTS=-Xms512m -Xmx512m
- "OPENSEARCH_JAVA_OPTS=-Xms512m -Xmx512m"

Check failure on line 38 in docker/release/dockercomposefiles/docker-compose-2.x.yml

View workflow job for this annotation

GitHub Actions / yaml-lint

38:9 [quoted-strings] string value is not quoted with single quotes
- OPENSEARCH_INITIAL_ADMIN_PASSWORD=${OPENSEARCH_INITIAL_ADMIN_PASSWORD}
ulimits:
memlock:
Expand All @@ -54,9 +54,9 @@
ports:
- 5601:5601
expose:
- '5601'
- "5601"

Check failure on line 57 in docker/release/dockercomposefiles/docker-compose-2.x.yml

View workflow job for this annotation

GitHub Actions / yaml-lint

57:9 [quoted-strings] string value is not quoted with single quotes
environment:
OPENSEARCH_HOSTS: https://opensearch-node1:9200
OPENSEARCH_HOSTS: '["https://opensearch-node1:9200","https://opensearch-node2:9200"]'
networks:
- opensearch-net

Expand Down
2 changes: 1 addition & 1 deletion release-notes/opensearch-release-notes-2.12.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ OpenSearch 2.12.0 includes a number of features designed to increase performance
<ul>
<li>Integration with Apache Spark lets you analyze all of your operational data in a single place using OpenSearch in combination with Apache Spark. </li>
<li>Conversational search is generally available, providing comprehensive functionality to build conversational experiences using OpenSearch’s lexical, vector, and hybrid search features.</li>
<li>A new workflow engine lets you automate configurations for ML Commons resources, allowing you to set up machine learning resources to support AI use cases without the need to manually create resources or write custom scripts.</li>
<li>New default processors for Amazon Bedrock text embedding connectors can reduce the effort required to build AI connectors.</li>
<li>You can now represent long documents as multiple vectors in a nested field with built-in chunking, eliminating the need to build custom processing logic in order to query documents represented as vector chunks.</li>
<li>Concurrent segment search is now generally available, giving you the option to query index segments in parallel at the shard level. This can deliver improved latency for many types of search queries.</li>
Expand All @@ -26,6 +25,7 @@ OpenSearch 2.12.0 includes a number of features designed to increase performance
<li>The OpenSearch Assistant Toolkit helps developers build generative AI experiences inside of OpenSearch Dashboards. With integrated natural language processing and context-aware features, developers can use this toolkit to apply generative AI to create interactive user experiences and extract insights from OpenSearch data.</li>
<li>A new agent framework added to ML Commons uses remote large language learning models (LLMs) for step-by-step problem-solving and can coordinate machine learning tools using LLMs. The framework includes a flow agent and a conversational agent in this release.</li>
<li>Users can now query multiple clusters with cross-cluster monitors through the Alerting plugin.</li>
<li>A new workflow engine lets you automate configurations for ML Commons resources, allowing you to set up machine learning resources to support AI use cases without the need to manually create resources or write custom scripts.</li>
</ul>

<h2>DEPRECATION NOTICE</h2>
Expand Down
Loading