Reviewed-by: Kacur, Michal <michal.kacur@t-systems.com> Co-authored-by: Xiong, Chen Xiao <chenxiaoxiong@huawei.com> Co-committed-by: Xiong, Chen Xiao <chenxiaoxiong@huawei.com>
19 KiB
Querying App Consumption Status
Function
This API is used to query the consumption status of apps.
URI
GET /v2/{project_id}/apps/{app_name}/streams/{stream_name}
Parameter |
Mandatory |
Type |
Description |
---|---|---|---|
project_id |
Yes |
String |
Project ID. |
app_name |
Yes |
String |
Name of the app to be queried. |
stream_name |
Yes |
String |
Name of the stream to be queried. Maximum: 60 |
Parameter |
Mandatory |
Type |
Description |
---|---|---|---|
limit |
No |
Integer |
Max. number of partitions to list in a single API call. The minimum value is 1 and the maximum value is 1,000. The default value is 100. Minimum: 1 Maximum: 1000 Default: 100 |
start_partition_id |
No |
String |
Name of the partition to start the partition list with. The returned partition list does not contain this partition. |
checkpoint_type |
Yes |
String |
Type of the checkpoint
Enumeration values:
|
Request Parameters
Parameter |
Mandatory |
Type |
Description |
---|---|---|---|
X-Auth-Token |
Yes |
String |
User token The token can be obtained by calling the IAM API used to obtain a user token. The value of X-Subject-Token in the response header is the user token. |
Response Parameters
Status code: 200
Parameter |
Type |
Description |
---|---|---|
has_more |
String |
Specify whether there are more matching DIS streams to list. Possible values:
Default: false. |
stream_name |
String |
Stream Name |
app_name |
String |
App Name |
partition_consuming_states |
Array of strings |
partition consuming state list |
Parameter |
Type |
Description |
---|---|---|
partition_id |
String |
Partition Id |
sequence_number |
String |
Partition Sequence Number |
latest_offset |
Long |
partition data latest offset |
earliest_offset |
Long |
partition data earliest offset |
metadata |
String |
user-defined metadata information |
checkpoint_type |
String |
Type of the checkpoint. LAST_READ: Only sequence numbers are recorded in databases. Enumeration values: LAST_READ |
status |
String |
Partition Status: CREATING ACTIVE DELETED EXPIRED |
Example Requests
Querying App Consumption Status
GET https://{Endpoint}/v2/{project_id}/apps/{app_name}/streams/{stream_name}
Example Responses
Status code: 200
Normal response.
{ "stream_name" : "newstream", "app_name" : "newapp", "partition_consuming_states" : [ { "partition_id" : "2", "sequence_number" : "485", "latest_offset" : "1000", "earliest_offset" : "10", "checkpoint_type" : "LAST_READ" } ] }
Status Codes
Status Code |
Description |
---|---|
200 |
Normal response. |
Error Codes
See Error Codes.