更新时间:2024-05-27 GMT+08:00

查询内容对比详情

功能介绍

查询内容对比详情

URI

GET /v3/{project_id}/jobs/{job_id}/compare/{compare_job_id}/content-detail

表1 路径参数

参数

是否必选

参数类型

描述

project_id

String

租户在某一Region下的Project ID。

获取方法请参见获取项目ID

job_id

String

任务ID。

compare_job_id

String

对比任务ID。

表2 Query参数

参数

是否必选

参数类型

描述

target_db_name

String

目标库名称。

db_name

String

源库名称。

type

String

类型。 compare:对比 unCompare:无法对比

limit

Integer

每页显示的条目数量。

缺省值:1000

offset

Integer

偏移量,表示从此偏移量开始查询, offset大于等于0。

缺省值:0

请求参数

表3 请求Header参数

参数

是否必选

参数类型

描述

Content-Type

String

指定类型为application/json。

缺省值:application/json

X-Auth-Token

String

从IAM服务获取的用户Token。

X-Language

String

请求语言类型。

缺省值:en-us

枚举值:

  • en-us
  • zh-cn

响应参数

状态码: 200

表4 响应Body参数

参数

参数类型

描述

total_count

Integer

对比数量。

content_compare_result_infos

Array of objects

对比信息列表。

详情请参见表5

表5 content_compare_result_infost字段数据结构说明

参数

参数类型

描述

source_db

String

源库名称。

target_db

String

目标库名称。

source_table_name

String

源库的表名称。

target_table_name

String

目标库的表名称。

source_row_num

Long

源库表行数。

target_row_num

Long

目标库表行数。

difference_row_num

Long

源库的表和目标库的表的差异值。

line_compare_result

Boolean

行对比结果。

  • true:一致
  • false:不一致

content_compare_result

Boolean

内容对比结果。

  • true:一致
  • false:不一致

message

String

附加信息。

compare_line_config_filter

String

行过滤配置条件

请求示例

查询内容对比详情

https://{endpoint}/v3/054ba152d480d55b2f5dc0069e7ddef0/jobs/f8688cfa-4e05-406f-a2e6-37a773cjb20y/table/compare/48c6acb4-1473-48fd-8676-df3705758c27/content-detail?limit=10&offeset=0

响应示例

状态码: 200

OK

{
  "total_count" : 2,
  "content_compare_result_infos" : [ {
    "source_db" : "db2",
    "source_table_name" : "tb2",
    "source_row_num" : 2434882,
    "target_db" : "db2",
    "target_table_name" : "tb2",
    "target_row_num" : 2434882,
    "difference_row_num" : 0,
    "line_compare_result" : true,
    "content_compare_result" : true
  }, {
    "source_db" : "db1",
    "source_table_name" : "tb1",
    "source_row_num" : 1,
    "target_db" : "db1",
    "target_table_name" : "tb1",
    "target_row_num" : 1,
    "difference_row_num" : 0,
    "line_compare_result" : true,
    "content_compare_result" : true
  } ]
}

状态码: 400

Bad Request

{
  "error_code" : "DRS.M00202",
  "error_msg" : "The value of jobId is invalid."
}

状态码

状态码

描述

200

OK

400

Bad Request

错误码

请参见错误码