Queries the information about the analytical store of a time series table, such as the metadata, synchronization status, and storage size of the analytical store.
Request syntax
message DescribeTimeseriesAnalyticalStoreRequest {
required string table_name = 1;
required string store_name = 2;
}Parameter | Type | Required | Description |
table_name | string | Yes | The name of the time series table. |
store_name | string | Yes | The name of the analytical store. |
Response syntax
message DescribeTimeseriesAnalyticalStoreResponse {
optional TimeseriesAnalyticalStore analytical_store = 1;
optional AnalyticalStoreSyncStat sync_stat = 2;
optional AnalyticalStoreStorageSize storage_size = 3;
}Parameter | Type | Description |
analytical_store | The metadata of the analytical store. | |
sync_stat | The synchronization status of the analytical store. | |
storage_size | The storage size of the analytical store and the timestamp when the storage size is queried. |
Use SDKs
You can use SDKs for the following programming languages to query the information about the analytical store:
SDK for Java: For more information, see Query the information about the analytical store.
SDK for Go: For more information, see Query the information about the analytical store.