sejal-gupta-ksolves commented on PR #16768: URL: https://github.com/apache/iceberg/pull/16768#issuecomment-4718674571
@chenwyi2 Thank you for the `jstack` trace—you are completely right. The thread dump confirms that StarRocks FE is not calling `close()` during a manual `KILL QUERY`, leaving the worker threads permanently blocked on `taskQueue.offer(...)`. This Iceberg PR provides the framework to clean up those background pools, but it depends on the engine to trigger it. Cherry-picking that StarRocks PR to ensure `.close()` is explicitly invoked on query cancellation is exactly the right downstream fix. Once both sides are patched, the thread leak will be fully resolved! -- 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]
