We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The _size field is not present on PutMappingRequest, despite being present on TypeMapping.
_size
PutMappingRequest
This prevents enabling size tracking for existing indices.
See https://github.com/opensearch-project/opensearch-java/blob/main/java-client/src/main/java/org/opensearch/client/opensearch/indices/PutMappingRequest.java
_size (or SizeField as the Java classes call it) is present on PutMappingRequest
SizeField
TypeMapping
The text was updated successfully, but these errors were encountered:
No branches or pull requests
What is the bug?
The
_size
field is not present onPutMappingRequest
, despite being present on TypeMapping.This prevents enabling size tracking for existing indices.
How can one reproduce the bug?
See https://github.com/opensearch-project/opensearch-java/blob/main/java-client/src/main/java/org/opensearch/client/opensearch/indices/PutMappingRequest.java
What is the expected behavior?
_size
(orSizeField
as the Java classes call it) is present onPutMappingRequest
Do you have any additional context?
PutMappingRequest
used the sameTypeMapping
object used for index creation.The text was updated successfully, but these errors were encountered: