Q.push: Functions for sending jobs to a job queue

Description Usage Arguments Details Value Note Author(s) See Also Examples

View source: R/jobqueue.R

Description

Q.push is the standard function for enqueuing jobs. Q.do is a convenience function that enqueues a job and immediately tries to pick up its result. Q.assign is used for assigning local values to variables in the queue's workspace. Q.sync is a convenience function for copying local variables 1-to-1 to the queue's workspace. Q.do.call is a convenience function for executing functions in the queue and storing their result in the queue's workspace.

Usage

1
2
3
4
5
6
Q.push(Q, ..., local = list(), tag = NULL, tranche = NULL, mute = FALSE)
Q.do(Q, ..., local = list(), tag = NULL, tranche = NULL, mute = FALSE, wait = TRUE)
Q.assign(Q, var, value, envir = globalenv())
Q.sync(Q, ...)
Q.do.call(Q, fun, args, var = NULL, envir = globalenv(), 
          tag = NULL, tranche = NULL, mute = FALSE)

Arguments

Q

A job queue as created by Q.make.

...

Q.push and Q.do an R expression which is executed in the queue's workspace as it is, after substituting the local values of the elements specified in local. Use to enclose multiple commands/lines. For Q.sync unquoted variable names.

local

A named list of the form list(var1=value1, var2=value2, ...). Variables var1, var2, ... in the expression supplied to Q.push will be replaced with value1, value2, ..., respectively (evaluated in the local workspace), before sending the expression for evaluation to the queue.

tag

A tag for the job that can be used for later retrieval. Values will be coerced to string using as.character.

tranche

Another job tag that makes it convenient to subdivide a job with one tag into several parts. Can be an arbitrary value.

mute

If set to TRUE, the queue does not return the result of the computation.

wait

Maximum total time to wait until a result becomes available (in seconds). See Q.pop for more.

var

Variable to remotely assign in the queue's workspace (given as quoted name).

value

Value to assign (evaluated locally).

envir

Environment to assign to in the queue's workspace (evaluated remotely).

fun

Function from the queue's workspace to execute (given as quoted name).

args

Function arguments given as a list (evaluated locally).

Details

Q.push is the standard function used to send jobs to the queue. As the queue is running in a separate thread (via Rscript), it also has a workspace which is different from the local session (and which is practically blank in the beginning). The expression given to Q.push is evaluated remotely in the queue's global environment, so Q.push(Q, a+1) adds 1 to the value of a from the queue's workspace. If a cannot be found there, an error is thrown.

Values from the local workspace can be injected into the expression using local. For example, Q.push(Q, a+1, local=list(a=b)) uses the value of local variable b in place of a. Here, b can also be any other expression which is evaluated locally.

Q.do performs a Q.push command, immediately followed by a Q.pop. Its primary use is as a convenience function in interactive sessions for quickly evaluated jobs. If the return value is irrelevant, it is better to use Q.push with mute=TRUE. You should be sure there are no other jobs in the queue that could prevent the timely pickup (otherwise use a unique tag as in the example below, and consider increasing wait).

Q.assign is a convenience function for assigning a local value to a remote variable. The assignment is done to the global environment unless envir is specified (given as an unquoted environment variable which is evaluated remotely). The queue's reply for this assignment operation is muted. To check if the assignment was successful check the value returned for Q.push(queue, var) (here var is without quotes). The assignment operation is a normal task in the queue's pipeline and is executed only once all previous tasks were completed. Q.assign(Q, "var", value) is equivalent to Q.push(Q, var <- value, local=list(value=value)).

Q.sync is another simplification of Q.assign. The specified variables (unquoted) are assigned under the same name to the queue's global environment. Local variable values are obtained as if the variable was used at the prompt.

Q.do.call executes the remote function fun (given as quoted name) with local arguments args and assigns result to remote variable var (given as quoted name), if specified. The evaluation result is also stored for retrieval as with Q.push (unless mute=TRUE). Use quote(variable) in args-list for variables or expressions whose remote value should be used. NOTE: unlike Q.do, this function does not attempt to pick up the computed result immediately (the name Q.do.call imitates the base function do.call).

Value

Q.push and Q.do.call return NULL invisibly.

Q.do has the same return value as Q.pop.

Q.assign returns the (locally evaluated) value which was sent to the queue for assignment.

Q.sync invisibly returns the character vector of variable names sent for assignment.

Note

The string Q.mute is reserved by the queue to tag jobs whose result should be muted. The list Q$data$mute can be extended to include further tags that should be muted.

Author(s)

Bastian Laubner

See Also

Q.make, Q.collect

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
Q = Q.make()

Q.push(Q, sum(1:1e4))
Q.push(Q, {a = 1})  # braces needed for assignment with =, not needed for a <- 1
Q.assign(Q, "b", 2)
c = 3
Q.sync(Q,c)
Q.do.call(Q, "sum", list(1:3), "d")
Q.do(Q, a+b+c == d, tag="test")  # TRUE - note: have to use a unique tag here
Q.pop.all(Q)

# use tags so that jobs can be retrieved selectively
for (i in 1:10) Q.push(Q, paste("Result:", i), local=list(i=i), tag=i);
Q.pop(Q, tag=5)  # Result: 5
Q.pop(Q, tag=2)  # Result: 2
Q.pop(Q, tag=10)  # Result: 10
Q.pop.all(Q)

Q.close(Q)

jobqueue documentation built on May 2, 2019, 6:36 p.m.