All Products
Search
Document Center

Tablestore:Query the descriptive information of delivery tasks

Last Updated:Dec 08, 2020

You can call the DescribeDeliveryTask operation to query the descriptive information of a delivery task.

Prerequisites

Request parameters

Parameter

Description

TableName

The name of the table.

TaskName

The name of the delivery task.

Response parameters

Parameter

Description

TaskConfig

The configuration information of the delivery task.

TaskSyncStat

The synchronization status of the delivery task.

TaskType

The mode in which to deliver data. Valid values:

  • 0: the full data delivery mode

  • 1: the incremental data delivery mode

  • 2: the differential data delivery mode

Examples

func DescribeTaskSample(client *tablestore.TableStoreClient, tableName, taskName string) {
 req := &tablestore.DescribeDeliveryTaskRequest{
  TableName: tableName,
  TaskName: taskName,
 }
 resp, err := client.DescribeDeliveryTask(req)
 if err != nil {
  log.Fatal("describe delivery task failed ", err)
 }
 fmt.Println("TaskConfig: ", *resp.TaskConfig)
 fmt.Println("TaskSyncStat: ", *resp.TaskSyncStat)
 fmt.Println("TaskType: ", resp.TaskType)
 return
}