gmarsay commented on PR #13343: URL: https://github.com/apache/lucene/pull/13343#issuecomment-2607247416
I also noticed a performance issue, maybe related to this topic? I have an index that contains data from a metricbeat agent (1 shard + 1 replica; 18G). When performing a search with a lucene query I get an answer after 40 seconds _(this same query on Elasticsearch is done in a few tens of milliseconds)_ This same query but with profiling enabled takes about 300 ms. * Query with a response time of 40s: ``` { "profile": false, "query": { "query_string": { "query": "NOT _exists_:system AND NOT _exists_:network AND NOT _exists_:prometheus" } } } ``` * Query with a response time of 300ms: ``` { "profile": true, "query": { "query_string": { "query": "NOT _exists_:system AND NOT _exists_:network AND NOT _exists_:prometheus" } } } ``` Do you think this performance issue is also related to the original topic? -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: issues-unsubscr...@lucene.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@lucene.apache.org For additional commands, e-mail: issues-h...@lucene.apache.org