如何在apache ignite中终止sql查询

问题描述 投票:0回答:2

有什么有用的方法可以杀死apache ignite中的sql查询吗?我可以在ignite中通过rest api终止查询吗? 在apche ignite文档中,我看到请求http://host:port/ignite?cmd=qrycls&qryId={queryId} 关闭 ignite 中的 sql 查询,但它对我不起作用,我找不到 qryId

ignite
2个回答
0
投票

您可以使用SQL命令来完成:

KILL QUERY {ASYNC} 'query_id'

或者使用control.sh脚本:

./control.sh --kill SQL query_id

或者使用 QueryMXBean JMX bean。


© www.soinside.com 2019 - 2024. All rights reserved.