TimeseriesAnalyticalStore

更新时间:
复制 MD 格式

Storage configuration analysis.

Data structure

message TimeseriesAnalyticalStore {
  optional string store_name = 1;	      						// The name of the analytical store.
  optional int32 time_to_live = 2;    							// The TTL of data in the analytical store.
  optional AnalyticalStoreSyncType sync_option = 3;	// Full or incremental synchronization.
}

Name

Type

Description

store_name

string

The name of the analytical store.

time_to_live

int32

The retention period of data in the analytical store.

The value must be greater than or equal to 2592000 seconds (30 days), or -1. A value of -1 indicates that the data never expires.

sync_option

AnalyticalStoreSyncType

The synchronization method for the analytical store. Valid values:

  • SYNC_TYPE_FULL: Synchronizes full data.

  • SYNC_TYPE_INCR: Synchronizes incremental data.

Related operations