-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Switch to distributed scheduling model
This replaces Celerity's master/worker scheduling model with a fully distributed approach: Each node still processes all chunks, but commands are only generated for locally executed chunks, as well as to push data to other nodes as needed. Instead of tracking where the newest data resides within the distributed system at all times, each node now only determines which parts of the data are currently up to date (based on task-level write requirements) as well as which parts it "owns" (based on writes by locally executed chunks). Read requirements on stale data by local chunks generate await push commands, which now can be satisfied by any number of incoming transfers (as nodes do not know who currently owns the data). Conversely, reads on locally owned data by remote chunks generate push commands. Co-authored-by: Fabian Knorr <fabian.knorr@dps.uibk.ac.at>
- Loading branch information
Showing
41 changed files
with
3,197 additions
and
3,729 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
Oops, something went wrong.