Hello together,
I'm using elasticsearch to store server statistics with million of
documents.
The statistics of all servers are stored into a single index/type:
curl -XPUT 'http://localhost:9200/statistics/stats/'...
Currently 50 million documents (within 3 month) are stored and I want to
store the data at least for 10 years. In addition the count of servers
grows as well.
Now my question:
Do you think to split the type "stats" into multiple types would boost the
search time of elasticsearch? As example if a type for each server would be
created:
curl -XPUT 'http://localhost:9200/statistics/server1/'...
curl -XPUT 'http://localhost:9200/statistics/server2/'...
curl -XPUT 'http://localhost:9200/statistics/server3/'...
curl -XPUT 'http://localhost:9200/statistics/server10001/'...
curl -XPUT 'http://localhost:9200/statistics/server10002/'...
curl -XPUT 'http://localhost:9200/statistics/server10003/'...
...
Or does it makes no difference if the data are stored to a single or
multiple types?
I would be glad to read from you
Cheers,
Jonny
--
You received this message because you are subscribed to the Google Groups "elasticsearch" group.
To unsubscribe from this group and stop receiving emails from it, send an email to elasticsearch+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.