調用DescribeTable介面查詢指定表的結構資訊以及預留讀輸送量和預留寫輸送量設定資訊。
請求訊息結構
message DescribeTableRequest {
required string table_name = 1;
}
名稱 | 類型 | 是否必選 | 描述 |
table_name | string | 是 | 需要查詢的表名。 |
響應訊息結構
message DescribeTableResponse {
required TableMeta table_meta = 1;
required ReservedThroughputDetails reserved_throughput_details = 2;
required TableOptions table_options = 3;
optional StreamDetails stream_details = 5;
repeated bytes shard_splits = 6;
optional SSEDetails sse_details = 7;
repeated IndexMeta index_metas = 8;
optional int64 creation_time = 9;
}
名稱 | 類型 | 描述 |
table_meta | 該表的Schema,與建表時的Schema相同。 | |
reserved_throughput_details | 該表的預留讀輸送量和預留寫輸送量設定資訊。除了包含當前的預留讀輸送量和預留寫輸送量設定值之外,還包含了最近一次更新該表的預留讀/寫吞吐設定的時間和當日已下調預留讀輸送量和預留寫輸送量的次數。 | |
table_options | 當前最新的table_options參數值。 | |
stream_details | 描述是否開啟Stream相關的屬性。 | |
shard_splits | bytes | 當前表所有分區的分裂點。 |
sse_details | 伺服器端加密相關資訊 。 | |
index_metas | 索引表的結構資訊,包括索引欄位、索引類型等資訊。 | |
creation_time | int64 | 資料表的建立時間。 |