-
Notifications
You must be signed in to change notification settings - Fork 418
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] Removes incorrect nested
datatype definition
#827
Conversation
Removes an incorrect definition of the [`nested` field datatype][0]. An [`object` datatype][1], which is used by the Elastic Common Schema, can also contain an array of objects as a value. The primary difference between the `object` and `nested` datatypes is that objects in a `nested `datatype can be queried independently. However, that distinction isn't needed or relevant here. [0]: https://www.elastic.co/guide/en/elasticsearch/reference/master/nested.html [1]: https://www.elastic.co/guide/en/elasticsearch/reference/master/object.html
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.
LGTM
Thank you for opening this. Would you mind completely removing the line instead? There's nothing inherently wrong with the nested data type, we may very well end up using it. So this statement is irrelevant. |
We will should backport this to 1.5, which is the current version of the docs. Not sure it's worth backporting to all past versions, 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.
LGTM. Thanks!
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.
LGTM, thank you!
I can take care of the backport |
Thanks @webmat! |
Removes an incorrect definition of the [`nested` field datatype][0]. An [`object` datatype][1], which is used by the Elastic Common Schema, can also contain an array of objects as a value. The primary difference between the `object` and `nested` datatypes is that objects in a `nested `datatype can be queried independently. However, that distinction isn't needed or relevant here. [0]: https://www.elastic.co/guide/en/elasticsearch/reference/master/nested.html [1]: https://www.elastic.co/guide/en/elasticsearch/reference/master/object.html
Removes an incorrect definition of the [`nested` field datatype][0]. An [`object` datatype][1], which is used by the Elastic Common Schema, can also contain an array of objects as a value. The primary difference between the `object` and `nested` datatypes is that objects in a `nested `datatype can be queried independently. However, that distinction isn't needed or relevant here. [0]: https://www.elastic.co/guide/en/elasticsearch/reference/master/nested.html [1]: https://www.elastic.co/guide/en/elasticsearch/reference/master/object.html Co-authored-by: James Rodewig <[email protected]>
Removes an incorrect definition of the
nested
field datatype.An
object
datatype, which is used by the Elastic Common Schema,can also contain an array of objects as a value.
The primary difference between the
object
andnested
datatypes isthat objects in a
nested
datatype can be queried independently.However, that distinction isn't needed or relevant here.
Closes #826