You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* chore: add possibility to run individual e2e tests
Signed-off-by: Abel Simon <[email protected]>
* chore: add metric pointer for too old sample logs
Signed-off-by: Abel Simon <[email protected]>
* feat: add flag for distributed queries with overlapping intervals
Signed-off-by: Abel Simon <[email protected]>
* chore: add failing overlapping interval test
Signed-off-by: Abel Simon <[email protected]>
* chore: fix base branch diff
Signed-off-by: Abel Simon <[email protected]>
---------
Signed-off-by: Abel Simon <[email protected]>
# * If you want to limit CPU time available in e2e tests then pass E2E_DOCKER_CPUS environment variable. For example, E2E_DOCKER_CPUS=0.05 limits CPU time available
queryPartitionLabels:=cmd.Flag("query.partition-label", "Labels that partition the leaf queriers. This is used to scope down the labelsets of leaf queriers when using the distributed query mode. If set, these labels must form a partition of the leaf queriers. Partition labels must not intersect with replica labels. Every TSDB of a leaf querier must have these labels. This is useful when there are multiple external labels that are irrelevant for the partition as it allows the distributed engine to ignore them for some optimizations. If this is empty then all labels are used as partition labels.").Strings()
130
130
131
+
// currently, we choose the highest MinT of an engine when querying multiple engines. This flag allows to change this behavior to choose the lowest MinT.
132
+
queryDistributedWithOverlappingInterval:=cmd.Flag("query.distributed-with-overlapping-interval", "Allow for distributed queries using an engines lowest MinT.").Hidden().Default("false").Bool()
133
+
131
134
instantDefaultMaxSourceResolution:=extkingpin.ModelDuration(cmd.Flag("query.instant.default.max_source_resolution", "default value for max_source_resolution for instant queries. If not set, defaults to 0s only taking raw resolution into account. 1h can be a good value if you use instant queries over time ranges that incorporate times outside of your raw-retention.").Default("0s").Hidden())
132
135
133
136
defaultMetadataTimeRange:=cmd.Flag("query.metadata.default-time-range", "The default metadata time range duration for retrieving labels through Labels and Series API when the range parameters are not specified. The zero value means range covers the time since the beginning.").Default("0s").Duration()
0 commit comments