Skip to content
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

fix jaeger http endpoint #5378

Merged
merged 2 commits into from
Sep 3, 2024
Merged

fix jaeger http endpoint #5378

merged 2 commits into from
Sep 3, 2024

Conversation

trinity-1686a
Copy link
Contributor

Description

fix a bug with jaeger search api returning all root span instead of matching ones.
The query was modified to be Must(is_root) Should(TraceId1) Should(TraceId2)..., which sounds like it limits more than just Shoulds would, but actually it means the Should only count for scoring (which we are not doing). What we ought to do is Must(is_root) Must(Should(TraceId1) Should(TraceId2)...) (must be root, and must match one of the trace id)

Copy link

github-actions bot commented Sep 3, 2024

On SSD:

Average search latency is 1.01x that of the reference (lower is better).
Ref run id: 3194, ref commit: 707f22a
Link

On GCS:

Average search latency is 1.02x that of the reference (lower is better).
Ref run id: 3195, ref commit: 707f22a
Link

@trinity-1686a trinity-1686a enabled auto-merge (squash) September 3, 2024 12:23
@trinity-1686a trinity-1686a merged commit 9d8fab0 into main Sep 3, 2024
5 checks passed
@trinity-1686a trinity-1686a deleted the trinity/fix-jaeger-http branch September 3, 2024 12:32
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants