日本熟妇hd丰满老熟妇,中文字幕一区二区三区在线不卡 ,亚洲成片在线观看,免费女同在线一区二区

ScanTimeseriesData

調用ScanTimeseriesData接口掃描時序數據。

請求消息結構

message ScanTimeseriesDataRequest {
  required string table_name = 1;
  optional bytes split_info = 2;
  optional int64 start_time_us = 3;
  optional int64 end_time_us = 4;
  repeated TimeseriesFieldsToGet fields_to_get = 5;
  optional int32 limit = 6;
  optional RowsSerializeType data_serialize_type = 7;
  optional bytes token = 8;
  optional int64 supported_table_version = 9;
}

名稱

類型

是否必選

描述

table_name

string

時序表名。

split_info

bytes

通過SplitTimeseriesScanTask接口返回的SplitInfo。

start_time_us

int64

開始時間。格式為微秒單位時間戳(從1970-01-01 00:00:00 UTC計算起的微秒數)。

end_time_us

int64

結束時間。格式為微秒單位時間戳(從1970-01-01 00:00:00 UTC計算起的微秒數)。

fields_to_get

repeated TimeseriesFieldsToGet

指定讀取部分數據列。

limit

int32

每次最多返回的行數,最大值為5000,默認值為5000。

data_serialize_type

RowsSerializeType

時序數據的行序列化類型。

token

bytes

用于繼續(xù)獲取剩余數據的標識。

supported_table_version

int64

SDK支持的時序表模型版本號。取值范圍如下:

  • 0(默認):不支持包含自定義時間線標識或作為主鍵的數據字段的時序表。

  • 1:支持包含自定義時間線標識和作為主鍵的數據字段的時序表。

不同版本之間的TimeseriesKey數據結構有所不同,supported_table_version低于操作的時序表模型版本會返回錯誤。

響應消息結構

message ScanTimeseriesDataResponse {
  optional RowsSerializeType data_serialize_type = 1;
  required bytes data = 2;
  optional bytes next_token = 3;
}

名稱

類型

是否必選

描述

data_serialize_type

RowsSerializeType

時序數據的行序列化類型。

data

bytes

返回的時序數據。

next_token

bytes

用于獲取剩余數據的標識。