mirror of
https://github.com/elastic/elasticsearch.git
synced 2025-04-25 07:37:19 -04:00
This change adds: * Total global ordinal build time for all fields and per field. * Max shard value count per field. The value count is per shard and of the shard with the highest count. Reporting value on index level or across indices is too expensive to report or keep track of. This is added to common stats, which is exposed in several stats APIs. The following api call: ``` GET /_nodes/stats?filter_path=nodes.*.indices.fielddata&fields=key,key2 ``` Returns: ``` { "nodes": { "pcMNy4GsQ8ef6Rw-bI2EFg": { "indices": { "fielddata": { "memory_size_in_bytes": 2552, "evictions": 0, "fields": { "key2": { "memory_size_in_bytes": 1320 }, "key": { "memory_size_in_bytes": 1232 } }, "global_ordinals": { "build_time_in_millis": 8, "fields": { "key2": { "build_time_in_millis": 4, "shard_max_value_count": 4 }, "key": { "build_time_in_millis": 4, "shard_max_value_count": 4 } } } } } } } } ``` |
||
---|---|---|
.. | ||
allocation-explain.asciidoc | ||
delete-desired-balance.asciidoc | ||
delete-desired-nodes.asciidoc | ||
get-desired-balance.asciidoc | ||
get-desired-nodes.asciidoc | ||
get-settings.asciidoc | ||
health.asciidoc | ||
nodes-hot-threads.asciidoc | ||
nodes-info.asciidoc | ||
nodes-reload-secure-settings.asciidoc | ||
nodes-stats.asciidoc | ||
nodes-usage.asciidoc | ||
pending.asciidoc | ||
prevalidate-node-removal.asciidoc | ||
remote-info.asciidoc | ||
reroute.asciidoc | ||
state.asciidoc | ||
stats.asciidoc | ||
tasks.asciidoc | ||
update-desired-nodes.asciidoc | ||
update-settings.asciidoc | ||
voting-exclusions.asciidoc |