Skip to content

Commit dc78609

Browse files
committed
remove -querier.at-modifier-enabled flag
Signed-off-by: Ben Ye <benye@amazon.com>
1 parent 24edba0 commit dc78609

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
* [CHANGE] QueryFrontend/QueryScheduler: Deprecate `-querier.max-outstanding-requests-per-tenant` and `-query-scheduler.max-outstanding-requests-per-tenant` flags. Use frontend.max-outstanding-requests-per-tenant instead. #6146
1111
* [CHANGE] Ingesters: Enable 'snappy-block' compression on ingester clients by default. #6148
1212
* [CHANGE] Ruler: Scheduling `ruler.evaluation-delay-duration` to be deprecated. Use the highest value between `ruler.evaluation-delay-duration` and `ruler.query-offset` #6149
13+
* [CHANGE] Querier: Remove `-querier.at-modifier-enabled` flag. #6157
1314
* [FEATURE] Ingester/Distributor: Experimental: Enable native histogram ingestion via `-blocks-storage.tsdb.enable-native-histograms` flag. #5986 #6010 #6020
1415
* [FEATURE] Querier: Enable querying native histogram chunks. #5944 #6031
1516
* [FEATURE] Query Frontend: Support native histogram in query frontend response. #5996 #6043

pkg/querier/querier.go

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,6 @@ type Config struct {
4747
IngesterMetadataStreaming bool `yaml:"ingester_metadata_streaming"`
4848
MaxSamples int `yaml:"max_samples"`
4949
QueryIngestersWithin time.Duration `yaml:"query_ingesters_within"`
50-
AtModifierEnabled bool `yaml:"at_modifier_enabled" doc:"hidden"`
5150
EnablePerStepStats bool `yaml:"per_step_stats_enabled"`
5251

5352
// QueryStoreAfter the time after which queries should also be sent to the store and not just ingesters.
@@ -94,8 +93,6 @@ var (
9493

9594
// RegisterFlags adds the flags required to config this to the given FlagSet.
9695
func (cfg *Config) RegisterFlags(f *flag.FlagSet) {
97-
//lint:ignore faillint Need to pass the global logger like this for warning on deprecated methods
98-
flagext.DeprecatedFlag(f, "querier.at-modifier-enabled", "This flag is no longer functional; at-modifier is always enabled now.", util_log.Logger)
9996
//lint:ignore faillint Need to pass the global logger like this for warning on deprecated methods
10097
flagext.DeprecatedFlag(f, "querier.ingester-streaming", "Deprecated: Use streaming RPCs to query ingester. QueryStream is always enabled and the flag is not effective anymore.", util_log.Logger)
10198
//lint:ignore faillint Need to pass the global logger like this for warning on deprecated methods

0 commit comments

Comments
 (0)