Replies: 7 comments
-
We will work on limiting the memory usage. In the meanwhile, as a workaround, you can reduce your memory usage by reducing |
Beta Was this translation helpful? Give feedback.
-
@fulmicoton i'm not too worried about memory usage its mostly a needle/haystack search timeout in like 8minutes and wondering if there's anything I can do to speed it up or searching over 200tbs is just not doable or tuning the index batter to handle it. I'll toss 40gig of memory at the pods if that fixes the issue |
Beta Was this translation helpful? Give feedback.
-
Update on this.. it completes outside of grafana in 45s which I feel is fine for that amount of data over a 2w search
Not sure why it timesout in grafana |
Beta Was this translation helpful? Give feedback.
-
The query is very simple but this is still 313TB of uncompressed data. 45s is not so bad if you only have a few searchers. How many searcher node/vCPUs per node do you have? |
Beta Was this translation helpful? Give feedback.
-
Note: Grafana runs (at least) two queries in parallel: one for log volume and one for logs. |
Beta Was this translation helpful? Give feedback.
-
24 searchers...
i'm honestly fine with 45s over that type query @fmassot in grafana there doesn't seem to be a way to turn it off.. and it doesn't seem to be honoring the timeout. I have it set for 300s but its timing out in 60s These two queries always timeout in a minute
My grafana datasource is this |
Beta Was this translation helpful? Give feedback.
-
looking over this more how its handled in loki is loki also seems to run 1 query for the data and another for the graph I could be wrong but it seems the grafana issue seems to be quickwit running both queries at the same time. Loki seems to get the data first and once the data is populated it runs another query to generate the graph |
Beta Was this translation helpful? Give feedback.
-
I have the following index
The index mapping is
Right now its all kubernetes logs so looking to do a lot of needle/haystack type searches in it like as follows
My grafana query looks like
I'd be fine with like 2 week search if possible but right now its OOMing a search node each time I do it
Each searcher node right now is 10Gi of Ram
Beta Was this translation helpful? Give feedback.
All reactions