GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
Load::ResourceReq(3) User Contributed Perl Documentation Load::ResourceReq(3)

Schedule::Load::ResourceReq - Generate a request for a single resource

  See Schedule::Load::Schedule

This package provides a constructor for a request of a single resource. When scheduling, multiple resource requests may be created and the scheduler will fill (or deny) all requests in one atomic operation. This prevents nasty deadlocks (like the chopsticks deadlock.)

new (...)
Create a new object with the parameters specified in the following section.

The following parameters are accepted by new(), and are also may be read via accessor methods.
allow_reserved
When set, reserved hosts may be scheduled.
classes
An array reference of which classes the host must support to allow this job to be run on that host. Defaults to [], which allows any host.
favor_host
The hostname to try and choose if all is equal, under the presumption that there are disk access time benefits to doing so. Defaults to the current host.
jobs_running
Current number of jobs the requester is running. This is compared to max_jobs.
keep_idle_cpus
Minimum of cpus that should remain idle before scheduling this job. Negative fraction indicates that percentage of the clump, for example -0.5 will keep at least 50% of all CPUsidle. Defaults to 0.
match_cb
A string containing a subroutine which will be passed a host reference and should return true if this host has the necessary properties. This must only look at constant properties of the host (IE NOT the current host loading), as the match results may be cached. This will be evaluated in a Safe container, and can do only minimal core functions. For example: match_cb=>"sub{return $_[0]->get_undef('memory')>512;}"
max_jobs
Maximum number of jobs that can be issued if allow_none is specified in a scheduler request. Negative fraction indicates that percentage of the clump, for example -0.5 will use at most 50% of all CPUs. Defaults to 100% of the clump.
rating_cb
A string containing a subroutine which will be passed a host reference and should return a number that is compared against other hosts' ratings to determine the best host for a new job. This may include dynamic information such as instantaneous loading. A return of zero indicates this host may not be used. Ratings closer to zero are better. Defaults to a function that includes the load_limit and the cpu percentage free. Evaluated in a Safe container, and can do only minimal core functions.

The latest version is available from CPAN and from <http://www.veripool.org/>.

Copyright 1998-2011 by Wilson Snyder. This package is free software; you can redistribute it and/or modify it under the terms of either the GNU Lesser General Public License Version 3 or the Perl Artistic License Version 2.0.

Wilson Snyder <wsnyder@wsnyder.org>

Schedule::Load, Schedule::Load::Hosts, Schedule::Load::Hosts::Host
2011-01-02 perl v5.32.1

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.