1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169
|
#' Options used for batchtools futures
#'
#' Below are the \R options and environment variables that are used by the
#' \pkg{future.batchtools} package.
#' See [future::future.options] for additional ones that apply to futures
#' in general.\cr
#' \cr
#' _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._
#'
#' @section Settings for batchtools futures:
#' \describe{
#' \item{\option{future.batchtools.workers}:}{(a positive numeric or `+Inf`)
#' The default number of workers available on HPC schedulers with
#' job queues. (Default: `100`)}
#'
#' \item{\option{future.batchtools.output}:}{(logical)
#' If TRUE, \pkg{batchtools} will produce extra output.
#' If FALSE, such output will be disabled by setting \pkg{batchtools}
#' options \option{batchtools.verbose} and \option{batchtools.progress}
#' to FALSE.
#' (Default: `getOption("future.debug", FALSE)`)}
#'
#' \item{\option{future.batchtools.expiration.tail}:}{(a positive numeric)
#' When a \pkg{batchtools} job expires, the last few lines will be
#' relayed by batchtools futures to help troubleshooting.
#' This option controls how many lines are displayed.
#' (Default: `48L`)}
#'
#' \item{\option{future.cache.path}:}{
#' (character string)
#' An absolute or relative path specifying the root folder in which
#' \pkg{batchtools} registry folders are stored.
#' This folder needs to be accessible from all hosts ("workers").
#' Specifically, it must _not_ be a folder that is only local to the
#' machine such as `file.path(tempdir(), ".future"` if an job scheduler
#' on a HPC environment is used.
#' (Default: `.future` in the current working directory)}
#'
#' \item{\option{future.delete}:}{(logical)
#' Controls whether or not the future's \pkg{batchtools} registry folder
#' is deleted after the future result has been collected.
#' If TRUE, it is always deleted.
#' If FALSE, it is never deleted.
#' If not set or NULL, the it is deleted, unless running in non-interactive
#' mode and the batchtools job failed or expired, which helps to
#' troubleshoot when running in batch mode.
#' (Default: NULL (not set))}
#' }
#'
#' @section Environment variables that set R options:
#' All of the above \R \option{future.batchtools.*} options can be set by
#' corresponding environment variable \env{R_FUTURE_BATCHTOOLS_*} _when
#' the \pkg{future.batchtools} package is loaded_. This means that those
#' environment variables must be set before the \pkg{future.batchtools}
#' package is loaded in order to have an effect.
#' For example, if `R_FUTURE_BATCHTOOLS_WORKERS="200"` is set, then option
#' \option{future.batchtools.workers} is set to `200` (numeric).
#'
#' @examples
#' # Set an R option:
#' options(future.cache.path = "/cluster-wide/folder/.future")
#'
#' @aliases
#' future.cache.path
#' future.delete
#' R_FUTURE_CACHE_PATH
#' R_FUTURE_DELETE
#' future.batchtools.expiration.tail
#' future.batchtools.output
#' future.batchtools.workers
#' R_FUTURE_BATCHTOOLS_EXPIRATION_TAIL
#' R_FUTURE_BATCHTOOLS_OUTPUT
#' R_FUTURE_BATCHTOOLS_WORKERS
#'
#' @name future.batchtools.options
NULL
# Set an R option from an environment variable
update_package_option <- function(name, mode = "character", default = NULL, split = NULL, trim = TRUE, disallow = c("NA"), force = FALSE, debug = FALSE) {
## Nothing to do?
value <- getOption(name, NULL)
if (!force && !is.null(value)) return(getOption(name, default = default))
## name="future.plan.disallow" => env="R_FUTURE_PLAN_DISALLOW"
env <- gsub(".", "_", toupper(name), fixed = TRUE)
env <- paste("R_", env, sep = "")
env_value <- value <- Sys.getenv(env, unset = NA_character_)
## Nothing to do?
if (is.na(value)) {
if (debug) mdebugf("Environment variable %s not set", sQuote(env))
return(getOption(name, default = default))
}
if (debug) mdebugf("%s=%s", env, sQuote(value))
## Trim?
if (trim) value <- trim(value)
## Nothing to do?
if (!nzchar(value)) return(getOption(name, default = default))
## Split?
if (!is.null(split)) {
value <- strsplit(value, split = split, fixed = TRUE)
value <- unlist(value, use.names = FALSE)
if (trim) value <- trim(value)
}
## Coerce?
mode0 <- storage.mode(value)
if (mode0 != mode) {
suppressWarnings({
storage.mode(value) <- mode
})
if (debug) {
mdebugf("Coercing from %s to %s: %s", mode0, mode, commaq(value))
}
}
if (length(disallow) > 0) {
if ("NA" %in% disallow) {
if (any(is.na(value))) {
stopf("Coercing environment variable %s=%s to %s would result in missing values for option %s: %s", sQuote(env), sQuote(env_value), sQuote(mode), sQuote(name), commaq(value))
}
}
if (is.numeric(value)) {
if ("non-positive" %in% disallow) {
if (any(value <= 0, na.rm = TRUE)) {
stopf("Environment variable %s=%s specifies a non-positive value for option %s: %s", sQuote(env), sQuote(env_value), sQuote(name), commaq(value))
}
}
if ("negative" %in% disallow) {
if (any(value < 0, na.rm = TRUE)) {
stopf("Environment variable %s=%s specifies a negative value for option %s: %s", sQuote(env), sQuote(env_value), sQuote(name), commaq(value))
}
}
}
}
if (debug) {
mdebugf("=> options(%s = %s) [n=%d, mode=%s]",
dQuote(name), commaq(value),
length(value), storage.mode(value))
}
do.call(options, args = structure(list(value), names = name))
getOption(name, default = default)
}
## Set future options based on environment variables
update_package_options <- function(debug = FALSE) {
update_package_option("future.cache.path", mode = "character", debug = debug)
update_package_option("future.delete", mode = "logical", debug = debug)
update_package_option("future.batchtools.expiration.tail", mode = "integer", debug = debug)
update_package_option("future.batchtools.output", mode = "logical", debug = debug)
update_package_option("future.batchtools.workers", mode = "numeric", debug = debug)
update_package_option("future.batchtools.status.cache", mode = "logical", default = TRUE, debug = debug)
}
|