-
Notifications
You must be signed in to change notification settings - Fork 488
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
Create documentation for snapshots with hashed prefix path type #8196
Conversation
Signed-off-by: Ashish Singh <[email protected]>
Thank you for submitting your PR. The PR states are In progress (or Draft) -> Tech review -> Doc review -> Editorial review -> Merged. Before you submit your PR for doc review, make sure the content is technically accurate. If you need help finding a tech reviewer, tag a maintainer. When you're ready for doc review, tag the assignee of this PR. The doc reviewer may push edits to the PR directly or leave comments and editorial suggestions for you to address (let us know in a comment if you have a preference). The doc reviewer will arrange for an editorial review. |
Signed-off-by: Ashish Singh <[email protected]>
_install-and-configure/configuring-opensearch/index-settings.md
Outdated
Show resolved
Hide resolved
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
A couple of follow up questions for you @gbbafna and @ashking94.
Signed-off-by: Naarcha-AWS <[email protected]>
Thanks for working on this PR @Naarcha-AWS. I have responded to your question. |
_install-and-configure/configuring-opensearch/index-settings.md
Outdated
Show resolved
Hide resolved
_install-and-configure/configuring-opensearch/index-settings.md
Outdated
Show resolved
Hide resolved
_install-and-configure/configuring-opensearch/index-settings.md
Outdated
Show resolved
Hide resolved
Signed-off-by: Naarcha-AWS <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@ashking94 @Naarcha-AWS Please see my comments and changes and let me know if you have any questions. Thanks!
|
||
- `FIXED`: Keeps the path structure in the existing hierarchical manner, such as, `<ROOT>/<BASE_PATH>/indices/<index-id>/0/<SHARD_BLOBS>` | ||
- `HASHED_PREFIX`: Prepends a hashed prefix at the start of path for each unique shard ID, for example, `<ROOT>/<HASH-OF-INDEX-ID-AND-SHARD-ID>/<BASE_PATH>/indices/<index-id>/0/<SHARD_BLOBS>`. | ||
- `HASHED_INFIX`: Appends a hashed prefix after the base path for each unique shard ID, for example, `<ROOT>/<BASE-PATH>/<HASH-OF-INDEX-ID-AND-SHARD-ID>/indices/<index-id>/0/<SHARD_BLOBS>`. The hash method used is `fnv_1a_composite_1, which uses the `FNV1a` hash function and generates a custom-encoded 64-bit hash value that scales well with most remote store options. `FNV1a` takes the most significant 6 bits to create a url-safe base64 character and the next 14 bits to create a binary string. | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Line above: Same question re: fnv_1a_composite_1
. I believe it may have been in all caps in a previous PR. Also, it looks like you have an unclosed tic mark here.
_install-and-configure/configuring-opensearch/index-settings.md
Outdated
Show resolved
Hide resolved
_install-and-configure/configuring-opensearch/index-settings.md
Outdated
Show resolved
Hide resolved
_install-and-configure/configuring-opensearch/index-settings.md
Outdated
Show resolved
Hide resolved
Co-authored-by: Nathan Bower <[email protected]> Signed-off-by: Naarcha-AWS <[email protected]>
…search-project#8196) * Create documentation for snapshots with hashed prefix path type Signed-off-by: Ashish Singh <[email protected]> * Add documentation on new cluster settings for fixed prefix Signed-off-by: Ashish Singh <[email protected]> * Update create-repository.md * Update create-repository.md * Apply suggestions from code review Signed-off-by: Naarcha-AWS <[email protected]> * Apply suggestions from code review Signed-off-by: Naarcha-AWS <[email protected]> * Apply suggestions from code review Co-authored-by: Nathan Bower <[email protected]> Signed-off-by: Naarcha-AWS <[email protected]> --------- Signed-off-by: Ashish Singh <[email protected]> Signed-off-by: Naarcha-AWS <[email protected]> Co-authored-by: Naarcha-AWS <[email protected]> Co-authored-by: Nathan Bower <[email protected]> Signed-off-by: Eric Pugh <[email protected]>
Description
This PR aims to add documentation for the following features -
Issues Resolved
Closes #8143
Version
This PR applies to version 2.17 and later.
Frontend features
If you're submitting documentation for an OpenSearch Dashboards feature, add a video that shows how a user will interact with the UI step by step. A voiceover is optional.
NONE
Checklist
For more information on following Developer Certificate of Origin and signing off your commits, please check here.