takaaki7 commented on PR #15227:
URL: https://github.com/apache/druid/pull/15227#issuecomment-1784010907
- Original:
- p50 2.025s
- p90 2.27s
- With mergeBufferSlicesPerThread 100:
- p50: 2.815s
- p90: 2.94s
So improved about 30%.
Test query:
```sql
SELECT COUNT(*) FROM(SELECT user_id
FROM "eventtable"
WHERE __time > '2022-07-01T00:00:00Z' AND __time < '2022-08-30T00:00:00Z'
AND event_name = 'view'
AND "yy" LIKE '%xx%'
GROUP BY user_id
HAVING COUNT(*) > 100
)
```
Input: 600M rows
Intermediate grouping result rows: 20M rows
Threads: 23 (24core machine)
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]