Queries the basic metadata information about a compute engine instance.
Debugging
Request parameters
Parameter | Type | Required | Example | Description |
---|---|---|---|---|
Action | String | Yes | GetMetaDBInfo | The operation that you want to perform. Set the value to GetMetaDBInfo. |
AppGuid | String | No | odps.some_engine_name | The ID of the compute engine instance. Specify the ID in the Engine type.Engine name format. |
ClusterId | String | No | abc | The ID of the E-MapReduce (EMR) cluster. This parameter is required only if you set the DataSourceType parameter to emr. |
DatabaseName | String | No | abc | The name of the metadatabase of the EMR cluster. This parameter is required only if you set the DataSourceType parameter to emr. |
DataSourceType | String | No | emr | The type of the data source. Valid values: odps and emr. |
Response parameters
Parameter | Type | Example | Description |
---|---|---|---|
RequestId | String | 0bc1411515937**** | The request ID. |
Data | Object | The business data. | |
Type | String | hive | The type of the metadatabase. |
Comment | String | Comment | The comment. |
CreateTime | Long | 1541576644000 | The time when the compute engine instance was created. |
ProjectId | Long | 22 | The workspace ID. |
ProjectName | String | test | The name of the workspace. |
AppGuid | String | odps.engine_name | The ID of the compute engine instance. The ID is in the Engine type.Engine name format. |
OwnerName | String | my_name | The name of the workspace owner. |
OwnerId | String | userId | The ID of the Alibaba Cloud account used by the workspace owner. |
EnvType | Integer | 1 | The type of the environment. Valid values: 0 and 1. The value 0 indicates the development environment. The value 1 indicates the production environment. |
ProjectNameCn | String | Test project | The display name of the workspace. |
Endpoint | String | http://service.odpsstg.aliyun-inc.com/ | The endpoint of the service. |
ClusterBizId | String | abc | The ID of the EMR cluster. This parameter is returned only for an EMR compute engine instance. |
Name | String | abc | The name of the metadatabase. |
Location | String | hdfs:// | The storage path of the metadatabase of the EMR cluster. |
TenantId | Long | 233 | The tenant ID. |
ModifyTime | Long | 1541576644000 | The time when the compute engine instance was modified. |
Examples
Sample requests
http(s)://[Endpoint]/?Action=GetMetaDBInfo
&AppGuid=odps.some_engine_name
&ClusterId=abc
&DatabaseName=abc
&DataSourceType=emr
&<Common request parameters>
Sample success responses
XML
format
HTTP/1.1 200 OK
Content-Type:application/xml
<GetMetaDBInfoResponse>
<RequestId>0bc1411515937****</RequestId>
<Data>
<Type>hive</Type>
<Comment>Comment</Comment>
<CreateTime>1541576644000</CreateTime>
<ProjectId>22</ProjectId>
<ProjectName>test</ProjectName>
<AppGuid>odps.engine_name</AppGuid>
<OwnerName>323</OwnerName>
<OwnerId>23</OwnerId>
<EnvType>1</EnvType>
<ProjectNameCn>Test project</ProjectNameCn>
<Endpoint>http://service.odpsstg.aliyun-inc.com/</Endpoint>
<ClusterBizId>abc</ClusterBizId>
<Name>abc</Name>
<Location>hdfs://</Location>
<TenantId>233</TenantId>
<ModifyTime>1541576644000</ModifyTime>
</Data>
</GetMetaDBInfoResponse>
JSON
format
HTTP/1.1 200 OK
Content-Type:application/json
{
"RequestId" : "0bc1411515937****",
"Data" : {
"Type" : "hive",
"Comment" : "Comment",
"CreateTime" : 1541576644000,
"ProjectId" : 22,
"ProjectName" : "test",
"AppGuid" : "odps.engine_name",
"OwnerName" : "323",
"OwnerId" : "23",
"EnvType" : 1,
"ProjectNameCn" : "Test project",
"Endpoint" : "http://service.odpsstg.aliyun-inc.com/",
"ClusterBizId" : "abc",
"Name" : "abc",
"Location" : "hdfs://",
"TenantId" : 233,
"ModifyTime" : 1541576644000
}
}
Error codes
HTTP status code | Error code | Error message | Description |
---|---|---|---|
400 | Invalid.Meta.AppNotExist | The MaxCompute project does not exist. | The MaxCompute project is not found. |
400 | InvalidParameter.Meta.CommonError | The specified parameter is invalid. | The values specified for one or more request parameters are invalid. |
400 | InvalidParameter.Meta.Illegal | The app guid parameter is invalid. | The values specified for one or more parameters of the application are invalid. |
400 | InvalidParameter.Meta.IllegalDate | The date format is invalid. | The date format is invalid. |
400 | InvalidParameter.Meta.IllegalPageError | The parameter for paging is invalid. | The value of the parameter for paging is invalid. |
400 | InternalError.UserId.Missing | An internal system error occurred. Try again later. | An internal error occurred. Try again later. |
400 | InternalError.Meta.NoCalcEngine | An error occurred while retrieving the compute engine based on the MaxCompute project. | Failed to obtain the compute engine instance based on the MaxCompute project {0}. |
400 | InvalidParameter.Meta.NotExist | The data does not exist. | The data you query is not found. |
403 | Forbidden.Meta.NoTenant | The user is not the owner of any tenants. | The current user is not a tenant owner. |
429 | Throttling.Api | The request for this resource has exceeded your available limit. | The number of requests for the resource has exceeded the upper limit. |
429 | Throttling.Api.Risk | The request for this resource has exceeded your daily available limit. | The number of requests per day for the resource has exceeded the upper limit. |
429 | Throttling.System | The DataWorks system is busy. Try again later. | The DataWorks system is busy. Try again later. |
429 | Throttling.User | Your request is too frequent. Try again later. | Excessive requests have been submitted within a short period of time. Try again later. |
500 | InternalError.System | An internal system error occurred. Try again later. | An internal error occurred. Try again later. |
500 | InternalError.Meta.TenantTimeOut | Failed to connect to the interface network. | The network cannot be connected. |
500 | InternalError.Meta.Unknown | An unknown error occurred while processing your request. | An unknown error occurred. |
For a list of error codes, see Service error codes.
For more information about the example on how to use the GetMetaDBInfo operation, see Examples of DataWorks API operations.