forked from facebookincubator/velox
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add execution mode enforcement (facebookincubator#9489)
Summary: Velox task has two execution modes: one is the sequential execution mode used by streaming service and the other is the parallel execution mode used by query engine like Prestissimo. The two execution modes use different APIs but we don't have any reliable way to tell if a task is under sequential or parallel execution modes internally, such as parallel execution mode use a driver executor but sequential mode not. This PR defines execution mode for the task/query to add sanity checks for different api calls. Pull Request resolved: facebookincubator#9489 Reviewed By: xiaoxmeng Differential Revision: D56227111 Pulled By: tanjialiang fbshipit-source-id: ce95bf693fee4274ad5743fb6ea7a15e0654550e
- Loading branch information
1 parent
09efd20
commit 53f6bf7
Showing
20 changed files
with
344 additions
and
49 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.