toggles: add feature toggle to increase in mem caching (#55014)

Signed-off-by: bergquist <carl.bergquist@gmail.com>
This commit is contained in:
Carl Bergquist
2022-09-12 03:50:54 -04:00
committed by GitHub
parent 7c4c2fb341
commit 72ae4a5aa3
3 changed files with 9 additions and 0 deletions
@@ -67,4 +67,5 @@ export interface FeatureToggles {
traceqlEditor?: boolean;
redshiftAsyncQueryDataSupport?: boolean;
athenaAsyncQueryDataSupport?: boolean;
increaseInMemDatabaseQueryCache?: boolean;
}
+4
View File
@@ -285,5 +285,9 @@ var (
State: FeatureStateAlpha,
FrontendOnly: true,
},
{
Name: "increaseInMemDatabaseQueryCache",
Description: "Enable more in memory caching for database queries",
},
}
)
+4
View File
@@ -210,4 +210,8 @@ const (
// FlagAthenaAsyncQueryDataSupport
// Enable async query data support for Athena
FlagAthenaAsyncQueryDataSupport = "athenaAsyncQueryDataSupport"
// FlagIncreaseInMemDatabaseQueryCache
// Enable more in memory caching for database queries
FlagIncreaseInMemDatabaseQueryCache = "increaseInMemDatabaseQueryCache"
)