-
Notifications
You must be signed in to change notification settings - Fork 527
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Search looks only into recent data if the configured timerange includes recent data, but does not search beyond #2565
Comments
I have the exact same issue, i dug though the documentation for about 5h today, doing various changes... I could not find any resources related to this. I would highly welcome help. Observed behaviour: Environment: |
So I quickly attempted to reproduce this using https://github.com/grafana/intro-to-mlt/ but was unable to. Steps:
If you are having this issue in Grafana Cloud please raise a support case. If you can reproduce there and pass along queries performed, trace ids found/not found, we can use internal tools to debug and determine why the expected traces were not returned. If you are seeing this locally please provide your configuration as that would help us determine what the cause would be. |
I have reproduced this on an internal cluster and will dig in tomorrow. |
Fixed in #2581 |
Thanks. Do you know when this will be available in Grafana Cloud? |
The production rollout of this fix is ongoing now. |
I am using the open source tempo-distributed chart and I have faced this issue as well with tempo v2.1.1. Do you know if this fix will be available in the next release of tempo? |
Yes, it will be available in 2.2 |
Yes, it will be available in 2.2, but I wouldn't expect it to be in 2.1.1. I thought we only introduced it recently. |
Describe the bug
I have already reported the issue here https://community.grafana.com/t/tempo-traces-search-showing-inconsistent-results/89714 but with the findings I've made so far, this seems to be the most appropiate place for a report.
When searching for traces, the search only searches for recent data if the configured timerange includes recent data, but never searches for "cold" data even if the configured timerange would also include those.
To Reproduce
{}
){}
)Expected behavior
All data, given the configured timerange, search and limit, should be found, regardless of recent or non-recent ingestion.
Environment:
Grafana Cloud
Additional Context
https://community.grafana.com/t/tempo-traces-search-showing-inconsistent-results/89714
It might be related to this: https://github.com/grafana/tempo/blob/main/modules/querier/http.go#L114 because it always searches in either
SearchRecent
orSearchBlock
but never both.The text was updated successfully, but these errors were encountered: