Skip to content

Commit

Permalink
improve trace search backward compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
trinity-1686a committed Aug 30, 2024
1 parent d684b92 commit 61d3e61
Showing 1 changed file with 10 additions and 7 deletions.
17 changes: 10 additions & 7 deletions quickwit/quickwit-jaeger/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,8 @@ use quickwit_proto::jaeger::storage::v1::{
};
use quickwit_proto::opentelemetry::proto::trace::v1::status::StatusCode as OtlpStatusCode;
use quickwit_proto::search::{CountHits, ListTermsRequest, SearchRequest};
use quickwit_query::query_ast::{BoolQuery, QueryAst, RangeQuery, TermQuery};
use quickwit_query::query_ast::{BoolQuery, QueryAst, RangeQuery, TermQuery, UserInputQuery};
use quickwit_query::BooleanOperand;
use quickwit_search::{FindTraceIdsCollector, SearchService};
use serde::Deserialize;
use serde_json::Value as JsonValue;
Expand Down Expand Up @@ -321,13 +322,15 @@ impl JaegerService {
query.should.push(term_query.into());
}
if root_only {
// TODO this isn't backward compatible. We could do NOT is_root:false with a lenient
// UserInputQuery once we support being lenient on missing fields
let term_query = TermQuery {
field: "is_root".to_string(),
value: "true".to_string(),
// we do this so we don't error on old indexes, and instead return both root and non
// root spans
let is_root = UserInputQuery {
user_text: "NOT is_root:false".to_string(),
default_fields: None,
default_operator: BooleanOperand::And,
lenient: true,
};
query.must.push(term_query.into());
query.must.push(is_root.into());
}

let query_ast: QueryAst = query.into();
Expand Down

0 comments on commit 61d3e61

Please sign in to comment.