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
Handle prefixes when listing blocks from S3 and GCS (#3466) (#3502)
* Handle prefixes when listing blocks from S3
fixes#3465
* Handle prefixes when listing blocks from GCS
* Add test for prefixes when listing blocks from Azure
* Update unit tests to check for actual block IDs instead of just length of the slices
Cleanup unit tests
* Further refine S3/GCS backend for ListBlocks
Brings logic more in line with Azure object parsing.
Also has the benefit of handling prefixes without a trailing slash.
* Update poller integration test to exercise prefixes
* Update e2e test to exercise prefixes
* Fix format check error
* Fix failing e2e tests
* Remove unnecessary prefix permutations from e2e test
* Remove unnecessary test config file copy
* Ignore lint
---------
Co-authored-by: Zach Leslie <[email protected]>
(cherry picked from commit 8e6e7fe)
Co-authored-by: Ben Foster <[email protected]>
Copy file name to clipboardExpand all lines: CHANGELOG.md
+9
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,15 @@
1
1
## main / unreleased
2
2
3
3
*[BUGFIX] Fix some instances where spanmetrics histograms could be inconsistent [#3412](https://github.com/grafana/tempo/pull/3412) (@mdisibio)
4
+
*[ENHANCEMENT] Add string interning to TraceQL queries [#3411](https://github.com/grafana/tempo/pull/3411) (@mapno)
5
+
*[ENHANCEMENT] Add new (unsafe) query hints for metrics queries [#3396](https://github.com/grafana/tempo/pull/3396) (@mdisibio)
6
+
*[BUGFIX] Fix metrics query results when filtering and rating on the same attribute [#3428](https://github.com/grafana/tempo/issues/3428) (@mdisibio)
7
+
*[BUGFIX] Fix metrics query results when series contain empty strings or nil values [#3429](https://github.com/grafana/tempo/issues/3429) (@mdisibio)
8
+
*[BUGFIX] Fix metrics query duration check, add per-tenant override for max metrics query duration [#3479](https://github.com/grafana/tempo/issues/3479) (@mdisibio)
9
+
*[BUGFIX] Return unfiltered results when a bad TraceQL query is provided in autocomplete. [#3426](https://github.com/grafana/tempo/pull/3426) (@mapno)
10
+
*[BUGFIX] Correctly handle 429s in GRPC search streaming. [#3469](https://github.com/grafana/tempo/pull/3469) (@joe-ellitot)
11
+
*[BUGFIX] Correctly cancel GRPC and HTTP contexts in the frontend to prevent having to rely on http write timeout. [#3443](https://github.com/grafana/tempo/pull/3443) (@joe-elliott)
12
+
*[BUGFIX] Fix compaction/retention in AWS S3 and GCS when a prefix is configured. [#3465](https://github.com/grafana/tempo/issues/3465) (@bpfoster)
0 commit comments