Locality scheduling is intended for projects for which
To use locality scheduling, projects must do the following:
Locality scheduling works as follows:
This mechanism, which is used in conjunction with locality scheduling,
lets a project create work in response to scheduler requests
rather than creating all work ahead of time.
The mechanism is controlled by an element in config.xml of the form:
".html_text("
When a host storing file X requests work, and there are no available results using X, then the scheduler touches a 'trigger file'
PROJECT_ROOT/locality_scheduling/need_work/XThe scheduler then sleeps for N seconds, and makes one additional attempt to find suitable unsent results.
The project must supply a 'on-demand work generator' daemon program that scans the need_work directory. If it finds an entry, it creates additional workunits for the file, and the transitioner then generates results for these workunits. N should be chosen large enough so that both tasks complete within N seconds most of the time (10 seconds is a good estimate).
The work generator should delete the trigger file after creating work.
In addition, if the work generator (or some other project daemon) determines that no further workunits can be made for a file X, then it can touch a trigger file
PROJECT_ROOT/locality_scheduling/no_work_available/XIf the scheduler finds this trigger file then it assumes that the project cannot create additional work for this data file and skips the 'notify, sleep, query again' sequence above. Of course it still does the initial query, so if the transitioner has made some new results for an existing (old) WU, they will get picked up.
File -> workunit -> resultLet's say there are N active hosts and target_nresults=M. Optimally, we'd like to send each file to M hosts, and have them process all the results for that file.
If the one_result_per_user_per_wu rule is in effect, a file may have work but be 'excluded' for a particular user.
Assigning work to a host with no files:
The working set is represented by a directory
PROJECT/locality_scheduling/file_working_set/whose contents are names of files in the working set. A project-specific 'working set manager' daemon is responsible for maintaining this.
If the scheduler finds that there are no sendable results for a file, it makes a file with that name in
PROJECT/sched_locality/files_no_work/The working set manager should poll this directory and remove those files from the working set. NOTE: BOINC may later create more results for the file, so it may be necessary to add it to the working set again.
Assigning work to a host with a file F:
Some projects may want to generate work incrementally. They can do this by supplying a 'work generator' daemon that polls the directory
PROJECT/locality_scheduling/need_work/and creates work for any filenames found there. To enable this, add the element
NOTE: we assume that all results have app_versions for the same set of platforms. So if any result is rejected for this reason, we give up immediately instead of scanning everything. "; page_tail(); ?>