Hi,
We are moving our platform from ES1.7.5 to ES5.4
We make much use of parent/child relations
In our ES1 version , the common queries with P/C criterias are often time and RAM consuming for our cluster.
And we hope very much to have enhancements at this level in the ES5 version
Regarding this thread, doc_values are now used for parent relations : https://github.com/elastic/elasticsearch/issues/6107
How can I be sure that my mappings/configs are the best at this level.
In our ES5 testbed, If I play with "has_child" queries then have a look to the /_nodes/stats/indices/fielddata I see fielddatas growing for the _parent fields :
"indices": {
"fielddata": {
"memory_size_in_bytes": 59035104,
"evictions": 0,
"fields": {
"_parent": {
"memory_size_in_bytes": 27161744
},
"topActivity.metaDatas.value.raw": {
"memory_size_in_bytes": 4696384
},
"_parent#case": {
"memory_size_in_bytes": 27161744
},
Does-it seem OK ?
BR
Franck