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

Allow for returning query traces on cached query executions. #959

Merged
merged 11 commits into from
Oct 25, 2024

Conversation

mdwelsh
Copy link
Contributor

@mdwelsh mdwelsh commented Oct 21, 2024

This PR replaces #949 with a better implementation that allows the results of cached query executions to return traces. This is done by removing the concept of a separate 'trace_dir' and returning the location of the cache results for each node in the query plan. This way we can have our cache and traces too :-)

The PR also makes a few other small changes:

  • Returning a query ID and a result from the query client was becoming unwieldy, so I added a new SycamoreQueryResult type which includes the query ID, query plan, query result, and the location of the query traces.
  • I replaced a couple of places where we were manually reading in trace files with the use of .materialize() so we can use the same logic for reading the traces back everywhere.
  • I fixed up the Sycamore query integration tests, relaxing the constraints on the exact answer, and fixing a bug whereby the code generated for .rerank was broken. This test now passes!

assert isinstance(result, str)
assert len(result) > 0
result = client.run_plan(plan, codegen_mode=codegen_mode)
assert isinstance(result.result, str)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

seems like this is failing

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It was passing for me but the test is still flaky

@mdwelsh mdwelsh requested a review from baitsguy October 23, 2024 22:30
@mdwelsh mdwelsh merged commit bff9cd2 into main Oct 25, 2024
11 of 13 checks passed
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