Too many fields bad for elasticsearch index?

后端 未结 2 423
失恋的感觉
失恋的感觉 2021-01-17 17:01

Let say I have a thousand keys, and I would want to store the associated values. The intuitive approach seems to be something like

{
   \"key1\":\"someval\",         


        
相关标签:
2条回答
  • 2021-01-17 17:20

    If you know there is an upper limit to the number of keys you'll have, a few thousand fields is not a problem.

    The problem is when you have an unbounded set of keys, e.g. when the key is derived from a value, as you'll have a continuously growing mapping and thus also cluster state. It can also lead to quirky searches.

    This is a common enough question/issue that I dedicated a section to it in my article on Troubleshooting Elasticsearch searches, for Beginners.

    In short, thousands of fields is no problem - not having control of the mapping is.

    0 讨论(0)
  • 2021-01-17 17:28

    Elasticsearch is not ideal for 1000s of key-value pattern in a document. and if you want to update them in real-time or something, then try redis or riak for that.

    If you have thousands of keys in a document/record, essentially they become fields and the value become the text and indexed.

    From information-retrieval perspective with large data, it is advised to use fewer big fields than numerous small fields, for faster search performance.

    0 讨论(0)
提交回复
热议问题