SYNOPSIS

    my $client = TheSchwartz->new( databases => $DATABASE_INFO );

    my $job = TheSchwartz::Job->new_from_array('MyWorker', foo => 'bar');
    $client->dispatch_async($job);

    $job = TheSchwartz::Job->new(
        funcname => 'MyWorker',
        uniqkey  => 7,
        arg      => [ foo => 'bar' ],
    );
    $client->dispatch_async($job);

DESCRIPTION

\*(C`TheSchwartz::Job\*(C' models the jobs that are posted to the job queue by your application, then grabbed and performed by your worker processes.

\*(C`TheSchwartz::Job\*(C' is a \*(C`Data::ObjectDriver\*(C' model class. See Data::ObjectDriver::BaseObject.

FIELDS

\*(C`TheSchwartz::Job\*(C' objects have these possible fields: The unique numeric identifier for this job. Set automatically when saved. The numeric identifier for the type of job to perform. \*(C`TheSchwartz\*(C' clients map function names (also known as abilities and worker class names) to these numbers using \*(C`TheSchwartz::FuncMap\*(C' records. Arbitrary state data to supply to the worker process for this job. If specified as a reference, the data is frozen to a blob with the \*(C`Storable\*(C' module. An arbitrary string identifier used to prevent applications from posting duplicate jobs. At most one with the same \*(C`uniqkey\*(C' value can be posted to a single \*(C`TheSchwartz\*(C' database. The \*(C`insert_time\*(C' field is not used. The \s-1UNIX\s0 system time after which the job can next be attempted by a worker process. This timestamp is set when a job is first created or is released after a failure. The \s-1UNIX\s0 system time after which the job can next be available by a worker process. This timestamp is set when a job is grabbed by a worker process, and reset to 0 when is released due to failure to complete the job. The \*(C`priority\*(C' field is not used. A string used to discover jobs that can be efficiently pipelined with a given job due to some shared resource. For example, for email delivery jobs, the domain of an email address could be used as the \*(C`coalesce\*(C' value. A worker process could then deliver all the mail queued for a given mail host after connecting to it once.

USAGE

Returns a new job object with the given data. Members of %args can be keyed on any of the fields described above, or \*(C`funcname\*(C'. Returns a new job with the given function name (also called ability or worker class), and the scalar or reference $arg for an argument. Returns the function name for the given job, after setting it to $funcname, if specified. Returns the \*(C`TheSchwartz::JobHandle\*(C' object describing this job, after setting it to $handle, if specified. A job handle is a convenience class for accessing other records related to jobs; as its convenience methods are also available directly from \*(C`TheSchwartz::Job\*(C' instances, you will usually not need to work directly with job handles. Returns the \*(C`Data::ObjectDriver\*(C' object driver for accessing the database in which $job is stored. See Data::ObjectDriver. Records and returns a new \*(C`TheSchwartz::Error\*(C' object representing a failure to perform $job, for reason $msg. Returns the exit status specified by the worker that either completed the job or declared it failed permanently. The exit status for a job will be available for a period of time after the job has exited the queue. That time is defined in the job's worker class's \*(C`keep_exit_status_for()\*(C' method. Returns a list of the error messages specified to \*(C`add_failure()\*(C' when a worker failed to perform the given job. Returns the number of times a worker has grabbed this job, only to fail to complete it. Records the exit status of the given job as $status. Returns whether the given job has been completed or failed since it was created or loaded, setting whether it has to $value first, if specified. Sends the given message to the job's \*(C`TheSchwartz\*(C' client as debug output. Set $job as the current job being performed by its associated \*(C`TheSchwartz\*(C' client.

WORKING

\*(C`TheSchwartz::Worker\*(C' classes should use these methods to update the status of their jobs: Records that the given job has been fully performed and removes it from the job queue. Completing a job records its exit status as 0. Records that the worker performing this job failed to complete it, for reason $msg.

If workers have not failed to complete the job more times than the maximum number of retries for that type of job, the job will be reattempted after its retry delay has elapsed. The maximum number of retries and the delay before a retry are defined in the job's worker class definition as \*(C`max_retries()\*(C' and \*(C`retry_delay()\*(C' respectively.

If workers have exceeded the maximum number of reattempts for this job, the job's exit status is recorded as $exit_status, and the job is removed from the queue. If $exit_status is not defined or 0, the job will be recorded with an exit status of 1, to indicate a failure. Records that the worker performing this job failed to complete it, as in \*(C`failed()\*(C', but that the job should not be reattempted, no matter how many times the job has been attempted before. The job's exit status is thus recorded as $exit_status (or 1), and the job is removed from the queue. Atomically replaces the single job $job with the given set of jobs.

This can be used to decompose one \*(L"metajob\*(R" posted by your application into a set of jobs workers can perform, or to post a job or jobs required to complete the process already partly performed.

RELATED TO TheSchwartz::Job…

Data::ObjectDriver, Data::ObjectDriver::BaseObject, Storable