-
Notifications
You must be signed in to change notification settings - Fork 1.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
Add HashJoinReplayer #11271
Add HashJoinReplayer #11271
Conversation
✅ Deploy Preview for meta-velox canceled.
|
c0a056b
to
98696c1
Compare
69e87a7
to
7d5a051
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.
@duanmeng thanks for the change!
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.
@duanmeng thanks for the update % one comment on hash build
4dcada9
to
3ac8fe5
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.
@duanmeng LGTM % minors on test. thanks!
a66f733
to
101c528
Compare
a2bc745
to
6747743
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.
@duanmeng LGTM. Thanks!
using namespace facebook::velox::common::hll; | ||
|
||
namespace facebook::velox::tool::trace::test { | ||
class HashJoinReplayerTest : public HiveConnectorTestBase { |
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.
Consider to have TraceReplayTestBase : public HiveConnectorTestBase in followup to handle the common env setup. Thanks!
@xiaoxmeng has imported this pull request. If you are a Meta employee, you can view this diff on Phabricator. |
b7540f8
to
aa07ab1
Compare
@xiaoxmeng has imported this pull request. If you are a Meta employee, you can view this diff on Phabricator. |
@xiaoxmeng has imported this pull request. If you are a Meta employee, you can view this diff on Phabricator. |
@xiaoxmeng merged this pull request in 1e22de8. |
Conbench analyzed the 1 benchmark run on commit There were no benchmark performance regressions. 🎉 The full Conbench report has more details. |
Add HashJoinReplayer to support replaying of hash join, and add
a valid list of operator types supporting tracing.
Part of #9668