数据湖探索 DLI-Spark作业相关:取消批处理作业

时间:2024-07-05 17:23:48

取消批处理作业

DLI 提供取消批处理作业的接口。您可以使用该接口取消批处理作业。若作业已经执行结束或失败则无法取消。示例代码如下:

1
2
3
4
5
6
7
def del_spark_batch(dli_client, batch_id): 
    try: 
        resp = dli_client.del_spark_batch_job(batch_id) 
        print(resp.msg) 
    except DliException as e: 
        print(e) 
        return
support.huaweicloud.com/sdkreference-dli/dli_04_0139.html