Adding OBS Dump Tasks¶
Function¶
This API is used to add OBS dump tasks.
URI¶
POST /v2/{project_id}/streams/{stream_name}/transfer-tasks
Parameter | Mandatory | Type | Description |
---|---|---|---|
project_id | Yes | String | Project ID. |
stream_name | Yes | String | Name of the stream. Maximum: 60 |
Request Parameters¶
Parameter | Mandatory | Type | Description |
---|---|---|---|
X-Auth-Token | Yes | String | User token. The token can be obtained by calling the IAM API (value of X-Subject-Token in the response header). |
Parameter | Mandatory | Type | Description |
---|---|---|---|
destination_type | Yes | String | Dump destination. Possible values:
Default: NOWHERE Enumeration values:
|
obs_destination_descriptor | No | Parameter list of OBS to which data in the DIS stream will be dumped. |
Parameter | Mandatory | Type | Description |
---|---|---|---|
task_name | Yes | String | Name of the dump task. The task name consists of letters, digits, hyphens (-), and underscores (_). It must be a string of 1 to 64 characters. |
agency_name | Yes | String | Name of the agency created on IAM. DIS uses an agency to access your specified resources. The parameters for creating an agency are as follows:
If agencies have been created, you can obtain available agencies from the agency list by using the "Listing Agencies " API. This parameter cannot be left blank and the parameter value cannot exceed 64 characters. If there are dump tasks on the console, the system displays a message indicating that an agency will be automatically created. The name of the automatically created agency is dis_admin_agency. Maximum: 64 |
deliver_time_interval | Yes | Integer | User-defined interval at which data is imported from the current DIS stream into OBS. If no data is pushed to the DIS stream during the current interval, no dump file package will be generated. Value range: 30-900 Default value: 300 Unit: second Minimum: 30 Maximum: 900 Default: 300 |
consumer_strategy | No | String | Offset.
Default value: LATEST Default: LATEST Enumeration values:
|
file_prefix | No | String | Directory to store files that will be dumped to OBS. Different directory levels are separated by slashes (/) and cannot start with slashes. The value can contain a maximum of 50 characters, including letters, digits, underscores (_), and slashes (/). This parameter is left empty by default. Maximum: 50 |
partition_format | No | String | Directory structure of the object file written into OBS. The directory structure is in the format of yyyy/MM/dd/HH/mm (time at which the dump task was created).
Example: in 2017/11/10/14/49, the directory structure is 2017 > 11 > 10 > 14 > 49. 2017 indicates the outermost folder. Default value: empty. Note: After data is successfully dumped, the directory structure is obs_bucket_path/file_prefix/partition_format. Enumeration values:
|
obs_bucket_path | Yes | String | Name of the OBS bucket used to store data from the DIS stream. |
destination_file_type | No | String | Dump file format. Possible values:
Default: text Enumeration values:
|
processing_schema | No | ProcessingSchema object | Dump time directory generated based on the timestamp of the source data and the configured partition_format. Directory structure of the object file written into OBS. The directory structure is in the format of yyyy/MM/dd/HH/mm. |
record_delimiter | No | String | Delimiter for the dump file, which is used to separate the user data that is written into the dump file. Value range:
Default: \n |
Parameter | Mandatory | Type | Description |
---|---|---|---|
timestamp_name | Yes | String | Attribute name of the source data timestamp. |
timestamp_type | Yes | String | Type of the source data timestamp.
|
timestamp_format | No | String | OBS directory generated based on the timestamp format. This parameter is mandatory when the timestamp type of the source data is String. Value range:
Enumeration values:
|
Response Parameters¶
None
Example Requests¶
Adding OBS Dump Tasks
POST https://{Endpoint}/v2/{project_id}/streams/{stream_name}/transfer-tasks { "destination_type" : "OBS", "obs_destination_descriptor" : { "task_name" : "newtask", "consumer_strategy" : "LATEST", "agency_name" : "dis_admin_agency", "destination_file_type" : "text", "obs_bucket_path" : "obsbucket", "file_prefix" : "", "partition_format" : "yyyy/MM/dd/HH/mm", "record_delimiter" : "|", "deliver_time_interval" : 30 } }
Adding OBS Dump Tasks (The dump file format is Text.)
POST https://{Endpoint}/v2/{project_id}/streams/{stream_name}/transfer-tasks { "destination_type" : "OBS", "obs_destination_descriptor" : { "task_name" : "newtask", "consumer_strategy" : "LATEST", "agency_name" : "dis_admin_agency", "destination_file_type" : "text", "obs_bucket_path" : "obsbucket", "file_prefix" : "", "partition_format" : "yyyy/MM/dd/HH/mm", "record_delimiter" : "|", "deliver_time_interval" : 30 } }
Example Responses¶
None
Status Codes¶
Status Code | Description |
---|---|
201 | Normal response. |
Error Codes¶
See Error Codes.