pkaramol
pkaramol

Reputation: 19402

Elasticsearch: Check dynamic mapping type

I am trying to retrieve the mapping for an index as follows:

GET /twitter/_mapping/_doc

However there is no dynamic field for me to check whether the dynamic mapping type applied (strict / false / true).

How can I verify my dynamic mapping type?

Upvotes: 0

Views: 160

Answers (1)

Val
Val

Reputation: 217464

As explained in the documentation on dynamic field mappings, if the dynamic setting is not specified (hence not returned by the _mapping call), the default value is true, which means that new fields will be created in the mapping if they don't exist yet.

Upvotes: 2

Related Questions