"doc_values" : true
and
"fielddata": {
"loading" : "eager_global_ordinals"
}
inorder to resolve the space issues with the String fields....
But Iam not getting how to check these got reflected or not....
How to check the values of these in Kibana?
Are you trying to reduce the space string fields use? Adding "doc_values" : true (which is the default) increases the required disk space. But it's true by default so that you can sort and aggregation by those fields. To save space, you can set it to false on fields that you don't need to sort or aggregate on. https://www.elastic.co/guide/en/elasticsearch/reference/current/doc-values.html
Kibana doesn't know if doc_values are on. I think if you try to sort or aggregate on a field with "doc_values" : false Kibana would show the error that Elasticsearch sends.
The loading setting "eager_global_ordinals" only controls when the data is loaded.
But again in this case, I don't think Kibana knows if field data is loaded or not. You might see an error in Kibana if you try to sort or aggregate on values in analyzed strings and you have disabled field data on them.
Apache, Apache Lucene, Apache Hadoop, Hadoop, HDFS and the yellow elephant
logo are trademarks of the
Apache Software Foundation
in the United States and/or other countries.