Query Cancellation
How to stop a running Pinot query.
Enable tracking first
pinot.server.enable.query.cancellation=true
pinot.broker.enable.query.cancellation=truePreferred flow: cancel by client query ID
SET clientQueryId = 'query-2026-03-24-001';
SELECT * FROM stores LIMIT 100;curl -X DELETE 'http://localhost:9000/queryClient/query-2026-03-24-001'Fallback flow: cancel by internal broker ID
What this page covered
Next step
Related pages
Last updated
Was this helpful?

