数据湖探索 DLI-队列相关:创建队列

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

创建队列

DLI 提供创建队列的接口,您可以使用该接口创建队列。示例代码如下:
1
2
3
4
5
6
7
8
9
  private static void createQueue(DLIClient client) throws DLIException {
    //通过调用DLIClient对象的createQueue方法创建队列
    String qName = "queueName";
    int cu = 16;
    ChargingMode mode = ChargingMode.CHARGING_MODE_CU;
    String description = "test for sdk";
    Queue queue = client.createQueue(qName, cu, mode, description);
    System.out.println("---------- createQueue success ---------");
  }
support.huaweicloud.com/sdkreference-dli/dli_04_0028.html