AWS Datasources: Enable awsAsyncQueryCaching by default (#80045)

This commit is contained in:
Isabella Siu 2024-01-05 14:56:30 -05:00 committed by GitHub
parent 1ec04243da
commit 8dc04ea63a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 3 deletions

View File

@ -49,6 +49,7 @@ Some features are enabled by default. You can disable these feature by setting t
| `recordedQueriesMulti` | Enables writing multiple items from a single query within Recorded Queries | Yes |
| `transformationsRedesign` | Enables the transformations redesign | Yes |
| `grafanaAPIServer` | Enable Kubernetes API Server for Grafana resources | Yes |
| `awsAsyncQueryCaching` | Enable caching for async queries for Redshift and Athena. Requires that the `useCachingService` feature toggle is enabled and the datasource has caching and async query support enabled | Yes |
| `splitScopes` | Support faster dashboard and folder search by splitting permission scopes into parts | Yes |
| `prometheusConfigOverhaulAuth` | Update the Prometheus configuration page with the new auth component | Yes |
| `influxdbSqlSupport` | Enable InfluxDB SQL query language support with new querying UI | Yes |
@ -76,7 +77,6 @@ Some features are enabled by default. You can disable these feature by setting t
| `faroDatasourceSelector` | Enable the data source selector within the Frontend Apps section of the Frontend Observability |
| `enableDatagridEditing` | Enables the edit functionality in the datagrid panel |
| `sqlDatasourceDatabaseSelection` | Enables previous SQL data source dataset dropdown behavior |
| `awsAsyncQueryCaching` | Enable caching for async queries for Redshift and Athena. Requires that the `useCachingService` feature toggle is enabled and the datasource has caching and async query support enabled |
| `dashgpt` | Enable AI powered features in dashboards |
| `reportingRetries` | Enables rendering retries for the reporting feature |
| `formatString` | Enable format string transformer |

View File

@ -754,7 +754,8 @@ var (
{
Name: "awsAsyncQueryCaching",
Description: "Enable caching for async queries for Redshift and Athena. Requires that the `useCachingService` feature toggle is enabled and the datasource has caching and async query support enabled",
Stage: FeatureStagePublicPreview,
Stage: FeatureStageGeneralAvailability,
Expression: "true", // enabled by default
Owner: awsDatasourcesSquad,
Created: time.Date(2023, time.July, 21, 12, 0, 0, 0, time.UTC),
},

View File

@ -87,7 +87,7 @@ grafanaAPIServer,GA,@grafana/grafana-app-platform-squad,2023-07-14,false,false,t
grafanaAPIServerWithExperimentalAPIs,experimental,@grafana/grafana-app-platform-squad,2023-10-06,true,false,true,false
grafanaAPIServerEnsureKubectlAccess,experimental,@grafana/grafana-app-platform-squad,2023-12-06,true,false,true,false
featureToggleAdminPage,experimental,@grafana/grafana-operator-experience-squad,2023-07-18,false,false,true,false
awsAsyncQueryCaching,preview,@grafana/aws-datasources,2023-07-21,false,false,false,false
awsAsyncQueryCaching,GA,@grafana/aws-datasources,2023-07-21,false,false,false,false
splitScopes,GA,@grafana/identity-access-team,2023-07-21,false,false,true,false
traceToProfiles,experimental,@grafana/observability-traces-and-profiling,2023-11-01,false,false,false,true
tracesEmbeddedFlameGraph,experimental,@grafana/observability-traces-and-profiling,2023-11-02,false,false,false,true

1 Name Stage Owner Created requiresDevMode RequiresLicense RequiresRestart FrontendOnly
87 grafanaAPIServerWithExperimentalAPIs experimental @grafana/grafana-app-platform-squad 2023-10-06 true false true false
88 grafanaAPIServerEnsureKubectlAccess experimental @grafana/grafana-app-platform-squad 2023-12-06 true false true false
89 featureToggleAdminPage experimental @grafana/grafana-operator-experience-squad 2023-07-18 false false true false
90 awsAsyncQueryCaching preview GA @grafana/aws-datasources 2023-07-21 false false false false
91 splitScopes GA @grafana/identity-access-team 2023-07-21 false false true false
92 traceToProfiles experimental @grafana/observability-traces-and-profiling 2023-11-01 false false false true
93 tracesEmbeddedFlameGraph experimental @grafana/observability-traces-and-profiling 2023-11-02 false false false true