-
Notifications
You must be signed in to change notification settings - Fork 11.2k
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
[Indexer] Add synthetic ingestion and benchmark framework #19899
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
3 Skipped Deployments
|
f548742
to
05e9335
Compare
05e9335
to
af9f43e
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
looks great, thanks Xun!
@@ -160,7 +160,7 @@ impl<W: Worker + 'static> WorkerPool<W> { | |||
|
|||
// Wait for all workers to finish | |||
for join_handle in join_handles { | |||
join_handle.await.expect("worker thread panicked"); | |||
let _ = join_handle.await; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why do we need this, presumably if workers exit gracefully due to cancel
, the behavior before & after is the same?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That wasn't needed. Forgot to remove. Thanks!
af9f43e
to
52e42f0
Compare
Description
This PR adds two things:
Test plan
Added an e2e test.
Release notes
Check each box that your changes affect. If none of the boxes relate to your changes, release notes aren't required.
For each box you select, include information after the relevant heading that describes the impact of your changes that a user might notice and any actions they must take to implement updates.