-
Notifications
You must be signed in to change notification settings - Fork 12
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
Local scheduler prototype #57
Open
pgaref
wants to merge
32
commits into
raulcf:master
Choose a base branch
from
lsds:local_scheduler
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Conversation
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
…line using a static configuration file like: ./seep-worker --properties.file=/home/pg1712/my-config/worker1.properties. As it tourned out the properties file was not being read because by default it was expecting a local file with name properties.file. Solution: I fixed that reading the prorties-filename form the command line, given by the user and then changed the file priorities to have higher priority than command line arguments - otherwise they are going to be ignored every time! I am not sure what was the idea here but the way it works now makes more sense to me.
…ties file - TODO: make sure the properties parameters have higher priority than the DEFAULT values (which are part of command line values)
…an have custom names) - implemented an extra method to check if the command line property has the default value or not
Merge remote-tracking branch 'origin/master' into config_file_fix
…mmands for: Local Scheduler Election and Local Scheduler Stage
…ion tested-working
…ency with the rest of the project
…s tracking * Fix worker to local scheduler notifications * Introduce Groupstages concept * proper exceptions when worker receive local scheduler commands or the other way round * Add GroupStage concept and deque accord to priorities
…than one workers as well. TODO: finally introduce priorities
…e to define priorities inside Tasks
… fibonacci priority scheduled example
… send multiple independent stages from global to local scheduler
…time - multuple workers tested working - For a clean implementation I need to extend StageTracker to support multiple stages
…time - multuple workers tested working - For a clean implementation I need to extend StageTracker to support multiple stages
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Local Scheduler prototype implementation:
TODO: