全部產品
Search
文件中心

Tablestore:RowInBatchGetRowResponse

更新時間:Jul 24, 2024

在BatchGetRow操作的返回訊息中表示一行資料。

資料結構

message RowInBatchGetRowResponse {
    required bool is_ok = 1 [default = true];
    optional Error error = 2;
    optional ConsumedCapacity consumed = 3;
    optional bytes row = 4; 
    optional bytes next_token = 5;
}

名稱

類型

是否必選

描述

is_ok

bool

該行操作是否成功。

  • 如果傳回值為true,則該行讀取成功,error無效。

  • 如果傳回值為false,則該行讀取失敗,row無效。

error

Error

該行操作的錯誤資訊。

consumed

ConsumedCapacity

該行操作消耗的服務能力單元。

row

bytes

讀取到的資料,由Plainbuffer編碼,詳見Plainbuffe編碼。

如果該行不存在,則資料為空白。

next_token

bytes

寬行讀取時,下一次讀取的起始位置,暫不可用。

相關操作

BatchGetRow