Add version-specific port mapping for OpenSearch and Elasticsearch#36
Merged
Add version-specific port mapping for OpenSearch and Elasticsearch#36
Conversation
Each search engine version now gets a unique host port, preventing conflicts when running multiple projects with different versions. Port convention: OpenSearch uses 9200 + major*20 + minor (e.g., OS 2.19 → 9259), Elasticsearch uses 9300 + major*20 + minor (e.g., ES 7.17 → 9457). When only one search service is configured, the standard port 9200 is additionally mapped for backward compatibility.
…onflicts As OpenSearch versions increase (v4, v5+), the 9200-based ports would eventually reach the 9300 range and collide with Elasticsearch ports. Moving the ES base from 9300 to 9500 provides ample room for both.
Resolve conflicts: keep ES port base 9500, add Valkey support from main.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Each search engine version now gets a unique host port, preventing conflicts when running multiple projects with different versions.
Port convention: OpenSearch uses 9200 + major20 + minor (e.g., OS 2.19 → 9259), Elasticsearch uses 9300 + major20 + minor (e.g., ES 7.17 → 9457). When only one search service is configured, the standard port 9200 is additionally mapped for backward compatibility.