mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-02-05 20:48:22 +00:00
9763d079b8
Norms can be eagerly loaded on a per-field basis by setting norms.loading to `eager` instead of the default `lazy`: ``` "my_string_field" : { "type": "string", "norms": { "loading": "eager" } } ``` In case this behavior should be applied to all fields, it is possible to change the default value by setting `index.norms.loading` to `eager`. Close #4079