表示多元索引的結構資訊,包括索引的所有欄位、索引選項、索引預排序等配置資訊。
資料結構
message IndexSchema {
repeated FieldSchema field_schemas = 1;
optional IndexSetting index_setting = 2;
optional Sort index_sort = 3;
}
名稱 | 類型 | 是否必選 | 描述 |
field_schemas | repeated FieldSchema | 是 | 多元索引所有欄位的配置資訊。 |
index_setting | 否 | 多元索引的路由鍵等配置資訊。 | |
index_sort | 否 | 多元索引預排序的配置資訊。索引預排序只支援按照主鍵排序和按照欄位值排序。 |