描述
集群配置为手动审核复制数据的,需要手动审核
请求地址
/v2/webservice/apply/check-merge-table-data
请求方法
Post
请求参数说明
| 参数名称 | 类型 | 是否必填 | 说明 |
|---|---|---|---|
| apply_list | ApplyItem 数组 | 是 | |
| speed_rule_conf_data | 执行速度配置 数组 | 否 | 任务执行速度配置 |
ApplyItem
| 参数名称 | 类型 | 是否必填 | 说明 |
|---|---|---|---|
| apply_id | number | 是 | 单据ID |
| engine_file | string | 否 | 引擎文件落地。 非必填 |
示例
{
"apply_id": [
{
"apply_id": 19040,
"engine_file": 'ddddddddffff',
}
],
"speed_rule_conf_data": [
{
"start_hour": 1,
"end_hour": 7,
"max_speed": 20000
},
{
"start_hour": 7,
"end_hour": 1,
"max_speed": 10000
}
]
}
返回data参数说明
| 参数名称 | 类型 | 说明 |
|---|---|---|
成功返回
{
"code": 0,
"request_id": "8b6cbcd7-4f00-4ac1-90d6-4dee86f90eff",
"data": [
{
"apply_id": 19040,
"apply_type_text": "复制表数据",
"zone_id": "6",
"app_id": 5,
"table_name": "pb2_webclient_sortlist",
"table_type": 1,
"apply_type": 7,
"task_id": 17305,
"result": 0,
"msg": "审核成功, 请查看生成的任务"
}
]
}
失败返回
{
}