Mapping definition has unsupported parameters: [norms : false]

I am trying to disable norms in Elasticsearch 6.8 but getting the error:

elasticsearch.exceptions.RequestError: TransportError(400, 'mapper_parsing_exception', 'Mapping definition for [AC] has unsupported parameters: [norms : false]'

Mapping looks like that:

{'AC': {'doc_values': False, 'norms': False, 'type': 'integer'}, ...}

doc_values can be disabled fine but norms - not.

norms is not a supported parameter for integer fields - Numeric datatypes | Elasticsearch Guide [6.8] | Elastic

1 Like

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.