Merge pull request #18158 from influxdata/disable-tag-value-series-id-cache
fix(tsdb): Disable series id set cache size by default.pull/18203/head
commit
ca420c601d
|
@ -68,7 +68,8 @@ const (
|
|||
DefaultMaxIndexLogFileSize = 1 * 1024 * 1024 // 1MB
|
||||
|
||||
// DefaultSeriesIDSetCacheSize is the default number of series ID sets to cache in the TSI index.
|
||||
DefaultSeriesIDSetCacheSize = 100
|
||||
// It is disabled by default.
|
||||
DefaultSeriesIDSetCacheSize = 0
|
||||
|
||||
// DefaultSeriesFileMaxConcurrentSnapshotCompactions is the maximum number of concurrent series
|
||||
// partition snapshot compactions that can run at one time.
|
||||
|
|
Loading…
Reference in New Issue