I am using kibana's index-pattern to display the numbers in a human friendly way (to display the number of bytes in MB and GB etc). How does it effect the search performance?
Below is an excerpt from the index-pattern for the field 'something' :
{"name":"something","type":"number","count":0,"scripted":false,"indexed":true,"analyzed":false,"doc_values":true,"searchable":true,"aggregatable":true}]","fieldFormatMap":"{"something":{"id":"bytes"}}"}
This index-template config helps me displaying the aggregated value of "something" in GBs.
How is this fieldFormatMap used? Is this applied on each every document on just on the aggregated result?