Version: | 1.34.0 |
Title: | Unified Parallel and Distributed Processing in R for Everyone |
Imports: | digest, globals (≥ 0.16.1), listenv (≥ 0.8.0), parallel, parallelly (≥ 1.38.0), utils |
Suggests: | methods, RhpcBLASctl, R.rsp, markdown |
VignetteBuilder: | R.rsp |
Description: | The purpose of this package is to provide a lightweight and unified Future API for sequential and parallel processing of R expression via futures. The simplest way to evaluate an expression in parallel is to use 'x %<-% { expression }' with 'plan(multisession)'. This package implements sequential, multicore, multisession, and cluster futures. With these, R expressions can be evaluated on the local machine, in parallel a set of local machines, or distributed on a mix of local and remote machines. Extensions to this package implement additional backends for processing futures via compute cluster schedulers, etc. Because of its unified API, there is no need to modify any code in order switch from sequential on the local machine to, say, distributed processing on a remote compute cluster. Another strength of this package is that global variables and functions are automatically identified and exported as needed, making it straightforward to tweak existing code to make use of futures. |
License: | LGPL-2.1 | LGPL-3 [expanded from: LGPL (≥ 2.1)] |
LazyLoad: | TRUE |
ByteCompile: | TRUE |
URL: | https://future.futureverse.org, https://github.com/HenrikBengtsson/future |
BugReports: | https://github.com/HenrikBengtsson/future/issues |
Encoding: | UTF-8 |
RoxygenNote: | 7.3.2 |
NeedsCompilation: | no |
Packaged: | 2024-07-29 15:02:12 UTC; henrik |
Author: | Henrik Bengtsson |
Maintainer: | Henrik Bengtsson <henrikb@braju.com> |
Repository: | CRAN |
Date/Publication: | 2024-07-29 16:50:05 UTC |
Gets the length of an object without dispatching
Description
Gets the length of an object without dispatching
Usage
.length(x)
Arguments
x |
Any R object. |
Details
This function returns length(unclass(x))
, but tries to avoid
calling unclass(x)
unless necessary.
Value
A non-negative integer.
See Also
Control whether standard output should be captured or not
Description
Control whether standard output should be captured or not
Usage
fassignment %conditions% capture
Arguments
fassignment |
The future assignment, e.g.
|
capture |
If TRUE, the standard output will be captured, otherwise not. |
Specify globals and packages for a future assignment
Description
Specify globals and packages for a future assignment
Usage
fassignment %globals% globals
fassignment %packages% packages
Arguments
fassignment |
The future assignment, e.g.
|
globals |
(optional) a logical, a character vector, or a named list
to control how globals are handled.
For details, see section 'Globals used by future expressions'
in the help for |
packages |
(optional) a character vector specifying packages to be attached in the R environment evaluating the future. |
Specify label for a future assignment
Description
Specify label for a future assignment
Usage
fassignment %label% label
Arguments
fassignment |
The future assignment, e.g.
|
label |
An optional character string label attached to the future. |
Control lazy / eager evaluation for a future assignment
Description
Control lazy / eager evaluation for a future assignment
Usage
fassignment %lazy% lazy
Arguments
fassignment |
The future assignment, e.g.
|
lazy |
If FALSE (default), the future is resolved eagerly (starting immediately), otherwise not. |
Use a specific plan for a future assignment
Description
Use a specific plan for a future assignment
Usage
fassignment %plan% strategy
Arguments
fassignment |
The future assignment, e.g.
|
strategy |
The mechanism for how the future should be
resolved. See |
See Also
The plan()
function sets the default plan for all futures.
Set random seed for future assignment
Description
Set random seed for future assignment
Usage
fassignment %seed% seed
Arguments
fassignment |
The future assignment, e.g.
|
seed |
(optional) If TRUE, the random seed, that is, the state of the
random number generator (RNG) will be set such that statistically sound
random numbers are produced (also during parallelization).
If FALSE (default), it is assumed that the future expression does neither
need nor use random numbers generation.
To use a fixed random seed, specify a L'Ecuyer-CMRG seed (seven integer)
or a regular RNG seed (a single integer). If the latter, then a
L'Ecuyer-CMRG seed will be automatically created based on the given seed.
Furthermore, if FALSE, then the future will be monitored to make sure it
does not use random numbers. If it does and depending on the value of
option |
Control whether standard output should be captured or not
Description
Control whether standard output should be captured or not
Usage
fassignment %stdout% capture
Arguments
fassignment |
The future assignment, e.g.
|
capture |
If TRUE, the standard output will be captured, otherwise not. |
Temporarily tweaks the arguments of the current strategy
Description
Temporarily tweaks the arguments of the current strategy
Usage
fassignment %tweak% tweaks
Arguments
fassignment |
The future assignment, e.g.
|
tweaks |
A named list (or vector) with arguments that should be changed relative to the current strategy. |
Back trace the expressions evaluated when an error was caught
Description
Back trace the expressions evaluated when an error was caught
Usage
backtrace(future, envir = parent.frame(), ...)
Arguments
future |
A future with a caught error. |
envir |
the environment where to locate the future. |
... |
Not used. |
Value
A list with the future's call stack that led up to the error.
Examples
my_log <- function(x) log(x)
foo <- function(...) my_log(...)
f <- future({ foo("a") })
res <- tryCatch({
v <- value(f)
}, error = function(ex) {
t <- backtrace(f)
print(t)
})
Create a cluster future whose value will be resolved asynchronously in a parallel process
Description
A cluster future is a future that uses cluster evaluation, which means that its value is computed and resolved in parallel in another process.
Usage
cluster(
...,
persistent = FALSE,
workers = availableWorkers(),
envir = parent.frame()
)
Arguments
... |
Additional named elements passed to |
persistent |
If FALSE, the evaluation environment is cleared from objects prior to the evaluation of the future. |
workers |
A |
envir |
The environment from where global objects should be identified. |
Details
This function is not meant to be called directly. Instead, the typical usages are:
# Evaluate futures via a single background R process on the local machine plan(cluster, workers = 1) # Evaluate futures via two background R processes on the local machine plan(cluster, workers = 2) # Evaluate futures via a single R process on another machine on on the # local area network (LAN) plan(cluster, workers = "raspberry-pi") # Evaluate futures via a single R process running on a remote machine plan(cluster, workers = "pi.example.org") # Evaluate futures via four R processes, one running on the local machine, # two running on LAN machine 'n1' and one on a remote machine plan(cluster, workers = c("localhost", "n1", "n1", "pi.example.org")
Value
Examples
## Use cluster futures
cl <- parallel::makeCluster(2, timeout = 60)
plan(cluster, workers = cl)
## A global variable
a <- 0
## Create future (explicitly)
f <- future({
b <- 3
c <- 2
a * b * c
})
## A cluster future is evaluated in a separate process.
## Regardless, changing the value of a global variable will
## not affect the result of the future.
a <- 7
print(a)
v <- value(f)
print(v)
stopifnot(v == 0)
## CLEANUP
parallel::stopCluster(cl)
Export globals to the sticky-globals environment of the cluster nodes
Description
Export globals to the sticky-globals environment of the cluster nodes
Usage
clusterExportSticky(cl, globals)
Arguments
cl |
(cluster) A cluster object as returned by
|
globals |
(list) A named list of sticky globals to be exported. |
Details
This requires that the future package is installed on the cluster nodes.
Value
(invisible; cluster) The cluster object.
A cluster future is a future whose value will be resolved asynchronously in a parallel process
Description
A cluster future is a future whose value will be resolved asynchronously in a parallel process
Usage
ClusterFuture(
expr = NULL,
substitute = TRUE,
envir = parent.frame(),
persistent = FALSE,
workers = NULL,
...
)
MultisessionFuture(
expr = NULL,
substitute = TRUE,
envir = parent.frame(),
persistent = FALSE,
workers = NULL,
...
)
Arguments
expr |
An R expression. |
substitute |
If TRUE, argument |
envir |
The environment from where global objects should be identified. |
persistent |
If FALSE, the evaluation environment is cleared from objects prior to the evaluation of the future. |
workers |
A |
... |
Additional named elements passed to |
Value
ClusterFuture()
returns an object of class ClusterFuture
.
MultisessionFuture()
returns an object of class MultisessionFuture
,
which inherits from ClusterFuture
.
Usage
To use 'cluster' futures, use plan(cluster, ...)
, cf. cluster.
To use 'multisession' futures, use plan(multisession, ...)
, cf. multisession.
A future with a constant value
Description
A constant future is a future whose expression is a constant and therefore by definition is already resolved upon creation.
Usage
ConstantFuture(..., globals = TRUE, envir = emptyenv())
Arguments
... |
Additional named elements of the future. |
globals |
(optional) a logical, a character vector, or a named list
to control how globals are handled.
For details, see section 'Globals used by future expressions'
in the help for |
envir |
The environment from where global objects should be identified. |
Value
ConstantFuture()
returns an object of class ConstantFuture
.
Get the first or all references of an R object
Description
Get the first or all references of an R object
Assert that there are no references among the identified globals
Usage
find_references(x, first_only = FALSE)
assert_no_references(
x,
action = c("error", "warning", "message", "string"),
source = c("globals", "value")
)
Arguments
x |
The R object to be checked. |
first_only |
If |
action |
Type of action to take if a reference is found. |
source |
Is the source of |
Value
find_references()
returns a list of zero or more references
identified.
If a reference is detected, an informative error, warning, message,
or a character string is produced, otherwise NULL
is returned
invisibly.
Create a future
Description
Creates a future that evaluates an R expression or
a future that calls an R function with a set of arguments.
How, when, and where these futures are evaluated can be configured
using
plan()
such that it is evaluated in parallel on,
for instance, the current machine, on a remote machine, or via a
job queue on a compute cluster.
Importantly, any R code using futures remains the same regardless
on these settings and there is no need to modify the code when
switching from, say, sequential to parallel processing.
Usage
future(
expr,
envir = parent.frame(),
substitute = TRUE,
lazy = FALSE,
seed = FALSE,
globals = TRUE,
packages = NULL,
stdout = TRUE,
conditions = "condition",
earlySignal = FALSE,
label = NULL,
gc = FALSE,
...
)
futureAssign(
x,
value,
envir = parent.frame(),
substitute = TRUE,
lazy = FALSE,
seed = FALSE,
globals = TRUE,
packages = NULL,
stdout = TRUE,
conditions = "condition",
earlySignal = FALSE,
label = NULL,
gc = FALSE,
...,
assign.env = envir
)
x %<-% value
futureCall(
FUN,
args = list(),
envir = parent.frame(),
lazy = FALSE,
seed = FALSE,
globals = TRUE,
packages = NULL,
stdout = TRUE,
conditions = "condition",
earlySignal = FALSE,
label = NULL,
gc = FALSE,
...
)
Arguments
expr , value |
An R expression. |
envir |
The environment from where global objects should be identified. |
substitute |
If TRUE, argument |
lazy |
If FALSE (default), the future is resolved eagerly (starting immediately), otherwise not. |
seed |
(optional) If TRUE, the random seed, that is, the state of the
random number generator (RNG) will be set such that statistically sound
random numbers are produced (also during parallelization).
If FALSE (default), it is assumed that the future expression does neither
need nor use random numbers generation.
To use a fixed random seed, specify a L'Ecuyer-CMRG seed (seven integer)
or a regular RNG seed (a single integer). If the latter, then a
L'Ecuyer-CMRG seed will be automatically created based on the given seed.
Furthermore, if FALSE, then the future will be monitored to make sure it
does not use random numbers. If it does and depending on the value of
option |
globals |
(optional) a logical, a character vector, or a named list
to control how globals are handled.
For details, see section 'Globals used by future expressions'
in the help for |
packages |
(optional) a character vector specifying packages to be attached in the R environment evaluating the future. |
stdout |
If TRUE (default), then the standard output is captured,
and re-outputted when |
conditions |
A character string of conditions classes to be captured
and relayed. The default is to relay all conditions, including messages
and warnings. To drop all conditions, use |
earlySignal |
Specified whether conditions should be signaled as soon as possible or not. |
label |
An optional character string label attached to the future. |
gc |
If TRUE, the garbage collector run (in the process that
evaluated the future) only after the value of the future is collected.
Exactly when the values are collected may depend on various factors such
as number of free workers and whether |
... |
Additional arguments passed to |
x |
the name of a future variable, which will hold the value of the future expression (as a promise). |
assign.env |
The environment to which the variable should be assigned. |
FUN |
A function to be evaluated. |
args |
A list of arguments passed to function |
Details
The state of a future is either unresolved or resolved.
The value of a future can be retrieved using v <- value(f)
.
Querying the value of a non-resolved future will block the call
until the future is resolved.
It is possible to check whether a future is resolved or not
without blocking by using resolved(f)
.
For a future created via a future assignment
(x %<-% value
or futureAssign("x", value)
), the value
is bound to a promise, which when queried will internally call
value()
on the future and which will then be resolved
into a regular variable bound to that value. For example, with future
assignment x %<-% value
, the first time variable x
is
queried the call blocks if (and only if) the future is not yet resolved.
As soon as it is resolved, and any succeeding queries, querying x
will immediately give the value.
The future assignment construct x %<-% value
is not a formal
assignment per se, but a binary infix operator on objects x
and expression value
. However, by using non-standard evaluation,
this constructs can emulate an assignment operator similar to
x <- value
. Due to R's precedence rules of operators,
future expressions often need to be explicitly bracketed, e.g.
x %<-% { a + b }
.
The futureCall()
function works analogously to
do.call()
, which calls a function with a set of
arguments. The difference is that do.call()
returns the value of
the call whereas futureCall()
returns a future.
Value
f <- future(expr)
creates a Future f
that evaluates expression expr
, the value of the future is retrieved using v <- value(f)
.
x %<-% value
(a future assignment) and
futureAssign("x", value)
create a Future that evaluates
expression expr
and binds its value (as a
promise) to
a variable x
. The value of the future is automatically retrieved
when the assigned variable (promise) is queried.
The future itself is returned invisibly, e.g.
f <- futureAssign("x", expr)
and f <- (x %<-% expr)
.
Alternatively, the future of a future variable x
can be retrieved
without blocking using f <- futureOf(x)
.
Both the future and the variable (promise) are assigned to environment
assign.env
where the name of the future is .future_<name>
.
f <- futureCall(FUN, args)
creates a Future f
that calls function FUN
with arguments args
, where the value of the future is retrieved using x <- value(f)
.
Eager or lazy evaluation
By default, a future is resolved using eager evaluation
(lazy = FALSE
). This means that the expression starts to
be evaluated as soon as the future is created.
As an alternative, the future can be resolved using lazy
evaluation (lazy = TRUE
). This means that the expression
will only be evaluated when the value of the future is requested.
Note that this means that the expression may not be evaluated
at all - it is guaranteed to be evaluated if the value is requested.
For future assignments, lazy evaluation can be controlled via the
%lazy%
operator, e.g. x %<-% { expr } %lazy% TRUE
.
Globals used by future expressions
Global objects (short globals) are objects (e.g. variables and functions) that are needed in order for the future expression to be evaluated while not being local objects that are defined by the future expression. For example, in
a <- 42 f <- future({ b <- 2; a * b })
variable a
is a global of future assignment f
whereas
b
is a local variable.
In order for the future to be resolved successfully (and correctly),
all globals need to be gathered when the future is created such that
they are available whenever and wherever the future is resolved.
The default behavior (globals = TRUE
),
is that globals are automatically identified and gathered.
More precisely, globals are identified via code inspection of the
future expression expr
and their values are retrieved with
environment envir
as the starting point (basically via
get(global, envir = envir, inherits = TRUE)
).
In most cases, such automatic collection of globals is sufficient
and less tedious and error prone than if they are manually specified.
However, for full control, it is also possible to explicitly specify exactly which the globals are by providing their names as a character vector. In the above example, we could use
a <- 42 f <- future({ b <- 2; a * b }, globals = "a")
Yet another alternative is to explicitly specify also their values using a named list as in
a <- 42 f <- future({ b <- 2; a * b }, globals = list(a = a))
or
f <- future({ b <- 2; a * b }, globals = list(a = 42))
Specifying globals explicitly avoids the overhead added from automatically identifying the globals and gathering their values. Furthermore, if we know that the future expression does not make use of any global variables, we can disable the automatic search for globals by using
f <- future({ a <- 42; b <- 2; a * b }, globals = FALSE)
Future expressions often make use of functions from one or more packages. As long as these functions are part of the set of globals, the future package will make sure that those packages are attached when the future is resolved. Because there is no need for such globals to be frozen or exported, the future package will not export them, which reduces the amount of transferred objects. For example, in
x <- rnorm(1000) f <- future({ median(x) })
variable x
and median()
are globals, but only x
is exported whereas median()
, which is part of the stats
package, is not exported. Instead it is made sure that the stats
package is on the search path when the future expression is evaluated.
Effectively, the above becomes
x <- rnorm(1000) f <- future({ library("stats") median(x) })
To manually specify this, one can either do
x <- rnorm(1000) f <- future({ median(x) }, globals = list(x = x, median = stats::median)
or
x <- rnorm(1000) f <- future({ library("stats") median(x) }, globals = list(x = x))
Both are effectively the same.
Although rarely needed, a combination of automatic identification and manual
specification of globals is supported via attributes add
(to add
false negatives) and ignore
(to ignore false positives) on value
TRUE
. For example, with
globals = structure(TRUE, ignore = "b", add = "a")
any globals
automatically identified except b
will be used in addition to
global a
.
When using future assignments, globals can be specified analogously
using the %globals%
operator, e.g.
x <- rnorm(1000) y %<-% { median(x) } %globals% list(x = x, median = stats::median)
Author(s)
The future logo was designed by Dan LaBar and tweaked by Henrik Bengtsson.
See Also
How, when and where futures are resolved is given by the
future strategy, which can be set by the end user using the
plan()
function. The future strategy must not be
set by the developer, e.g. it must not be called within a package.
Examples
## Evaluate futures in parallel
plan(multisession)
## Data
x <- rnorm(100)
y <- 2 * x + 0.2 + rnorm(100)
w <- 1 + x ^ 2
## EXAMPLE: Regular assignments (evaluated sequentially)
fitA <- lm(y ~ x, weights = w) ## with offset
fitB <- lm(y ~ x - 1, weights = w) ## without offset
fitC <- {
w <- 1 + abs(x) ## Different weights
lm(y ~ x, weights = w)
}
print(fitA)
print(fitB)
print(fitC)
## EXAMPLE: Future assignments (evaluated in parallel)
fitA %<-% lm(y ~ x, weights = w) ## with offset
fitB %<-% lm(y ~ x - 1, weights = w) ## without offset
fitC %<-% {
w <- 1 + abs(x)
lm(y ~ x, weights = w)
}
print(fitA)
print(fitB)
print(fitC)
## EXAMPLE: Explicitly create futures (evaluated in parallel)
## and retrieve their values
fA <- future( lm(y ~ x, weights = w) )
fB <- future( lm(y ~ x - 1, weights = w) )
fC <- future({
w <- 1 + abs(x)
lm(y ~ x, weights = w)
})
fitA <- value(fA)
fitB <- value(fB)
fitC <- value(fC)
print(fitA)
print(fitB)
print(fitC)
## EXAMPLE: futureCall() and do.call()
x <- 1:100
y0 <- do.call(sum, args = list(x))
print(y0)
f1 <- futureCall(sum, args = list(x))
y1 <- value(f1)
print(y1)
A future represents a value that will be available at some point in the future
Description
A future is an abstraction for a value that may
available at some point in the future. A future can either be
unresolved
or resolved
, a state which can be checked
with resolved()
. As long as it is unresolved, the
value is not available. As soon as it is resolved, the value
is available via value()
.
Usage
Future(
expr = NULL,
envir = parent.frame(),
substitute = TRUE,
stdout = TRUE,
conditions = "condition",
globals = list(),
packages = NULL,
seed = FALSE,
lazy = FALSE,
gc = FALSE,
earlySignal = FALSE,
label = NULL,
...
)
Arguments
expr |
An R expression. |
envir |
The environment from where global objects should be identified. |
substitute |
If TRUE, argument |
stdout |
If TRUE (default), then the standard output is captured,
and re-outputted when |
conditions |
A character string of conditions classes to be captured
and relayed. The default is to relay all conditions, including messages
and warnings. To drop all conditions, use |
globals |
(optional) a logical, a character vector, or a named list
to control how globals are handled.
For details, see section 'Globals used by future expressions'
in the help for |
packages |
(optional) a character vector specifying packages to be attached in the R environment evaluating the future. |
seed |
(optional) If TRUE, the random seed, that is, the state of the
random number generator (RNG) will be set such that statistically sound
random numbers are produced (also during parallelization).
If FALSE (default), it is assumed that the future expression does neither
need nor use random numbers generation.
To use a fixed random seed, specify a L'Ecuyer-CMRG seed (seven integer)
or a regular RNG seed (a single integer). If the latter, then a
L'Ecuyer-CMRG seed will be automatically created based on the given seed.
Furthermore, if FALSE, then the future will be monitored to make sure it
does not use random numbers. If it does and depending on the value of
option |
lazy |
If FALSE (default), the future is resolved eagerly (starting immediately), otherwise not. |
gc |
If TRUE, the garbage collector run (in the process that
evaluated the future) only after the value of the future is collected.
Exactly when the values are collected may depend on various factors such
as number of free workers and whether |
earlySignal |
Specified whether conditions should be signaled as soon as possible or not. |
label |
An optional character string label attached to the future. |
... |
Additional named elements of the future. |
Details
A Future object is itself an environment.
Value
Future()
returns an object of class Future
.
See Also
One function that creates a Future is future()
.
It returns a Future that evaluates an R expression in the future.
An alternative approach is to use the %<-%
infix
assignment operator, which creates a future from the
right-hand-side (RHS) R expression and assigns its future value
to a variable as a promise.
Options used for futures
Description
Below are the R options and environment variables that are used by the
future package and packages enhancing it.
WARNING: Note that the names and the default values of these options may
change in future versions of the package. Please use with care until
further notice.
Packages must not change future options
Just like for other R options, as a package developer you must not change
any of the below future.*
options. Only the end-user should set these.
If you find yourself having to tweak one of the options, make sure to
undo your changes immediately afterward. For example, if you want to
bump up the future.globals.maxSize
limit when creating a future,
use something like the following inside your function:
oopts <- options(future.globals.maxSize = 1.0 * 1e9) ## 1.0 GB on.exit(options(oopts)) f <- future({ expr }) ## Launch a future with large objects
Settings moved to the 'parallelly' package
Several functions have been moved to the parallelly package:
The options and environment variables controlling those have been adjusted accordingly to have different prefixes. For example, option future.fork.enable has been renamed to parallelly.fork.enable and the corresponding environment variable R_FUTURE_FORK_ENABLE has been renamed to R_PARALLELLY_FORK_ENABLE. For backward compatibility reasons, the parallelly package will support both versions for a long foreseeable time. See the parallelly::parallelly.options page for the settings.
Options for controlling futures
- future.plan:
(character string or future function) Default future strategy plan used unless otherwise specified via
plan()
. This will also be the future plan set when callingplan("default")
. If not specified, this option may be set when the future package is loaded if command-line option--parallel=ncores
(short-p ncores
) is specified; ifncores > 1
, then option future.plan is set tomultisession
otherwisesequential
(in addition to option mc.cores being set toncores
, ifncores >= 1
). (Default:sequential
)- future.globals.maxSize:
(numeric) Maximum allowed total size (in bytes) of global variables identified. Used to prevent too large exports. If set of
+Inf
, then the check for large globals is skipped. (Default:500 * 1024 ^ 2
= 500 MiB)- future.globals.onReference: (beta feature - may change)
(character string) Controls whether the identified globals should be scanned for so called references (e.g. external pointers and connections) or not. It is unlikely that another R process ("worker") can use a global that uses a internal reference of the master R process—we call such objects non-exportable globals. If this option is
"error"
, an informative error message is produced if a non-exportable global is detected. If"warning"
, a warning is produced, but the processing will continue; it is likely that the future will be resolved with a run-time error unless processed in the master R process (e.g.plan(sequential)
andplan(multicore)
). If"ignore"
, no scan is performed. (Default:"ignore"
but may change)- future.resolve.recursive:
(integer) An integer specifying the maximum recursive depth to which futures should be resolved. If negative, nothing is resolved. If
0
, only the future itself is resolved. If1
, the future and any of its elements that are futures are resolved, and so on. If+Inf
, infinite search depth is used. (Default:0
)- future.rng.onMisuse: (beta feature - may change)
(character string) If random numbers are used in futures, then parallel (L'Ecuyer-CMRG) RNG should be used in order to get statistical sound RNGs. The defaults in the future framework assume that no random number generation (RNG) is taken place in the future expression because L'Ecuyer-CMRG RNGs come with an unnecessary overhead if not needed. To protect against mistakes, the future framework attempts to detect when random numbers are used despite L'Ecuyer-CMRG RNGs are not in place. If this is detected, and
future.rng.onMisuse = "error"
, then an informative error message is produced. If"warning"
, then a warning message is produced. If"ignore"
, no check is performed. (Default:"warning"
)- future.globalenv.onMisuse: (beta feature - may change)
(character string) Assigning variables to the global environment for the purpose of using the variable at a later time makes no sense with futures, because the next future may be evaluated in different R process. To protect against mistakes, the future framework attempts to detect when variables are added to the global environment. If this is detected, and
future.globalenv.onMisuse = "error"
, then an informative error message is produced. If"warning"
, then a warning message is produced. If"ignore"
, no check is performed. (Default:"ignore"
)- future.onFutureCondition.keepFuture:
(logical) If
TRUE
, aFutureCondition
keeps a copy of theFuture
object that triggered the condition. IfFALSE
, it is dropped. (Default:TRUE
)- future.wait.timeout:
(numeric) Maximum waiting time (in seconds) for a free worker before a timeout error is generated. (Default:
30 * 24 * 60 * 60
(= 30 days))- future.wait.interval:
(numeric) Initial interval (in seconds) between polls. This controls the polling frequency for finding an available worker when all workers are currently busy. It also controls the polling frequency of
resolve()
. (Default:0.01
= 0.01 seconds)- future.wait.alpha:
(numeric) Positive scale factor used to increase the interval after each poll. (Default:
1.01
)
Options for debugging futures
- future.debug:
(logical) If
TRUE
, extensive debug messages are generated. (Default:FALSE
)
Options for controlling package startup
- future.startup.script:
(character vector or a logical) Specifies zero of more future startup scripts to be sourced when the future package is attached. It is only the first existing script that is sourced. If none of the specified files exist, nothing is sourced—there will be neither a warning nor an error. If this option is not specified, environment variable R_FUTURE_STARTUP_SCRIPT is considered, where multiple scripts may be separated by either a colon (
:
) or a semicolon (;
). If neither is set, or either is set toTRUE
, the default is to look for a ‘.future.R’ script in the current directory and then in the user's home directory. To disable future startup scripts, set the option or the environment variable toFALSE
. Importantly, this option is always set toFALSE
if the future package is loaded as part of a future expression being evaluated, e.g. in a background process. In order words, they are sourced in the main R process but not in future processes. (Default:TRUE
in main R process andFALSE
in future processes / during future evaluation)- future.cmdargs:
(character vector) Overrides
commandArgs()
when the future package is loaded.
Options for configuring low-level system behaviors
- future.fork.multithreading.enable (beta feature - may change):
(logical) Enable or disable multi-threading while using forked parallel processing. If
FALSE
, different multi-thread library settings are overridden such that they run in single-thread mode. Specifically, multi-threading will be disabled for OpenMP (which requires the RhpcBLASctl package) and for RcppParallel. IfTRUE
, or not set (the default), multi-threading is allowed. Parallelization via multi-threaded processing (done in native code by some packages and external libraries) while at the same time using forked (aka "multicore") parallel processing is known to unstable. Note that this is not only true when usingplan(multicore)
but also when using, for instance,mclapply()
of the parallel package. (Default: not set)- future.output.windows.reencode:
(logical) Enable or disable re-encoding of UTF-8 symbols that were incorrectly encoded while captured. In R (< 4.2.0) and on older versions of MS Windows, R cannot capture UTF-8 symbols as-is when they are captured from the standard output. For examples, a UTF-8 check mark symbol (
"\u2713"
) would be relayed as"<U+2713>"
(a string with eight ASCII characters). Setting this option toTRUE
will causevalue()
to attempt to recover the intended UTF-8 symbols from<U+nnnn>
string components, if, and only if, the string was captured by a future resolved on MS Windows. (Default:TRUE
)
See also parallelly::parallelly.options.
Options for demos
- future.demo.mandelbrot.region:
(integer) Either a named list of
mandelbrot()
arguments or an integer in {1, 2, 3} specifying a predefined Mandelbrot region. (Default:1L
)- future.demo.mandelbrot.nrow:
(integer) Number of rows and columns of tiles. (Default:
3L
)
Deprecated or for internal prototyping
The following options exists only for troubleshooting purposes and must not be used in production. If used, there is a risk that the results are non-reproducible if processed elsewhere. To lower the risk of them being used by mistake, they are marked as deprecated and will produce warnings if set.
- future.globals.onMissing:
(character string) Action to take when non-existing global variables ("globals" or "unknowns") are identified when the future is created. If
"error"
, an error is generated immediately. If"ignore"
, no action is taken and an attempt to evaluate the future expression will be made. The latter is useful when there is a risk for false-positive globals being identified, e.g. when future expression contains non-standard evaluation (NSE). (Default:"ignore"
)- future.globals.method:
(character string) Method used to identify globals. For details, see
globalsOf()
. (Default:"ordered"
)- future.globals.resolve:
(logical) If
TRUE
, globals that areFuture
objects (typically created as explicit futures) will be resolved and have their values (usingvalue()
) collected. Because searching for unresolved futures among globals (including their content) can be expensive, the default is not to do it and instead leave it to the run-time checks that assert proper ownership when resolving futures and collecting their values. (Default:FALSE
)
Environment variables that set R options
All of the above R future.* options can be set by corresponding
environment variable R_FUTURE_* when the future package is
loaded. This means that those environment variables must be set before
the future package is loaded in order to have an effect.
For example, if R_FUTURE_RNG_ONMISUSE="ignore"
, then option
future.rng.onMisuse is set to "ignore"
(character string).
Similarly, if R_FUTURE_GLOBALS_MAXSIZE="50000000"
, then option
future.globals.maxSize is set to 50000000
(numeric).
See Also
To set R options or environment variables when R starts (even before the future package is loaded), see the Startup help page. The startup package provides a friendly mechanism for configurating R's startup process.
Examples
# Allow at most 5 MB globals per futures
options(future.globals.maxSize = 5e6)
# Be strict; catch all RNG mistakes
options(future.rng.onMisuse = "error")
A condition (message, warning, or error) that occurred while orchestrating a future
Description
While orchestrating (creating, launching, querying, collection) futures, unexpected run-time errors (and other types of conditions) may occur. Such conditions are coerced to a corresponding FutureCondition class to help distinguish them from conditions that occur due to the evaluation of the future.
Usage
FutureCondition(message, call = NULL, uuid = future$uuid, future = NULL)
FutureMessage(message, call = NULL, uuid = future$uuid, future = NULL)
FutureWarning(message, call = NULL, uuid = future$uuid, future = NULL)
FutureError(message, call = NULL, uuid = future$uuid, future = NULL)
RngFutureCondition(
message = NULL,
call = NULL,
uuid = future$uuid,
future = NULL
)
RngFutureWarning(...)
RngFutureError(...)
UnexpectedFutureResultError(future, hint = NULL)
GlobalEnvFutureCondition(
message = NULL,
call = NULL,
globalenv = globalenv,
uuid = future$uuid,
future = NULL
)
GlobalEnvFutureWarning(...)
GlobalEnvFutureError(...)
FutureJournalCondition(
message,
journal,
call = NULL,
uuid = future$uuid,
future = NULL
)
Arguments
message |
A message condition. |
call |
The call stack that led up to the condition. |
uuid |
A universally unique identifier for the future associated with this FutureCondition. |
future |
The Future involved. |
hint |
(optional) A string with a suggestion on what might be wrong. |
Value
An object of class FutureCondition which inherits from class condition and FutureMessage, FutureWarning, and FutureError all inherits from FutureCondition. Moreover, a FutureError inherits from error, a FutureWarning from warning, and a FutureMessage from message.
A representation of a set of globals used with futures
Description
A representation of a set of globals used with futures
Usage
FutureGlobals(object = list(), resolved = FALSE, total_size = NA_real_, ...)
Arguments
object |
A named list. |
resolved |
A logical indicating whether these globals have been scanned for and resolved futures or not. |
total_size |
The total size of all globals, if known. |
... |
Not used. |
Details
This class extends the Globals class by adding
attributes resolved
and total_size
.
Value
An object of class FutureGlobals
.
Get the future of a future variable
Description
Get the future of a future variable that has been created directly
or indirectly via future()
.
Usage
futureOf(
var = NULL,
envir = parent.frame(),
mustExist = TRUE,
default = NA,
drop = FALSE
)
Arguments
var |
the variable. If NULL, all futures in the environment are returned. |
envir |
the environment where to search from. |
mustExist |
If TRUE and the variable does not exists, then an informative error is thrown, otherwise NA is returned. |
default |
the default value if future was not found. |
drop |
if TRUE and |
Value
A Future (or default
).
If var
is NULL, then a named list of Future:s are returned.
Examples
a %<-% { 1 }
f <- futureOf(a)
print(f)
b %<-% { 2 }
f <- futureOf(b)
print(f)
## All futures
fs <- futureOf()
print(fs)
## Futures part of environment
env <- new.env()
env$c %<-% { 3 }
f <- futureOf(env$c)
print(f)
f2 <- futureOf(c, envir = env)
print(f2)
f3 <- futureOf("c", envir = env)
print(f3)
fs <- futureOf(envir = env)
print(fs)
Results from resolving a future
Description
Results from resolving a future
Usage
FutureResult(
value = NULL,
visible = TRUE,
stdout = NULL,
conditions = NULL,
rng = FALSE,
...,
started = .POSIXct(NA_real_),
finished = Sys.time(),
version = "1.8"
)
## S3 method for class 'FutureResult'
as.character(x, ...)
## S3 method for class 'FutureResult'
print(x, ...)
Arguments
value |
The value of the future expression.
If the expression was not fully resolved (e.g. an error) occurred,
the the value is |
visible |
If TRUE, the value was visible, otherwise invisible. |
conditions |
A list of zero or more list elements each containing a captured condition and possibly more meta data such as the call stack and a timestamp. |
rng |
If TRUE, the |
... |
(optional) Additional named results to be returned. |
started , finished |
POSIXct timestamps when the evaluation of the future expression was started and finished. |
version |
The version format of the results. |
Details
This function is only part of the backend Future API. This function is not part of the frontend Future API.
Value
An object of class FutureResult.
Note to developers
The FutureResult structure is under development and may change at anytime, e.g. elements may be renamed or removed. Because of this, please avoid accessing the elements directly in code. Feel free to reach out if you need to do so in your code.
Get all futures in a container
Description
Gets all futures in an environment, a list, or a list environment and returns an object of the same class (and dimensions). Non-future elements are returned as is.
Usage
futures(x, ...)
Arguments
x |
An environment, a list, or a list environment. |
... |
Not used. |
Details
This function is useful for retrieve futures that were created via
future assignments (%<-%
) and therefore stored as promises.
This function turns such promises into standard Future
objects.
Value
An object of same type as x
and with the same names
and/or dimensions, if set.
Get future-specific session information and validate current backend
Description
Get future-specific session information and validate current backend
Usage
futureSessionInfo(test = TRUE, anonymize = TRUE)
Arguments
test |
If TRUE, one or more futures are created to query workers and validate their information. |
anonymize |
If TRUE, user names and host names are anonymized. |
Value
Nothing.
Examples
plan(multisession, workers = 2)
futureSessionInfo()
plan(sequential)
Inject code for the next type of future to use for nested futures
Description
Inject code for the next type of future to use for nested futures
Usage
getExpression(future, ...)
Arguments
future |
Current future. |
... |
Not used. |
Details
If no next future strategy is specified, the default is to
use sequential futures. This conservative approach protects
against spawning off recursive futures by mistake, especially
multicore and multisession ones.
The default will also set options(mc.cores = 1L)
(*) so that
no parallel R processes are spawned off by functions such as
parallel::mclapply()
and friends.
Currently it is not possible to specify what type of nested futures to be used, meaning the above default will always be used. See Issue #37 for plans on adding support for custom nested future types.
(*) Ideally we would set mc.cores = 0
but that will unfortunately
cause mclapply()
and friends to generate an error saying
"'mc.cores' must be >= 1". Ideally those functions should
fall back to using the non-multicore alternative in this
case, e.g. mclapply(...)
=> lapply(...)
.
See https://github.com/HenrikBengtsson/Wishlist-for-R/issues/7
for a discussion on this.
Value
A future expression with code injected to set what type of future to use for nested futures, iff any.
Retrieves global variables of an expression and their associated packages
Description
Retrieves global variables of an expression and their associated packages
Usage
getGlobalsAndPackages(
expr,
envir = parent.frame(),
tweak = tweakExpression,
globals = TRUE,
locals = getOption("future.globals.globalsOf.locals", TRUE),
resolve = getOption("future.globals.resolve", NULL),
persistent = FALSE,
maxSize = getOption("future.globals.maxSize", 500 * 1024^2),
...
)
Arguments
expr |
An R expression whose globals should be found. |
envir |
The environment from which globals should be searched. |
tweak |
(optional) A function that takes an expression and returned a modified one. |
globals |
(optional) a logical, a character vector, a named list, or a Globals object. If TRUE, globals are identified by code inspection based on |
locals |
Should globals part of any "local" environment of a function be included or not? |
resolve |
If TRUE, any future that is a global variables (or part of one) is resolved and replaced by a "constant" future. |
persistent |
If TRUE, non-existing globals (= identified in expression but not found in memory) are always silently ignored and assumed to be existing in the evaluation environment. If FALSE, non-existing globals are by default ignore, but may also trigger an informative error if option future.globals.onMissing in |
maxSize |
The maximum allowed total size (in bytes) of globals—for
the purpose of preventing too large exports / transfers happening by
mistake. If the total size of the global objects are greater than this
limit, an informative error message is produced. If
|
... |
Not used. |
Value
A named list with elements expr
(the tweaked expression), globals
(a named list of class FutureGlobals) and packages
(a character string).
See Also
Internally, globalsOf()
is used to identify globals and associated packages from the expression.
Mandelbrot convergence counts
Description
Mandelbrot convergence counts
Usage
mandelbrot(...)
## S3 method for class 'matrix'
mandelbrot(Z, maxIter = 200L, tau = 2, ...)
## S3 method for class 'numeric'
mandelbrot(
xmid = -0.75,
ymid = 0,
side = 3,
resolution = 400L,
maxIter = 200L,
tau = 2,
...
)
Arguments
Z |
A complex matrix for which convergence counts should be calculated. |
maxIter |
Maximum number of iterations per bin. |
tau |
A threshold; the radius when calling divergence (Mod(z) > tau). |
xmid , ymid , side , resolution |
Alternative specification of
the complex plane |
Value
Returns an integer matrix (of class Mandelbrot) with non-negative counts.
Author(s)
The internal Mandelbrot algorithm was inspired by and adopted from similar GPL code of Martin Maechler available from ftp://stat.ethz.ch/U/maechler/R/ on 2005-02-18 (sic!).
Examples
counts <- mandelbrot(xmid = -0.75, ymid = 0, side = 3)
str(counts)
## Not run:
plot(counts)
## End(Not run)
## Not run:
demo("mandelbrot", package = "future", ask = FALSE)
## End(Not run)
Create a multicore future whose value will be resolved asynchronously in a forked parallel process
Description
A multicore future is a future that uses multicore evaluation, which means that its value is computed and resolved in parallel in another process.
Usage
multicore(
...,
workers = availableCores(constraints = "multicore"),
envir = parent.frame()
)
Arguments
... |
Additional arguments passed to |
workers |
The number of parallel processes to use. If a function, it is called without arguments when the future is created and its value is used to configure the workers. |
envir |
The environment from where global objects should be identified. |
Details
This function is not meant to be called directly. Instead, the typical usages are:
# Evaluate futures in parallel on the local machine via as many forked # processes as available to the current R process plan(multicore) # Evaluate futures in parallel on the local machine via two forked processes plan(multicore, workers = 2)
Value
A MulticoreFuture.
If workers == 1
, then all processing using done in the
current/main R session and we therefore fall back to using a
sequential future. To override this fallback, use workers = I(1)
.
This is also the case whenever multicore processing is not supported,
e.g. on Windows.
Support for forked ("multicore") processing
Not all operating systems support process forking and thereby not multicore
futures. For instance, forking is not supported on Microsoft Windows.
Moreover, process forking may break some R environments such as RStudio.
Because of this, the future package disables process forking also in
such cases. See parallelly::supportsMulticore()
for details.
Trying to create multicore futures on non-supported systems or when
forking is disabled will result in multicore futures falling back to
becoming sequential futures. If used in RStudio, there will be an
informative warning:
> plan(multicore) Warning message: In supportsMulticoreAndRStudio(...) : [ONE-TIME WARNING] Forked processing ('multicore') is not supported when running R from RStudio because it is considered unstable. For more details, how to control forked processing or not, and how to silence this warning in future R sessions, see ?parallelly::supportsMulticore
See Also
For processing in multiple background R sessions, see multisession futures.
Use parallelly::availableCores()
to see the total number of
cores that are available for the current R session.
Use availableCores("multicore") > 1L
to check
whether multicore futures are supported or not on the current
system.
Examples
## Use multicore futures
plan(multicore)
## A global variable
a <- 0
## Create future (explicitly)
f <- future({
b <- 3
c <- 2
a * b * c
})
## A multicore future is evaluated in a separate forked
## process. Changing the value of a global variable
## will not affect the result of the future.
a <- 7
print(a)
v <- value(f)
print(v)
stopifnot(v == 0)
A multicore future is a future whose value will be resolved asynchronously in a parallel process
Description
A multicore future is a future whose value will be resolved asynchronously in a parallel process
Usage
MulticoreFuture(expr = NULL, substitute = TRUE, envir = parent.frame(), ...)
Arguments
expr |
An R expression. |
substitute |
If TRUE, argument |
envir |
The environment from where global objects should be identified. |
... |
Additional named elements passed to |
Value
MulticoreFuture()
returns an object of class MulticoreFuture
.
Usage
To use 'multicore' futures, use plan(multicore, ...)
, cf. multicore.
A multiprocess future is a future whose value will be resolved asynchronously in a parallel process
Description
A multiprocess future is a future whose value will be resolved asynchronously in a parallel process
Usage
MultiprocessFuture(expr = NULL, substitute = TRUE, envir = parent.frame(), ...)
Arguments
expr |
An R expression. |
substitute |
If TRUE, argument |
envir |
The environment from where global objects should be identified. |
... |
Additional named elements passed to |
Value
MultiprocessFuture()
returns an object of class MultiprocessFuture
.
Create a multisession future whose value will be resolved asynchronously in a parallel R session
Description
A multisession future is a future that uses multisession evaluation, which means that its value is computed and resolved in parallel in another R session.
Usage
multisession(
...,
workers = availableCores(),
lazy = FALSE,
rscript_libs = .libPaths(),
envir = parent.frame()
)
Arguments
... |
Additional arguments passed to |
workers |
The number of parallel processes to use. If a function, it is called without arguments when the future is created and its value is used to configure the workers. |
lazy |
If FALSE (default), the future is resolved eagerly (starting immediately), otherwise not. |
rscript_libs |
A character vector of R package library folders that
the workers should use. The default is |
envir |
The environment from where global objects should be identified. |
Details
This function is not meant to be called directly. Instead, the typical usages are:
# Evaluate futures in parallel on the local machine via as many background # processes as available to the current R process plan(multisession) # Evaluate futures in parallel on the local machine via two background # processes plan(multisession, workers = 2)
The background R sessions (the "workers") are created using
makeClusterPSOCK()
.
For the total number of
R sessions available including the current/main R process, see
parallelly::availableCores()
.
A multisession future is a special type of cluster future.
Value
A MultisessionFuture.
If workers == 1
, then all processing is done in the
current/main R session and we therefore fall back to using a
lazy future. To override this fallback, use workers = I(1)
.
See Also
For processing in multiple forked R sessions, see multicore futures.
Use parallelly::availableCores()
to see the total number of
cores that are available for the current R session.
Examples
## Use multisession futures
plan(multisession)
## A global variable
a <- 0
## Create future (explicitly)
f <- future({
b <- 3
c <- 2
a * b * c
})
## A multisession future is evaluated in a separate R session.
## Changing the value of a global variable will not affect
## the result of the future.
a <- 7
print(a)
v <- value(f)
print(v)
stopifnot(v == 0)
## Explicitly close multisession workers by switching plan
plan(sequential)
Get the number of workers available
Description
Get the number of workers available
Usage
nbrOfWorkers(evaluator = NULL)
nbrOfFreeWorkers(evaluator = NULL, background = FALSE, ...)
Arguments
evaluator |
A future evaluator function.
If NULL (default), the current evaluator as returned
by |
background |
If TRUE, only workers that can process a future in the background are considered. If FALSE, also workers running in the main R process are considered, e.g. when using the 'sequential' backend. |
... |
Not used; reserved for future use. |
Value
nbrOfWorkers()
returns a positive number in {1, 2, 3, ...}
, which
for some future backends may also be +Inf
.
nbrOfFreeWorkers()
returns a non-negative number in
{0, 1, 2, 3, ...}
which is less than or equal to nbrOfWorkers()
.
Examples
plan(multisession)
nbrOfWorkers() ## == availableCores()
plan(sequential)
nbrOfWorkers() ## == 1
Creates a connection to the system null device
Description
Creates a connection to the system null device
Usage
nullcon()
Value
Returns a open, binary base::connection()
.
Plan how to resolve a future
Description
This function allows the user to plan the future, more specifically,
it specifies how future()
:s are resolved,
e.g. sequentially or in parallel.
Usage
plan(
strategy = NULL,
...,
substitute = TRUE,
.skip = FALSE,
.call = TRUE,
.cleanup = TRUE,
.init = TRUE
)
Arguments
strategy |
The evaluation function (or name of it) to use
for resolving a future. If |
... |
Additional arguments overriding the default arguments
of the evaluation function. Which additional arguments are supported
depends on what evaluation function is used, e.g. several support
argument |
substitute |
If |
.skip |
(internal) If |
.call |
(internal) Used for recording the call to this function. |
.cleanup |
(internal) Used to stop implicitly started clusters. |
.init |
(internal) Used to initiate workers. |
Details
The default strategy is sequential
, but the default can be
configured by option future.plan and, if that is not set,
system environment variable R_FUTURE_PLAN.
To reset the strategy back to the default, use plan("default")
.
Value
If a new strategy is chosen, then the previous one is returned (invisible), otherwise the current one is returned (visibly).
Built-in evaluation strategies
The future package provides the following built-in backends:
sequential
:-
Resolves futures sequentially in the current R process, e.g.
plan(sequential)
. multisession
:-
Resolves futures asynchronously (in parallel) in separate R sessions running in the background on the same machine, e.g.
plan(multisession)
andplan(multisession, workers = 2)
. multicore
:-
Resolves futures asynchronously (in parallel) in separate forked R processes running in the background on the same machine, e.g.
plan(multicore)
andplan(multicore, workers = 2)
. This backend is not supported on Windows. cluster
:-
Resolves futures asynchronously (in parallel) in separate R sessions running typically on one or more machines, e.g.
plan(cluster)
,plan(cluster, workers = 2)
, andplan(cluster, workers = c("n1", "n1", "n2", "server.remote.org"))
.
Other package provide additional evaluation strategies.
For example, the future.callr package implements an alternative
to the multisession
backend on top of the callr package, e.g.
plan(future.callr::callr, workers = 2)
.
Another example is the future.batchtools package, which implements,
on top of the batchtools package, e.g.
plan(future.batchtools::batchtools_slurm)
.
These types of futures are resolved via job schedulers, which typically
are available on high-performance compute (HPC) clusters, e.g. LSF,
Slurm, TORQUE/PBS, Sun Grid Engine, and OpenLava.
To "close" any background workers (e.g. multisession
), change
the plan to something different; plan(sequential)
is recommended
for this.
For package developers
Please refrain from modifying the future strategy inside your packages /
functions, i.e. do not call plan()
in your code. Instead, leave
the control on what backend to use to the end user. This idea is part of
the core philosophy of the future framework—as a developer you can never
know what future backends the user have access to. Moreover, by not making
any assumptions about what backends are available, your code will also work
automatically with any new backends developed after you wrote your code.
If you think it is necessary to modify the future strategy within a function, then make sure to undo the changes when exiting the function. This can be done using:
oplan <- plan(new_set_of_strategies) on.exit(plan(oplan), add = TRUE) [...]
This is important because the end-user might have already set the future strategy elsewhere for other purposes and will most likely not known that calling your function will break their setup. Remember, your package and its functions might be used in a greater context where multiple packages and functions are involved and those might also rely on the future framework, so it is important to avoid stepping on others' toes.
Using plan() in scripts and vignettes
When writing scripts or vignettes that use futures, try to place any
call to plan()
as far up (i.e. as early on) in the code as possible.
This will help users to quickly identify where the future plan is set up
and allow them to modify it to their computational resources.
Even better is to leave it to the user to set the plan()
prior to
source()
:ing the script or running the vignette.
If a ‘.future.R’ exists in the current directory and / or in
the user's home directory, it is sourced when the future package is
loaded. Because of this, the ‘.future.R’ file provides a
convenient place for users to set the plan()
.
This behavior can be controlled via an R option—see
future options for more details.
Examples
a <- b <- c <- NA_real_
# An sequential future
plan(sequential)
f <- future({
a <- 7
b <- 3
c <- 2
a * b * c
})
y <- value(f)
print(y)
str(list(a = a, b = b, c = c)) ## All NAs
# A sequential future with lazy evaluation
plan(sequential)
f <- future({
a <- 7
b <- 3
c <- 2
a * b * c
}, lazy = TRUE)
y <- value(f)
print(y)
str(list(a = a, b = b, c = c)) ## All NAs
# A multicore future (specified as a string)
plan("multicore")
f <- future({
a <- 7
b <- 3
c <- 2
a * b * c
})
y <- value(f)
print(y)
str(list(a = a, b = b, c = c)) ## All NAs
## Multisession futures gives an error on R CMD check on
## Windows (but not Linux or macOS) for unknown reasons.
## The same code works in package tests.
# A multisession future (specified via a string variable)
plan("future::multisession")
f <- future({
a <- 7
b <- 3
c <- 2
a * b * c
})
y <- value(f)
print(y)
str(list(a = a, b = b, c = c)) ## All NAs
## Explicitly specifying number of workers
## (default is parallelly::availableCores())
plan(multicore, workers = 2)
message("Number of parallel workers: ", nbrOfWorkers())
## Explicitly close multisession workers by switching plan
plan(sequential)
Functions Moved to 'parallelly'
Description
The following function used to be part of future but has since been migrated to parallelly. The migration started with future 1.20.0 (November 2020). They were moved because they are also useful outside of the future framework.
Details
For backward-compatible reasons, these functions remain available as exact copies also from this package (as re-exports). For example,
cl <- parallelly::makeClusterPSOCK(2)
can still be accessed as:
cl <- future::makeClusterPSOCK(2)
Writes and Reads 'immediateCondition' RDS Files
Description
Writes and Reads 'immediateCondition' RDS Files
Usage
readImmediateConditions(
path = immediateConditionsPath(rootPath = rootPath),
rootPath = tempdir(),
pattern = "[.]rds$",
include = getOption("future.relay.immediate", "immediateCondition"),
signal = FALSE,
remove = TRUE
)
saveImmediateCondition(
cond,
path = immediateConditionsPath(rootPath = rootPath),
rootPath = tempdir()
)
Arguments
path |
(character string) The folder where the RDS files are. |
pattern |
(character string) A regular expression selecting the RDS files to be read. |
include |
(character vector) The class or classes of the objects to be kept. |
signal |
(logical) If TRUE, the condition read are signaled. |
remove |
(logical) If TRUE, the RDS files used are removed on exit. |
cond |
A condition of class |
Value
readImmediateConditions()
returns a base::list of
immediateCondition
objects.
saveImmediateCondition()
returns, invisibly, the pathname of
the RDS written.
Request a core for multicore processing
Description
If no cores are available, the current process blocks until a core is available.
Usage
requestCore(
await,
workers = availableCores(),
timeout = getOption("future.wait.timeout", 30 * 24 * 60 * 60),
delta = getOption("future.wait.interval", 0.01),
alpha = getOption("future.wait.alpha", 1.01)
)
Arguments
await |
A function used to try to "collect" finished multicore subprocesses. |
workers |
Total number of workers available. |
timeout |
Maximum waiting time (in seconds) allowed before a timeout error is generated. |
delta |
Then base interval (in seconds) to wait between each try. |
alpha |
A multiplicative factor used to increase the wait interval after each try. |
Value
Invisible TRUE. If no cores are available after extensive waiting, then a timeout error is thrown.
Free up active background workers
Description
Free up active background workers
Usage
resetWorkers(x, ...)
Arguments
x |
A FutureStrategy. |
... |
Not used. |
Details
This function will resolve any active futures that is currently being evaluated on background workers.
Examples
resetWorkers(plan())
Resolve one or more futures synchronously
Description
This function provides an efficient mechanism for waiting for multiple futures in a container (e.g. list or environment) to be resolved while in the meanwhile retrieving values of already resolved futures.
Usage
resolve(
x,
idxs = NULL,
recursive = 0,
result = FALSE,
stdout = FALSE,
signal = FALSE,
force = FALSE,
sleep = getOption("future.wait.interval", 0.01),
...
)
Arguments
x |
A Future to be resolved, or a list, an environment, or a list environment of futures to be resolved. |
idxs |
(optional) integer or logical index specifying the subset of elements to check. |
recursive |
A non-negative number specifying how deep of a recursion should be done. If TRUE, an infinite recursion is used. If FALSE or zero, no recursion is performed. |
result |
(internal) If TRUE, the results are retrieved, otherwise not. Note that this only collects the results from the parallel worker, which can help lower the overall latency if there are multiple concurrent futures. This does not return the collected results. |
stdout |
(internal) If TRUE, captured standard output is relayed, otherwise not. |
signal |
(internal) If TRUE, captured conditions are relayed, otherwise not. |
force |
(internal) If TRUE, captured standard output and captured conditions already relayed is relayed again, otherwise not. |
sleep |
Number of seconds to wait before checking if futures have been resolved since last time. |
... |
Not used. |
Details
This function is resolves synchronously, i.e. it blocks until x
and
any containing futures are resolved.
Value
Returns x
(regardless of subsetting or not).
If signal
is TRUE and one of the futures produces an error, then
that error is produced.
See Also
To resolve a future variable, first retrieve its
Future object using futureOf()
, e.g.
resolve(futureOf(x))
.
Check whether a future is resolved or not
Description
Check whether a future is resolved or not
Usage
resolved(x, ...)
Arguments
x |
A Future, a list, or an environment (which also includes list environment). |
... |
Not used. |
Details
This method needs to be implemented by the class that implement
the Future API. The implementation should return either TRUE or FALSE
and must never throw an error (except for FutureError:s which indicate
significant, often unrecoverable infrastructure problems).
It should also be possible to use the method for polling the
future until it is resolved (without having to wait infinitely long),
e.g. while (!resolved(future)) Sys.sleep(5)
.
Value
A logical of the same length and dimensions as x
.
Each element is TRUE unless the corresponding element is a
non-resolved future in case it is FALSE.
Get the results of a resolved future
Description
Get the results of a resolved future
Usage
## S3 method for class 'Future'
result(future, ...)
Arguments
future |
A Future. |
... |
Not used. |
Details
This function is only part of the backend Future API. This function is not part of the frontend Future API.
Value
The FutureResult object.
Run a future
Description
Run a future
Usage
## S3 method for class 'Future'
run(future, ...)
Arguments
future |
A Future. |
... |
Not used. |
Details
This function can only be called once per future. Further calls will result in an informative error. If a future is not run when its value is queried, then it is run at that point.
Value
The Future object.
Robustly Saves an Object to RDS File Atomically
Description
Robustly Saves an Object to RDS File Atomically
Usage
save_rds(object, pathname, ...)
Arguments
object |
The R object to be save. |
pathname |
RDS file to written. |
... |
(optional) Additional arguments passed to |
Details
Uses base::saveRDS internally but writes the object atomically by first writing to a temporary file which is then renamed.
Value
(invisible) The pathname of the RDS written.
Create a sequential future whose value will be in the current R session
Description
A sequential future is a future that is evaluated sequentially in the current R session similarly to how R expressions are evaluated in R. The only difference to R itself is that globals are validated by default just as for all other types of futures in this package.
Usage
sequential(..., envir = parent.frame())
Arguments
... |
Additional arguments passed to |
envir |
The environment from where global objects should be identified. |
Details
This function is not meant to be called directly. Instead, the typical usages are:
# Evaluate futures sequentially in the current R process plan(sequential)
Value
Examples
## Use sequential futures
plan(sequential)
## A global variable
a <- 0
## Create a sequential future
f <- future({
b <- 3
c <- 2
a * b * c
})
## Since 'a' is a global variable in future 'f' which
## is eagerly resolved (default), this global has already
## been resolved / incorporated, and any changes to 'a'
## at this point will _not_ affect the value of 'f'.
a <- 7
print(a)
v <- value(f)
print(v)
stopifnot(v == 0)
Outputs details on the current R session
Description
Outputs details on the current R session
Usage
sessionDetails(env = FALSE)
Arguments
env |
If TRUE, |
Value
Invisibly a list of all details.
Signals Captured Conditions
Description
Captured conditions that meet the include
and exclude
requirements are signaled in the order as they were captured.
Usage
signalConditions(
future,
include = "condition",
exclude = NULL,
resignal = TRUE,
...
)
Arguments
future |
A resolved Future. |
include |
A character string of condition classes to signal. |
exclude |
A character string of condition classes not to signal. |
resignal |
If TRUE, then already signaled conditions are signaled again, otherwise not. |
... |
Not used. |
Value
Returns the Future where conditioned that were signaled have been flagged to have been signaled.
See Also
Conditions are signaled by
signalCondition()
.
Place a sticky-globals environment immediately after the global environment
Description
Place a sticky-globals environment immediately after the global environment
Usage
sticky_globals(erase = FALSE, name = "future:sticky_globals", pos = 2L)
Arguments
erase |
(logical) If TRUE, the environment is erased, otherwise not. |
name |
(character) The name of the environment on the base::search path. |
pos |
(integer) The position on the search path where the
environment should be positioned. If |
Value
(invisible; environment) The environment.
Tweak a future function by adjusting its default arguments
Description
Tweak a future function by adjusting its default arguments
Usage
tweak(strategy, ..., penvir = parent.frame())
Arguments
strategy |
An existing future function or the name of one. |
... |
Named arguments to replace the defaults of existing arguments. |
penvir |
The environment used when searching for a future function by its name. |
Value
a future function.
See Also
Use plan()
to set a future to become the
new default strategy.
An uniprocess future is a future whose value will be resolved synchronously in the current process
Description
An uniprocess future is a future whose value will be resolved synchronously in the current process
Usage
UniprocessFuture(expr = NULL, substitute = TRUE, envir = parent.frame(), ...)
SequentialFuture(
expr = NULL,
envir = parent.frame(),
substitute = TRUE,
lazy = FALSE,
globals = TRUE,
...
)
Arguments
expr |
An R expression. |
substitute |
If TRUE, argument |
envir |
The environment from where global objects should be identified. |
... |
Additional named elements passed to |
lazy |
If FALSE (default), the future is resolved eagerly (starting immediately), otherwise not. |
globals |
(optional) a logical, a character vector, or a named list
to control how globals are handled.
For details, see section 'Globals used by future expressions'
in the help for |
Value
UniprocessFuture()
returns an object of class UniprocessFuture
.
SequentialFuture()
returns an object of class SequentialProcess
,
which inherits from UniprocessFuture
.
Usage
To use 'sequential' futures, use plan(sequential)
, cf. sequential.
Get number of cores currently used
Description
Get number of children (and don't count the current process) used by the current R session. The number of children is the total number of subprocesses launched by this process that are still running and whose values have yet not been collected.
Usage
usedCores()
Value
A non-negative integer.
The value of a future or the values of all elements in a container
Description
Gets the value of a future or the values of all elements (including futures) in a container such as a list, an environment, or a list environment. If one or more futures is unresolved, then this function blocks until all queried futures are resolved.
Usage
value(...)
## S3 method for class 'Future'
value(future, stdout = TRUE, signal = TRUE, ...)
## S3 method for class 'list'
value(x, stdout = TRUE, signal = TRUE, ...)
## S3 method for class 'listenv'
value(x, stdout = TRUE, signal = TRUE, ...)
## S3 method for class 'environment'
value(x, stdout = TRUE, signal = TRUE, ...)
Arguments
... |
All arguments used by the S3 methods. |
future , x |
A Future, an environment, a list, or a list environment. |
stdout |
If TRUE, standard output captured while resolving futures is relayed, otherwise not. |
signal |
If TRUE, conditions captured while resolving futures are relayed, otherwise not. |
Value
value()
of a Future object returns the value of the future, which can
be any type of R object.
value()
of a list, an environment, or a list environment returns an
object with the same number of elements and of the same class.
Names and dimension attributes are preserved, if available.
All future elements are replaced by their corresponding value()
values.
For all other elements, the existing object is kept as-is.
If signal
is TRUE and one of the futures produces an error, then
that error is produced.