Uploading Data¶
Function¶
This API is used to upload data to DIS streams.
URI¶
POST /v2/{project_id}/records
Parameter | Mandatory | Type | Description |
---|---|---|---|
project_id | Yes | String | Project ID. |
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. |
Parameter | Mandatory | Type | Description |
---|---|---|---|
stream_name | Yes | String | Name of the stream. Maximum: 64 |
stream_id | No | String | Unique ID of the stream If no stream is found based on stream_name and stream_id is not empty, stream_id is used to search for the stream. Note: This parameter is mandatory when data is uploaded to the authorized stream. |
records | Yes | Array of PutRecordsRequestEntry objects | List of records to be uploaded. |
Parameter | Mandatory | Type | Description |
---|---|---|---|
data | Yes | String | Data to be uploaded The uploaded data is the serialized binary data (character string encoded using Base64). For example, if the character string data needs to be uploaded, the character string after Base64 encoding is ZGF0YQ==. |
explicit_hash_key | No | String | Hash value of the data to be written to the partition. The hash value overwrites the hash value of partition_key. Value range: 0 to long.max |
partition_id | No | String | Partition ID of the stream The value can be in either of the following formats: - shardId-0000000000- 0For example, if a stream has three partitions, the partition identifiers are 0, 1, and 2, or shardId-0000000000, shardId-0000000001, and shardId-0000000002, respectively. |
partition_key | No | String | Partition to which data is written to Note:If the partition_id parameter is transferred, it will be preferentially used. If partition_id is not passed, partition_key will be used. |
Response Parameters¶
Status code: 200
Parameter | Type | Description |
---|---|---|
failed_record_count | Integer | Number of data records that fail to be uploaded. |
records | Array of PutRecordsResultEntry objects | List of upload results. |
Parameter | Type | Description |
---|---|---|
partition_id | String | ID of the partition to which data is uploaded. |
sequence_number | String | Sequence number of the data to be uploaded. A sequence number is a unique identifier for each record. DIS automatically allocates a sequence number the data producer calls the PutRecords operation to add data to the DIS stream. Sequence number of the same partition key usually changes with time. A longer interval between PutRecords requests results in a larger sequence number. |
error_code | String | Error code. |
error_message | String | Error message. |
Example Requests¶
Uploading Data
POST https://{Endpoint}/v2/{project_id}/records
{
"stream_name" : "newstream",
"records" : [ {
"data" : "MTExMTExMTExMTExMTExMTExMTExMTExMTExMTExMTE="
} ]
}
Example Responses¶
None
Status Codes¶
Status Code | Description |
---|---|
200 | Normal response. |
Error Codes¶
See Error Codes.