-
Notifications
You must be signed in to change notification settings - Fork 25k
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
[DOCS] Reformat data stream tutorial docs #57883
[DOCS] Reformat data stream tutorial docs #57883
Conversation
Creates a new page for a 'Set up a data stream' tutorial, based on existing content in 'Data streams'. Also adds tutorials for: * Configuring an ILM policy for a data stream * Indexing documents to a data stream * Searching a data stream * Manually rolling over a data stream
Pinging @elastic/es-docs (>docs) |
Pinging @elastic/es-core-features (:Core/Features/Data streams) |
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.
Thanks for improving the docs and adding ilm to tutorial!
LGTM
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.
Looks great to me. I left one minor comment below for your consideration.
* Data streams are designed to be append-only. While you can index new documents | ||
directly to a data stream, you cannot use a data stream to directly update or | ||
delete individual documents. |
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.
I wonder if we should mention that documents can be updated or deleted from the individual backing indices on a data stream so that this isn't taken as an absolute prohibition on updates or deletes? I think it's definitely right to point out that workflows with significant update/delete operations are not a good match for data streams, though.
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.
This is a good point. I added a related sentence with 06c2998. Thanks @danhermann.
Creates a new page for a 'Set up a data stream' tutorial, based on existing content in 'Data streams'. Also adds tutorials for: * Configuring an ILM policy for a data stream * Indexing documents to a data stream * Searching a data stream * Manually rolling over a data stream
Creates new 'Set up a data stream' and 'Use a data stream' tutorial pages, based on
existing content in 'Data streams'.
Also adds tutorials for:
I plan to add additional tutorials to these pages (e.g., update the mappings/settings for a data stream's template), but I'm limiting the initial scope to make review easier.
I also plan to revisit the intro and overview content, but that's outside the scope of this PR.