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
Copy file name to clipboardExpand all lines: CHANGELOG.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -18,6 +18,7 @@
18
18
*[FEATURE] Querier/StoreGateway: Allow the tenant shard sizes to be a percent of total instances. #5393
19
19
*[FEATURE] Added the flag `-alertmanager.api-concurrency` to configure alert manager api concurrency limit. #5412
20
20
*[FEATURE] Store Gateway: Add `-store-gateway.sharding-ring.keep-instance-in-the-ring-on-shutdown` to skip unregistering instance from the ring in shutdown. #5421
21
+
*[FEATURE] Ruler: Support for filtering rules in the API. #5417
21
22
*[ENHANCEMENT] Distributor/Ingester: Add span on push path #5319
22
23
*[ENHANCEMENT] Support object storage backends for runtime configuration file. #5292
23
24
*[ENHANCEMENT] Query Frontend: Reject subquery with too small step size. #5323
@@ -32,7 +33,6 @@
32
33
*[ENHANCEMENT] Store Gateway: Add new metrics `cortex_bucket_store_sent_chunk_size_bytes`, `cortex_bucket_store_postings_size_bytes` and `cortex_bucket_store_empty_postings_total`. #5397
33
34
*[ENHANCEMENT] Add jitter to lifecycler heartbeat. #5404
34
35
*[ENHANCEMENT] Store Gateway: Add config `estimated_max_series_size_bytes` and `estimated_max_chunk_size_bytes` to address data overfetch. #5401
35
-
*[ENHANCEMENT] Ruler: Support for filtering rules. #5417
36
36
*[BUGFIX] Ruler: Validate if rule group can be safely converted back to rule group yaml from protobuf message #5265
37
37
*[BUGFIX] Querier: Convert gRPC `ResourceExhausted` status code from store gateway to 422 limit error. #5286
38
38
*[BUGFIX] Alertmanager: Route web-ui requests to the alertmanager distributor when sharding is enabled. #5293
Copy file name to clipboardExpand all lines: docs/contributing/how-integration-tests-work.md
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -20,13 +20,13 @@ This will locally build the `quay.io/cortexproject/cortex:latest` image used by
20
20
Once the Docker image is built, you can run integration tests:
21
21
22
22
```
23
-
go test -v -tags=integration,requires_docker,integration_alertmanager,integration_memberlist,integration_querier,integration_ruler,integration_query_fuzz ./integration/...
23
+
go test -v -tags=requires_docker ./integration/...
24
24
```
25
25
26
-
If you want to run a single test you can use a filter. For example, to only run `TestRulerMetricsWhenIngesterFails`:
26
+
If you want to run a single test you can use a filter. For example, to only run `TestChunksStorageAllIndexBackends`:
27
27
28
28
```
29
-
go test -v -tags=integration,requires_docker,integration_ruler ./integration/ -run "^TestRulerMetricsWhenIngesterFails$" -count=1
29
+
go test -v -tags=requires_docker ./integration -run "^TestChunksStorageAllIndexBackends$"
30
30
```
31
31
32
32
### Supported environment variables
@@ -46,4 +46,4 @@ Integration tests have `requires_docker` tag (`// +build requires_docker` line f
46
46
47
47
## Isolation
48
48
49
-
Each integration test runs in isolation. For each integration test, we do create a Docker network, start Cortex and its dependencies containers, push/query series to/from Cortex and run assertions on it. Once the test has done, both the Docker network and containers are terminated and deleted.
49
+
Each integration test runs in isolation. For each integration test, we do create a Docker network, start Cortex and its dependencies containers, push/query series to/from Cortex and run assertions on it. Once the test has done, both the Docker network and containers are terminated and deleted.
0 commit comments