本文介绍了Bigquery取消或停止尚未启动的批量查询作业(Status.State =“PENDING”)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如果由于某种原因需要停止/取消尚未启动的批量查询作业(Status.State =PENDING),是否可以这样做?
(使用的库:Google.Apis.Bigquery.v2.1.5.0.122-beta)。

If for some reason it is wanted to stop/cancel a batch query job that is not started yet (Status.State = "PENDING"), is it possible to do it?(library used: net Google.Apis.Bigquery.v2.1.5.0.122-beta).

推荐答案

BigQuery现在支持取消​​查询作业。您可以通过 bq 命令行客户端通过以下方式执行此操作:

BigQuery now supports canceling query jobs. You can do this via the bq command line client via:

bq cancel <job_id>

或者通过jobs.cancel方法从API中获取(记录)

or from the API via the jobs.cancel method (documented here)

这篇关于Bigquery取消或停止尚未启动的批量查询作业(Status.State =“PENDING”)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

11-02 17:16