gavenkoa
(Oleksandr Gavenko)
February 12, 2019, 2:59pm
11
@RdrgPorto We are experienced same problem with 30 sec limit in Kibana at about 60-80GB of indexes. And not we are at 150GB ))
My details:
I provide details below, straight to the point: I suspect that increased index count made impossible to perform some Kibana built-in queries.
ls
elasticsearch-5.6.14.deb kibana-5.6.14-amd64.deb
I suspect that it is impossible to query 144GB of indexes on HDD with 4GB ES heap + 3GB mmap RAM:
GET /_nodes/stats/jvm
"_nodes": {
"total": 1,
"successful": 1,
"failed": 0
},
...
"nodes": {
"Tko1n5etQrmMvEm5viBBew": {
"timestamp": 1549977948232,
"name": "prod-es-1…
I can tell you one trick that sometimes helps. If your search query contains very frequent stem it won't work on large data.
For example instead of "BLABLA has the problem"
to avoid 30000ms issue I search: "BLABLA * problem"