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.
Description
This PR adds comprehensive documentation for automatic merge functionality settings in OpenSearch. Previously, users had to reference Elastic's documentation for these merge policy and scheduler settings. This change documents all merge-related index settings in the OpenSearch documentation, including:
Merge Policy Settings:
index.merge.policy.max_merged_segment- Maximum size of merged segments (5gb default)index.merge.policy.segments_per_tier- Segments per tier for tiered merge policy (10 default)index.merge.policy.max_merge_at_once- Maximum segments to merge at once during normal merging (10 default)index.merge.policy.max_merge_at_once_explicit- Maximum segments to merge during explicit force merges (30 default)index.merge.policy.expunge_deletes_allowed- Percentage threshold for automatic expunging of deleted documents (10.0% default)Merge Scheduler Settings:
index.merge.scheduler.max_thread_count- Maximum number of merge threadsindex.merge.scheduler.max_merge_count- Maximum number of concurrent mergesAll settings are documented with clear descriptions, default values, type information, and cross-references to related documentation (such as the Force merge API). The settings are added to the existing index settings documentation page, maintaining consistency with the existing documentation style and patterns.
Issues Resolved
Closes #11406
Version
all
Frontend features
N/A - This is backend/API documentation only.
Checklist
For more information on following Developer Certificate of Origin and signing off your commits, please check here.