Splits a full export task.
Request syntax
message SplitTimeseriesScanTaskRequest {
required string table_name = 1;
optional string measurement_name = 2;
required int32 split_count_hint = 3;
}
Parameter | Type | Required | Description |
table_name | string | Yes | The name of the time series table. |
measurement_name | string | No | The metric name. |
split_count_hint | int32 | Yes | The number of subtasks that you want to split the full export task into. The value of the parameter must be greater than 0. The server splits the full export task into subtasks based on the value of the parameter. However, the number of subtasks that the full export task is split into may be different from the value of the parameter. |
Response syntax
message SplitTimeseriesScanTaskResponse {
repeated bytes split_infos = 1;
}
Parameter | Type | Required | Description |
split_infos | bytes | Yes | The task splitting information that is encoded on the server. The parameter is passed to the ScanTimeseriesData operation to scan time series data. |