-
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
refactor: Add arg cpuExecutor to ConnectorFactory::newConnector #11861
Conversation
✅ Deploy Preview for meta-velox canceled.
|
@gggrace14 has imported this pull request. If you are a Meta employee, you can view this diff on Phabricator. |
eee9a8e
to
7360e66
Compare
@gggrace14 has imported this pull request. If you are a Meta employee, you can view this diff on Phabricator. |
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.
@gggrace14 thanks!
Ah, thank you, @xiaoxmeng , for the prompt review :) |
Add an additional argument, cpuExecutor, to the ConnectorFactory's newConnector interface. Connectors could send async operators to this cpuExecutor to prevent occupying the driver executor.
@gggrace14 has imported this pull request. If you are a Meta employee, you can view this diff on Phabricator. |
@gggrace14 merged this pull request in 22ba7ec. |
…bookincubator#11861) Summary: Add an additional argument, cpuExecutor, to the ConnectorFactory's newConnector interface. Connectors could send async operators to this cpuExecutor to prevent occupying the driver executor. Pull Request resolved: facebookincubator#11861 Reviewed By: xiaoxmeng Differential Revision: D67231282 Pulled By: gggrace14 fbshipit-source-id: a92bb2c27ca26bf86a083ffea2a62b6c89231093
Add an additional argument, cpuExecutor, to the ConnectorFactory's
newConnector interface. Connectors could send async operators to this
cpuExecutor to prevent occupying the driver executor.