调用 DataGetCommandSetResult 接口查询异步执行命令集的执行结果。
已调用 DataExecCommandSetAsync 接口异步执行命令集。
同步请求。
名称 | 类型 | 是否必选 | 示例值 | 描述 |
---|---|---|---|---|
CommandSetId | string | 是 | 178887541272244**** | 命令集 ID。 说明 调用 DataExecCommandSetAsync 接口,获取命令集 ID。 |
FilterType | String | 否 | Success | 命令集中 SQL 语句的执行状态,取值如下:
|
名称 | 类型 | 示例值 | 描述 |
---|---|---|---|
Results | Array of Result |
| 命令集执行结果的集合。详细信息,请参见 Result。 |
FilterType | String | Success | 过滤命令集中 SQL 语句执行状态的条件,取值如下:
|
POST /?Action=DataGetCommandSetResult&Version=2018-01-01 HTTP/1.1 Content-Type: application/json Host: dbw.volcengineapi.com Authorization: HMAC-SHA256 Credential=AKLTN2I0MmFiNzMxNWE5NDgzMzk4MmVjMTVkODlkZTZ****/20211202/cn-beijing/dbw/request,SignedHeaders=x-date, Signature=71d31fc7bcf990142851c9833c5656391486cda0ae2e0b8ada733b7c645**** { "CommandSetId": "178887541272244****", "FilterType": "All" }
{ "ResponseMetadata": { "RequestId": "2024051116125243C401426335B0927AD5-3223f0", "Action": "DataGetCommandSetResult", "Version": "2018-01-01", "Service": "dbw", "Region": "cn-beijing" }, "Result": { "FilterType": "All", "Results": [ { "ColumnNames": [ "Database" ], "CommandStr": "show databases;", "ReasonDetail": "", "RowCount": 2, "Rows": [ { "Cells": [ "information_schema" ] }, { "Cells": [ "sys" ] } ], "RunTime": 1715396681000, "State": "Success" } ] } }
更多详情,请参见错误码。