Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如果由于某种原因想要停止/取消尚未开始的批处理查询作业(Status.State =“PENDING”),是否可以这样做?(使用的库:net Google.Apis.Bigquery.v2.1.5.0.122-beta)。
BigQuery 现在支持取消查询作业。您可以通过bq命令行客户端执行此操作:
bq
bq cancel <job_id>
或从 API 通过 jobs.cancel 方法(记录在这里)