调用GetMetaColumnLineage获取字段的血缘关系。
调试
您可以在OpenAPI Explorer中直接运行该接口,免去您计算签名的困扰。运行成功后,OpenAPI Explorer可以自动生成SDK代码示例。
请求参数
名称 | 类型 | 是否必选 | 示例值 | 描述 |
---|---|---|---|---|
Action | String | 是 | GetMetaColumnLineage |
要执行的操作。 |
ColumnGuid | String | 是 | odps.engine_name.table_name.column_name |
字段的唯一标识。 |
Direction | String | 是 | up |
字段的上下游方向:up表示上游,down表示下游。 |
RegionId | String | 是 | cn-shanghai |
地域ID。 |
PageNum | Integer | 否 | 1 |
请求的数据页数,用于翻页。 |
PageSize | Integer | 否 | 10 |
每页显示的条数,默认为10条,最大100条。 |
ClusterId | String | 否 | abc |
EMR集群的ID,针对EMR情况。 |
DatabaseName | String | 否 | abc |
数据库的名称。 |
TableName | String | 否 | abc |
表名称。 |
ColumnName | String | 否 | abc |
字段名称。 |
DataSourceType | String | 否 | emr |
数据类型,包括odps或emr。 |
返回数据
名称 | 类型 | 示例值 | 描述 |
---|---|---|---|
Data | Struct |
业务数据。 |
|
DataEntityList | Array of DataEntityList |
实例数据列表。 |
|
ClusterId | String | abc |
emr集群ID |
ColumnGuid | String | odps.engine_name.table_name.1 |
字段的唯一标识。 |
ColumnName | String | 1 |
字段的名称。 |
DatabaseName | String | abc |
数据库名称 |
TableName | String | abc |
表名 |
PageNum | Integer | 1 |
请求的数据页数,用于翻页。 |
PageSize | Integer | 10 |
每页显示的条数,默认为10条,最大100条。 |
TotalCount | Long | 20 |
字段的总数。 |
ErrorCode | String | Invalid.Tenant.ConnectionNotExists |
错误码。 |
ErrorMessage | String | The connection does not exist. |
错误信息。 |
HttpStatusCode | Integer | 200 |
HTTP状态码。 |
RequestId | String | 0bc1ec92159376 |
请求ID。 |
Success | Boolean | true |
请求是否成功。 |
示例
请求示例
http(s)://[Endpoint]/?Action=GetMetaColumnLineage
&ColumnGuid=odps.engine_name.table_name.column_name
&Direction=up
&RegionId=cn-shanghai
&<公共请求参数>
正常返回示例
XML
格式
<RequestId>0bc1ec92159376</RequestId>
<HttpStatusCode>200</HttpStatusCode>
<Data>
<TotalCount>20</TotalCount>
<PageNum>1</PageNum>
<PageSize>10</PageSize>
<DataEntityList>
<ColumnName>1</ColumnName>
<TableName>abc</TableName>
<ColumnGuid>odps.engine_name.table_name.1</ColumnGuid>
<ClusterId>abc</ClusterId>
<DatabaseName>abc</DatabaseName>
</DataEntityList>
</Data>
<ErrorCode>Invalid.Tenant.ConnectionNotExists</ErrorCode>
<ErrorMessage>The connection does not exist.</ErrorMessage>
<Success>true</Success>
JSON
格式
{
"RequestId": "0bc1ec92159376",
"HttpStatusCode": 200,
"Data": {
"TotalCount": 20,
"PageNum": 1,
"PageSize": 10,
"DataEntityList": {
"ColumnName": 1,
"TableName": "abc",
"ColumnGuid": "odps.engine_name.table_name.1",
"ClusterId": "abc",
"DatabaseName": "abc"
}
},
"ErrorCode": "Invalid.Tenant.ConnectionNotExists",
"ErrorMessage": "The connection does not exist.",
"Success": true
}
错误码
HttpCode | 错误码 | 错误信息 | 描述 |
---|---|---|---|
500 | InternalError.System | An internal system error occurred. Try again later. | 系统内部错误,请稍后再试。 |
500 | InternalError.UserId.Missing | An internal system error occurred. Try again later. | 系统内部错误,请稍后再试。 |
429 | Throttling.Api | The request for this resource has exceeded your available limit. | 对该资源的请求已超过您的可用上限。 |
429 | Throttling.Api.Risk | The request for this resource has exceeded your daily available limit. | 对该资源的请求已超过您的每日可用上限。 |
429 | Throttling.System | The DataWorks system is busy. Try again later. | DataWorks系统繁忙,请稍后再试。 |
429 | Throttling.User | Your request is too frequent. Try again later. | 您的请求过于频繁,请尝试放缓请求速度。 |
403 | Forbidden.Meta.NoTenant | The user is not the owner of any tenants. | 当前的用户不是任何租户的所有者。 |
500 | InternalError.Meta.NoCalcEngine | An error occurred while retrieving the compute engine based on the MaxCompute project. | 根据ODPS项目{0}获取计算引擎失败。 |
500 | InternalError.Meta.TenantTimeOut | Failed to connect to the interface network. | 接口网络不通。 |
500 | InternalError.Meta.Unknown | An unknown error occurred while processing your request. | 未知错误。 |
400 | Invalid.Meta.TableNotExist | The table does not exist. | 表不存在。 |
400 | InvalidParameter.Meta.CommonError | The specified parameter is invalid. | 请求参数错误。 |
400 | InvalidParameter.Meta.Illegal | The app guid parameter is invalid. | App参数错误。 |
400 | InvalidParameter.Meta.IllegalDate | The date format is invalid. | 日期格式错误。 |
400 | InvalidParameter.Meta.IllegalPageError | The parameter for paging is invalid. | 分页信息错误。 |
400 | InvalidParameter.Meta.NotExist | The object does not exist. | 数据不存在。 |
403 | Forbidden.Access | Access is forbidden. Please first activate DataWorks Enterprise Edition or Flagship Edition. | 您被限制访问,请开通DataWorks企业版或旗舰版。 |
访问错误中心查看更多错误码。
GetMetaColumnLineage接口的使用示例Demo请参见DataWorks OpenAPI示例。