mirror of
https://github.com/grafana/grafana.git
synced 2026-07-30 00:08:10 -05:00
Feature toggles: Remove redshiftAsyncQueryDataSupport and athenaAsyncQueryDataSupport toggles (#84653)
This commit is contained in:
@@ -27,8 +27,6 @@ Some features are enabled by default. You can disable these feature by setting t
|
|||||||
| `correlations` | Correlations page | |
|
| `correlations` | Correlations page | |
|
||||||
| `exploreContentOutline` | Content outline sidebar | Yes |
|
| `exploreContentOutline` | Content outline sidebar | Yes |
|
||||||
| `cloudWatchCrossAccountQuerying` | Enables cross-account querying in CloudWatch datasources | Yes |
|
| `cloudWatchCrossAccountQuerying` | Enables cross-account querying in CloudWatch datasources | Yes |
|
||||||
| `redshiftAsyncQueryDataSupport` | Enable async query data support for Redshift | Yes |
|
|
||||||
| `athenaAsyncQueryDataSupport` | Enable async query data support for Athena | Yes |
|
|
||||||
| `nestedFolderPicker` | Enables the new folder picker to work with nested folders. Requires the nestedFolders feature toggle | Yes |
|
| `nestedFolderPicker` | Enables the new folder picker to work with nested folders. Requires the nestedFolders feature toggle | Yes |
|
||||||
| `logsContextDatasourceUi` | Allow datasource to provide custom UI for context view | Yes |
|
| `logsContextDatasourceUi` | Allow datasource to provide custom UI for context view | Yes |
|
||||||
| `lokiQuerySplitting` | Split large interval queries into subqueries with smaller time intervals | Yes |
|
| `lokiQuerySplitting` | Split large interval queries into subqueries with smaller time intervals | Yes |
|
||||||
|
|||||||
@@ -48,8 +48,6 @@ export interface FeatureToggles {
|
|||||||
grpcServer?: boolean;
|
grpcServer?: boolean;
|
||||||
unifiedStorage?: boolean;
|
unifiedStorage?: boolean;
|
||||||
cloudWatchCrossAccountQuerying?: boolean;
|
cloudWatchCrossAccountQuerying?: boolean;
|
||||||
redshiftAsyncQueryDataSupport?: boolean;
|
|
||||||
athenaAsyncQueryDataSupport?: boolean;
|
|
||||||
showDashboardValidationWarnings?: boolean;
|
showDashboardValidationWarnings?: boolean;
|
||||||
mysqlAnsiQuotes?: boolean;
|
mysqlAnsiQuotes?: boolean;
|
||||||
accessControlOnCall?: boolean;
|
accessControlOnCall?: boolean;
|
||||||
|
|||||||
@@ -233,23 +233,6 @@ var (
|
|||||||
Owner: awsDatasourcesSquad,
|
Owner: awsDatasourcesSquad,
|
||||||
AllowSelfServe: true,
|
AllowSelfServe: true,
|
||||||
},
|
},
|
||||||
{
|
|
||||||
Name: "redshiftAsyncQueryDataSupport",
|
|
||||||
Description: "Enable async query data support for Redshift",
|
|
||||||
Stage: FeatureStageGeneralAvailability,
|
|
||||||
Expression: "true", // enabled by default
|
|
||||||
Owner: awsDatasourcesSquad,
|
|
||||||
AllowSelfServe: false,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
Name: "athenaAsyncQueryDataSupport",
|
|
||||||
Description: "Enable async query data support for Athena",
|
|
||||||
Stage: FeatureStageGeneralAvailability,
|
|
||||||
Expression: "true", // enabled by default
|
|
||||||
FrontendOnly: true,
|
|
||||||
Owner: awsDatasourcesSquad,
|
|
||||||
AllowSelfServe: false,
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
Name: "showDashboardValidationWarnings",
|
Name: "showDashboardValidationWarnings",
|
||||||
Description: "Show warnings when dashboards do not validate against the schema",
|
Description: "Show warnings when dashboards do not validate against the schema",
|
||||||
|
|||||||
@@ -29,8 +29,6 @@ returnToPrevious,preview,@grafana/grafana-frontend-platform,false,false,true
|
|||||||
grpcServer,preview,@grafana/grafana-app-platform-squad,false,false,false
|
grpcServer,preview,@grafana/grafana-app-platform-squad,false,false,false
|
||||||
unifiedStorage,experimental,@grafana/grafana-app-platform-squad,true,true,false
|
unifiedStorage,experimental,@grafana/grafana-app-platform-squad,true,true,false
|
||||||
cloudWatchCrossAccountQuerying,GA,@grafana/aws-datasources,false,false,false
|
cloudWatchCrossAccountQuerying,GA,@grafana/aws-datasources,false,false,false
|
||||||
redshiftAsyncQueryDataSupport,GA,@grafana/aws-datasources,false,false,false
|
|
||||||
athenaAsyncQueryDataSupport,GA,@grafana/aws-datasources,false,false,true
|
|
||||||
showDashboardValidationWarnings,experimental,@grafana/dashboards-squad,false,false,false
|
showDashboardValidationWarnings,experimental,@grafana/dashboards-squad,false,false,false
|
||||||
mysqlAnsiQuotes,experimental,@grafana/backend-platform,false,false,false
|
mysqlAnsiQuotes,experimental,@grafana/backend-platform,false,false,false
|
||||||
accessControlOnCall,preview,@grafana/identity-access-team,false,false,false
|
accessControlOnCall,preview,@grafana/identity-access-team,false,false,false
|
||||||
|
|||||||
|
@@ -127,14 +127,6 @@ const (
|
|||||||
// Enables cross-account querying in CloudWatch datasources
|
// Enables cross-account querying in CloudWatch datasources
|
||||||
FlagCloudWatchCrossAccountQuerying = "cloudWatchCrossAccountQuerying"
|
FlagCloudWatchCrossAccountQuerying = "cloudWatchCrossAccountQuerying"
|
||||||
|
|
||||||
// FlagRedshiftAsyncQueryDataSupport
|
|
||||||
// Enable async query data support for Redshift
|
|
||||||
FlagRedshiftAsyncQueryDataSupport = "redshiftAsyncQueryDataSupport"
|
|
||||||
|
|
||||||
// FlagAthenaAsyncQueryDataSupport
|
|
||||||
// Enable async query data support for Athena
|
|
||||||
FlagAthenaAsyncQueryDataSupport = "athenaAsyncQueryDataSupport"
|
|
||||||
|
|
||||||
// FlagShowDashboardValidationWarnings
|
// FlagShowDashboardValidationWarnings
|
||||||
// Show warnings when dashboards do not validate against the schema
|
// Show warnings when dashboards do not validate against the schema
|
||||||
FlagShowDashboardValidationWarnings = "showDashboardValidationWarnings"
|
FlagShowDashboardValidationWarnings = "showDashboardValidationWarnings"
|
||||||
|
|||||||
@@ -506,7 +506,8 @@
|
|||||||
"metadata": {
|
"metadata": {
|
||||||
"name": "redshiftAsyncQueryDataSupport",
|
"name": "redshiftAsyncQueryDataSupport",
|
||||||
"resourceVersion": "1709648236447",
|
"resourceVersion": "1709648236447",
|
||||||
"creationTimestamp": "2024-03-05T14:17:16Z"
|
"creationTimestamp": "2024-03-05T14:17:16Z",
|
||||||
|
"deletionTimestamp": "2024-03-18T12:15:18Z"
|
||||||
},
|
},
|
||||||
"spec": {
|
"spec": {
|
||||||
"description": "Enable async query data support for Redshift",
|
"description": "Enable async query data support for Redshift",
|
||||||
@@ -1055,7 +1056,8 @@
|
|||||||
"metadata": {
|
"metadata": {
|
||||||
"name": "athenaAsyncQueryDataSupport",
|
"name": "athenaAsyncQueryDataSupport",
|
||||||
"resourceVersion": "1709648236447",
|
"resourceVersion": "1709648236447",
|
||||||
"creationTimestamp": "2024-03-05T14:17:16Z"
|
"creationTimestamp": "2024-03-05T14:17:16Z",
|
||||||
|
"deletionTimestamp": "2024-03-18T12:15:18Z"
|
||||||
},
|
},
|
||||||
"spec": {
|
"spec": {
|
||||||
"description": "Enable async query data support for Athena",
|
"description": "Enable async query data support for Athena",
|
||||||
|
|||||||
Reference in New Issue
Block a user