数据湖探索 DLI-队列相关:获取默认队列

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

获取默认队列

DLI 提供查询默认队列的接口,您可以使用默认队列提交作业。示例代码如下:

1
2
3
4
5
private static void getDefaultQueue(DLIClient client) throws DLIException{
    //调用DLIClient对象的getDefaultQueue方法查询默认队列
     Queue queue = client.getDefaultQueue();
     System.out.println("defaultQueue is:"+ queue.getQueueName());
}

默认队列允许所有用户使用,DLI会限制用户使用默认队列的次数。

support.huaweicloud.com/sdkreference-dli/dli_04_0028.html