Skip to content
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

Override doc_value parameter in Spatial XPack module #53286

Closed

Commits on Mar 8, 2020

  1. Override doc_value parameter in Spatial XPack module

    This commit enables parsing the doc_value parameter
    in GeoShapeFieldMapper and ShapeFieldMapper when
    the xpack spatial module is loaded. Licensing is Basic+.
    
    This commit introduces the following behavior:
    
    * doc_values defaults to true for GeoShapeFieldMapper and ShapeFieldMapper when the Spatial XPack module is available
    * doc_values are not supported for geo_shape PrefixTree indexing (same behavior as before)
    * doc_values defaults to false for GeoShapeFieldMapper and ShapeFieldMapper when the Spatial XPack module is not available (e.g., OSS)
    * when doc_values are set in OSS, a MapperParsingException is thrown (same behavior as before)
    nknize committed Mar 8, 2020
    Configuration menu
    Copy the full SHA
    db144f4 View commit details
    Browse the repository at this point in the history

Commits on Mar 11, 2020

  1. add doc_values mapping option to geo_shape/shape field mappers

    This PR adds support for the `doc_values` field mapping parameter.
    
    `false` is currently the only supported value to explicitly
    set, and is also the default.
    talevy authored and nknize committed Mar 11, 2020
    Configuration menu
    Copy the full SHA
    37d27c3 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    63cdbd6 View commit details
    Browse the repository at this point in the history
  3. remove accidental typo

    nknize committed Mar 11, 2020
    Configuration menu
    Copy the full SHA
    93c3720 View commit details
    Browse the repository at this point in the history