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 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899
|
#' A batchtools future is a future whose value will be resolved via batchtools
#'
#' @param expr The R expression to be evaluated
#'
#' @param envir The environment in which global environment
#' should be located.
#'
#' @param substitute Controls whether `expr` should be
#' `substitute()`:d or not.
#'
#' @param globals (optional) a logical, a character vector, a named list, or a
#' [Globals][globals::Globals] object. If TRUE, globals are identified by code
#' inspection based on `expr` and `tweak` searching from environment
#' `envir`. If FALSE, no globals are used. If a character vector, then
#' globals are identified by lookup based their names `globals` searching
#' from environment `envir`. If a named list or a Globals object, the
#' globals are used as is.
#'
#' @param label (optional) Label of the future (where applicable, becomes the
#' job name for most job schedulers).
#'
#' @param resources (optional) A named list passed to the \pkg{batchtools}
#' template (available as variable `resources`). See Section 'Resources'
#' in [batchtools::submitJobs()] more details.
#'
#' @param workers (optional) The maximum number of workers the batchtools
#' backend may use at any time. Interactive and "local" backends can only
#' process one future at the time (`workers = 1L`), whereas HPC backends,
#' where futures are resolved via separate jobs on a scheduler, can have
#' multiple workers. In the latter, the default is `workers = NULL`, which
#' will resolve to
#' \code{getOption("\link{future.batchtools.workers}")}.
#' If neither are specified, then the default is `100`.
#'
#' @param finalize If TRUE, any underlying registries are
#' deleted when this object is garbage collected, otherwise not.
#'
#' @param conf.file (optional) A batchtools configuration file.
#'
#' @param cluster.functions (optional) A batchtools
#' [ClusterFunctions][batchtools::ClusterFunctions] object.
#'
#' @param registry (optional) A named list of settings to control the setup
#' of the batchtools registry.
#'
#' @param \ldots Additional arguments passed to [future::Future()].
#'
#' @return A BatchtoolsFuture object
#'
#' @export
#' @importFrom future Future getGlobalsAndPackages
#' @keywords internal
BatchtoolsFuture <- function(expr = NULL, envir = parent.frame(),
substitute = TRUE,
globals = TRUE, packages = NULL,
label = NULL,
resources = list(),
workers = NULL,
finalize = getOption("future.finalize", TRUE),
conf.file = findConfFile(),
cluster.functions = NULL,
registry = list(),
...) {
if (substitute) expr <- substitute(expr)
assert_no_positional_args_but_first()
## Record globals
gp <- getGlobalsAndPackages(expr, envir = envir, globals = globals)
future <- Future(expr = gp$expr, envir = envir, substitute = FALSE,
globals = gp$globals,
packages = unique(c(packages, gp$packages)),
label = label,
...)
future <- as_BatchtoolsFuture(future,
resources = resources,
workers = workers,
finalize = finalize,
conf.file = conf.file,
cluster.functions = cluster.functions,
registry = registry)
future
}
## Helper function to create a BatchtoolsFuture from a vanilla Future
#' @importFrom utils file_test
as_BatchtoolsFuture <- function(future,
resources = list(),
workers = NULL,
finalize = getOption("future.finalize", TRUE),
conf.file = findConfFile(),
cluster.functions = NULL,
registry = list(),
...) {
if (is.function(workers)) workers <- workers()
if (is.null(workers)) {
workers <- getOption("future.batchtools.workers", default = 100)
stop_if_not(
is.numeric(workers),
length(workers) == 1,
!is.na(workers), workers >= 1
)
} else {
stop_if_not(length(workers) >= 1)
if (is.numeric(workers)) {
stop_if_not(length(workers) == 1, !is.na(workers), workers >= 1)
} else if (is.character(workers)) {
stop_if_not(length(workers) >= 0, !anyNA(workers))
} else {
stop("Argument 'workers' should be either a numeric or a function: ",
mode(workers))
}
}
future$workers <- workers
if (!is.null(cluster.functions)) {
stop_if_not(is.list(cluster.functions))
stop_if_not(inherits(cluster.functions, "ClusterFunctions"))
} else if (missing(conf.file)) {
## BACKWARD COMPATILITY: Only when calling BatchtoolsFuture() directly
cluster.functions <- makeClusterFunctionsInteractive(external = FALSE)
} else {
## If 'cluster.functions' is not specified, then 'conf.file' must
## exist
if (!file_test("-f", conf.file)) {
stop("No such batchtools configuration file: ", sQuote(conf.file))
}
}
stop_if_not(is.list(registry))
if (length(registry) > 0L) {
stopifnot(!is.null(names(registry)), all(nzchar(names(registry))))
}
stop_if_not(is.list(resources))
## batchtools configuration
future$config <- list(
reg = NULL,
jobid = NA_integer_,
resources = resources,
conf.file = conf.file,
cluster.functions = cluster.functions,
registry = registry,
finalize = finalize
)
structure(future, class = c("BatchtoolsFuture", class(future)))
}
#' Prints a batchtools future
#'
#' @param x An BatchtoolsFuture object
#' @param \ldots Not used.
#'
#' @export
#' @keywords internal
print.BatchtoolsFuture <- function(x, ...) {
NextMethod()
## batchtools specific
config <- x$config
conf.file <- config$conf.file
printf("batchtools configuration file: %s\n", file_info(conf.file))
reg <- config$reg
if (inherits(reg, "Registry")) {
cluster.functions <- reg$cluster.functions
printf("batchtools cluster functions: %s\n",
sQuote(cluster.functions$name))
template <- attr(cluster.functions, "template")
printf("batchtools cluster functions template: %s\n", file_info(template))
} else {
printf("batchtools cluster functions: <none>\n")
}
## Ask for status once
status <- status(x)
printf("batchtools status: %s\n", paste(sQuote(status), collapse = ", "))
if ("error" %in% status) {
printf("Error captured by batchtools: %s\n", loggedError(x))
}
if (is_na(status)) {
printf("batchtools %s: Not found (happens when finished and deleted)\n",
class(reg))
} else {
if (inherits(reg, "Registry")) {
printf("batchtools Registry:\n")
printf(" File dir exists: %s\n", file_test("-d", reg$file.dir))
printf(" Work dir exists: %s\n", file_test("-d", reg$work.dir))
try(print(reg))
} else {
printf("batchtools Registry: <NA>\n")
}
}
invisible(x)
}
#' @importFrom batchtools getStatus
status <- function(future, ...) {
debug <- getOption("future.debug", FALSE)
if (debug) {
mdebug("status() for ", class(future)[1], " ...")
on.exit(mdebug("status() for ", class(future)[1], " ... done"), add = TRUE)
}
## WORKAROUND: Avoid warnings on partially matched arguments
get_status <- function(...) {
## Temporarily disable batchtools output?
## (i.e. messages and progress bars)
debug <- getOption("future.debug", FALSE)
batchtools_output <- getOption("future.batchtools.output", debug)
if (!batchtools_output) {
oopts <- options(batchtools.verbose = FALSE, batchtools.progress = FALSE)
} else {
oopts <- list()
}
on.exit(options(oopts))
## WORKAROUND: batchtools::getStatus() updates the RNG state,
## which we must make sure to undo.
with_stealth_rng({
batchtools::getStatus(...)
})
} ## get_status()
## Known to be in its final state?
if (getOption("future.batchtools.status.cache", TRUE)) {
status <- future$.status
if (identical(status, c("defined", "finished", "started", "submitted"))) {
return(status)
}
}
config <- future$config
reg <- config$reg
if (!inherits(reg, "Registry")) return(NA_character_)
## Closed and deleted?
if (!file_test("-d", reg$file.dir)) return(NA_character_)
jobid <- config$jobid
if (is.na(jobid)) return("not submitted")
status <- get_status(reg = reg, ids = jobid)
status <- (unlist(status) == 1L)
status <- status[status]
status <- sort(names(status))
status <- setdiff(status, c("n"))
status[status == "done"] <- "finished"
result <- future$result
if (inherits(result, "FutureResult")) {
if (result_has_errors(result)) status <- unique(c("error", status))
}
## Cache result
future$.status <- status
if (debug) mdebug("- status: ", paste(sQuote(status), collapse = ", "))
status
}
finished <- function(future, ...) {
status <- status(future)
if (is_na(status)) return(NA)
any(c("finished", "error", "expired") %in% status)
}
#' Logged output of batchtools future
#'
#' @param future The future.
#' @param \ldots Not used.
#'
#' @return A character vector or a logical scalar.
#'
#' @aliases loggedOutput loggedError
#'
#' @export loggedError
#' @export loggedOutput
#' @keywords internal
loggedOutput <- function(...) UseMethod("loggedOutput")
loggedError <- function(...) UseMethod("loggedError")
#' @importFrom batchtools getErrorMessages
#' @export
loggedError.BatchtoolsFuture <- function(future, ...) {
stat <- status(future)
if (is_na(stat)) return(NULL)
if (!finished(future)) {
label <- future$label
if (is.null(label)) label <- "<none>"
msg <- sprintf("%s ('%s') has not finished yet", class(future)[1L], label)
stop(BatchtoolsFutureError(msg, future = future))
}
if (!"error" %in% stat) return(NULL)
config <- future$config
reg <- config$reg
if (!inherits(reg, "Registry")) return(NULL)
jobid <- config$jobid
res <- getErrorMessages(reg = reg, ids = jobid) ### CHECKED
msg <- res$message
msg <- paste(sQuote(msg), collapse = ", ")
msg
} # loggedError()
#' @importFrom batchtools getLog
#' @export
loggedOutput.BatchtoolsFuture <- function(future, ...) {
stat <- status(future)
if (is_na(stat)) return(NULL)
if (!finished(future)) {
label <- future$label
if (is.null(label)) label <- "<none>"
msg <- sprintf("%s ('%s') has not finished yet", class(future)[1L], label)
stop(BatchtoolsFutureError(msg, future = future))
}
config <- future$config
reg <- config$reg
if (!inherits(reg, "Registry")) return(NULL)
jobid <- config$jobid
getLog(id = jobid, reg = reg)
} # loggedOutput()
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
# Future API
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
#' @importFrom future resolved
#' @export
#' @keywords internal
resolved.BatchtoolsFuture <- function(x, ...) {
signalEarly <- import_future("signalEarly")
## Is value already collected?
if (!is.null(x$result)) {
## Signal conditions early?
signalEarly(x, ...)
return(TRUE)
}
## Assert that the process that created the future is
## also the one that evaluates/resolves/queries it.
assertOwner <- import_future("assertOwner")
assertOwner(x)
## If not, checks the batchtools registry status
resolved <- finished(x)
if (is.na(resolved)) return(FALSE)
## Signal conditions early? (happens only iff requested)
if (resolved) signalEarly(x, ...)
resolved
}
#' @importFrom future result
#' @export
#' @keywords internal
result.BatchtoolsFuture <- function(future, cleanup = TRUE, ...) {
debug <- getOption("future.debug", FALSE)
if (debug) {
mdebug("result() for BatchtoolsFuture ...")
on.exit(mdebug("result() for BatchtoolsFuture ... done"), add = TRUE)
}
## Has the value already been collected?
result <- future$result
if (inherits(result, "FutureResult")) {
if (debug) mdebug("- FutureResult already collected")
return(result)
}
## Has the value already been collected? - take two
if (future$state %in% c("finished", "failed", "interrupted")) {
if (debug) mdebug("- FutureResult already collected - take 2")
return(NextMethod())
}
if (future$state == "created") {
if (debug) mdebug("- starting future ...")
future <- run(future)
if (debug) mdebug("- starting future ... done")
}
if (debug) mdebug("- getting batchtools status")
stat <- status(future)
if (is_na(stat)) {
label <- future$label
if (is.null(label)) label <- "<none>"
stopf("The result no longer exists (or never existed) for Future ('%s') of class %s", label, paste(sQuote(class(future)), collapse = ", ")) #nolint
}
if (debug) mdebug("- waiting for batchtools job to finish ...")
result <- await(future, cleanup = FALSE)
if (debug) mdebug("- waiting for batchtools job to finish ... done")
stop_if_not(inherits(result, "FutureResult"))
future$result <- result
future$state <- "finished"
if (cleanup) {
if (debug) mdebugf("- delete %s ...", class(future)[1])
delete(future)
if (debug) mdebugf("- delete %s ... done", class(future)[1])
}
if (debug) mdebug("- NextMethod()")
NextMethod()
}
#' @importFrom future run getExpression
#' @importFrom batchtools batchExport batchMap saveRegistry setJobNames submitJobs
#' @importFrom utils capture.output str
#' @export
run.BatchtoolsFuture <- function(future, ...) {
if (future$state != "created") {
label <- future$label
if (is.null(label)) label <- "<none>"
msg <- sprintf("A future ('%s') can only be launched once.", label)
stop(FutureError(msg, future = future))
}
## Assert that the process that created the future is
## also the one that evaluates/resolves/queries it.
assertOwner <- import_future("assertOwner")
assertOwner(future)
## Temporarily disable batchtools output?
## (i.e. messages and progress bars)
debug <- getOption("future.debug", FALSE)
batchtools_output <- getOption("future.batchtools.output", debug)
if (!batchtools_output) {
oopts <- options(batchtools.verbose = FALSE, batchtools.progress = FALSE)
} else {
oopts <- list()
}
on.exit(options(oopts))
expr <- getExpression(future)
## Always evaluate in local environment
expr <- substitute(local(expr), list(expr = expr))
## (i) Create batchtools registry
reg <- future$config$reg
stop_if_not(is.null(reg) || inherits(reg, "Registry"))
if (is.null(reg)) {
if (debug) mprint("- Creating batchtools registry")
config <- future$config
stop_if_not(is.list(config))
## Create batchtools registry
reg <- temp_registry(
label = future$label,
conf.file = config$conf.file,
cluster.functions = config$cluster.functions,
config = config$registry
)
if (debug) mprint(reg)
future$config$reg <- reg
## Register finalizer?
if (config$finalize) future <- add_finalizer(future)
config <- NULL
}
stop_if_not(inherits(reg, "Registry"))
## (ii) Attach packages that needs to be attached
packages <- future$packages
if (length(packages) > 0) {
mdebugf("Attaching %d packages (%s) ...",
length(packages), hpaste(sQuote(packages)))
## Record which packages in 'pkgs' that are loaded and
## which of them are attached (at this point in time).
is_loaded <- is.element(packages, loadedNamespaces())
is_attached <- is.element(packages, attached_packages())
## FIXME: Update the expression such that the new session
## will have the same state of (loaded, attached) packages.
reg$packages <- packages
saveRegistry(reg = reg)
mdebugf("Attaching %d packages (%s) ... DONE",
length(packages), hpaste(sQuote(packages)))
}
## Not needed anymore
packages <- NULL
## (iii) Export globals?
if (length(future$globals) > 0) {
batchExport(export = future$globals, reg = reg)
}
## 1. Add to batchtools for evaluation
mdebug("batchtools::batchMap()")
## WORKAROUND: batchtools::batchMap() updates the RNG state,
## which we must make sure to undo.
with_stealth_rng({
jobid <- batchMap(fun = geval, list(expr),
more.args = list(substitute = TRUE), reg = reg)
})
## 2. Set job name, if specified
label <- future$label
if (!is.null(label)) {
setJobNames(ids = jobid, names = label, reg = reg)
}
## 3. Update
future$config$jobid <- jobid
mdebugf("Created %s future #%d", class(future)[1], jobid$job.id)
## WORKAROUND: (For multicore and macOS only)
if (reg$cluster.functions$name == "Multicore") {
## On some macOS systems, a system call to 'ps' may output an error message
## "dyld: DYLD_ environment variables being ignored because main executable
## (/bin/ps) is setuid or setgid" to standard error that is picked up by
## batchtools which incorrectly tries to parse it. By unsetting all DYLD_*
## environment variables, we avoid this message. For more info, see:
## * https://github.com/tudo-r/BatchJobs/issues/117
## * https://github.com/HenrikBengtsson/future.BatchJobs/issues/59
## /HB 2016-05-07
dyld_envs <- tryCatch({
envs <- list()
res <- system2("ps", stdout = TRUE, stderr = TRUE)
if (any(grepl("DYLD_", res))) {
envs <- Sys.getenv()
envs <- envs[grepl("^DYLD_", names(envs))]
if (length(envs) > 0L) lapply(names(envs), FUN = Sys.unsetenv)
}
envs
}, error = function(ex) list())
}
## 4. Wait for an available worker
waitForWorker(future, workers = future$workers)
## 5. Submit
future$state <- "running"
resources <- future$config$resources
if (is.null(resources)) resources <- list()
## WORKAROUND: batchtools::submitJobs() updates the RNG state,
## which we must make sure to undo.
tryCatch({
with_stealth_rng({
submitJobs(reg = reg, ids = jobid, resources = resources)
})
}, error = function(ex) {
msg <- conditionMessage(ex)
label <- future$label
if (is.null(label)) label <- "<none>"
msg <- sprintf("Failed to submit %s (%s). The reason was: %s", class(future)[1], label, msg)
info <- capture.output(str(resources))
info <- paste(info, collapse = "\n")
msg <- sprintf("%s\nTROUBLESHOOTING INFORMATION:\nbatchtools::submitJobs() was called with the following 'resources' argument:\n%s\n", msg, info)
stop(BatchtoolsFutureError(msg, future = future))
})
mdebugf("Launched future #%d", jobid$job.id)
## 6. Rerserve worker for future
registerFuture(future)
## 7. Trigger early signalling
if (inherits(future, "BatchtoolsUniprocessFuture")) {
resolved(future)
}
invisible(future)
} ## run()
#' @importFrom batchtools loadResult waitForJobs
#' @importFrom utils tail
await <- function(future, cleanup = TRUE,
timeout = getOption("future.wait.timeout", 30 * 24 * 60 * 60),
delta = getOption("future.wait.interval", 1.0),
alpha = getOption("future.wait.alpha", 1.01),
...) {
stop_if_not(is.finite(timeout), timeout >= 0)
stop_if_not(is.finite(alpha), alpha > 0)
debug <- getOption("future.debug", FALSE)
if (debug) mdebug("future.batchtools:::await() ...")
expr <- future$expr
config <- future$config
reg <- config$reg
stop_if_not(inherits(reg, "Registry"))
jobid <- config$jobid
mdebug("batchtools::waitForJobs() ...")
## Control batchtools info output
oopts <- options(batchtools.verbose = debug)
on.exit(options(oopts))
## Sleep function - increases geometrically as a function of iterations
sleep_fcn <- function(i) delta * alpha ^ (i - 1)
res <- waitForJobs(ids = jobid, timeout = timeout, sleep = sleep_fcn,
stop.on.error = FALSE, reg = reg)
if (debug) mdebugf("- batchtools::waitForJobs(): %s", res)
stat <- status(future)
if (debug) {
mdebugf("- status(): %s", paste(sQuote(stat), collapse = ", "))
mdebug("batchtools::waitForJobs() ... done")
}
finished <- is_na(stat) || any(c("finished", "error", "expired") %in% stat)
## PROTOTYPE RESULTS BELOW:
prototype_fields <- NULL
result <- NULL
if (finished) {
mdebug("Results:")
label <- future$label
if (is.null(label)) label <- "<none>"
if ("finished" %in% stat) {
if (debug) mdebug("- batchtools::loadResult() ...")
result <- loadResult(reg = reg, id = jobid)
if (debug) mdebug("- batchtools::loadResult() ... done")
if (inherits(result, "FutureResult")) {
prototype_fields <- c(prototype_fields, "batchtools_log")
result[["batchtools_log"]] <- try(local({
if (debug) {
mdebug("- batchtools::getLog() ...")
on.exit(mdebug("- batchtools::getLog() ... done"))
}
## Since we're already collected the results, the log file
## should already exist, if it exists. Because of this,
## only poll for the log file for a second before giving up.
reg$cluster.functions$fs.latency <- 1.0
getLog(id = jobid, reg = reg)
}), silent = TRUE)
if (result_has_errors(result)) cleanup <- FALSE
}
} else if ("error" %in% stat) {
cleanup <- FALSE
msg <- sprintf(
"BatchtoolsFutureError for %s ('%s') captured by batchtools: %s",
class(future)[1], label, loggedError(future))
stop(BatchtoolsFutureError(msg, future = future))
} else if ("expired" %in% stat) {
cleanup <- FALSE
msg <- sprintf("BatchtoolsExpiration: Future ('%s') expired (registry path %s).", label, reg$file.dir)
output <- loggedOutput(future)
hint <- unlist(strsplit(output, split = "\n", fixed = TRUE))
hint <- hint[nzchar(hint)]
hint <- tail(hint, n = getOption("future.batchtools.expiration.tail", 48L))
if (length(hint) > 0) {
hint <- paste(hint, collapse = "\n")
msg <- paste(msg, ". The last few lines of the logged output:\n",
hint, sep="")
} else {
msg <- sprintf("%s. No logged output exist.", msg)
}
stop(BatchtoolsFutureError(msg, future = future))
} else if (is_na(stat)) {
msg <- sprintf("BatchtoolsDeleted: Cannot retrieve value. Future ('%s') deleted: %s", label, reg$file.dir) #nolint
stop(BatchtoolsFutureError(msg, future = future))
}
if (debug) { mstr(result) }
} else {
cleanup <- FALSE
msg <- sprintf("AsyncNotReadyError: Polled for results for %s seconds every %g seconds, but asynchronous evaluation for future ('%s') is still running: %s", timeout, delta, label, reg$file.dir) #nolint
stop(BatchtoolsFutureError(msg, future = future))
}
if (length(prototype_fields) > 0) {
result$PROTOTYPE_WARNING <- sprintf("WARNING: The fields %s should be considered internal and experimental for now, that is, until the Future API for these additional features has been settled. For more information, please see https://github.com/HenrikBengtsson/future/issues/172", hpaste(sQuote(prototype_fields), max_head = Inf, collapse = ", ", last_collapse = " and "))
}
## Cleanup?
if (cleanup) {
delete(future, delta = 0.5 * delta, ...)
}
if (debug) mdebug("future.batchtools:::await() ... done")
result
} # await()
delete <- function(...) UseMethod("delete")
#' Removes a batchtools future
#'
#' @param future The future.
#' @param onRunning Action if future is running or appears to run.
#' @param onFailure Action if failing to delete future.
#' @param onMissing Action if future does not exist.
#' @param times The number of tries before giving up.
#' @param delta The delay interval (in seconds) between retries.
#' @param alpha A multiplicative penalty increasing the delay
#' for each failed try.
#' @param \ldots Not used.
#'
#' @return (invisibly) TRUE if deleted and FALSE otherwise.
#'
#' @export
#' @importFrom batchtools clearRegistry removeRegistry
#' @importFrom utils file_test
#' @keywords internal
delete.BatchtoolsFuture <- function(future,
onRunning = c("warning", "error", "skip"),
onFailure = c("error", "warning", "ignore"),
onMissing = c("ignore", "warning", "error"),
times = 10L,
delta = getOption("future.wait.interval", 1.0),
alpha = getOption("future.wait.alpha", 1.01),
...) {
onRunning <- match.arg(onRunning)
onMissing <- match.arg(onMissing)
onFailure <- match.arg(onFailure)
debug <- getOption("future.debug", FALSE)
## Identify registry
config <- future$config
reg <- config$reg
## Trying to delete a non-launched batchtools future?
if (!inherits(reg, "Registry")) return(invisible(TRUE))
path <- reg$file.dir
## Already deleted?
if (is.null(path) || !file_test("-d", path)) {
if (onMissing %in% c("warning", "error")) {
msg <- sprintf("Cannot remove batchtools registry, because directory does not exist: %s", sQuote(path)) #nolint
mdebugf("delete(): %s", msg)
if (onMissing == "warning") {
warning(msg)
} else if (onMissing == "error") {
stop(BatchtoolsFutureError(msg, future = future))
}
}
return(invisible(TRUE))
}
## Is the future still not resolved? If so, then...
if (!resolved(future)) {
if (onRunning == "skip") return(invisible(TRUE))
status <- status(future)
label <- future$label
if (is.null(label)) label <- "<none>"
msg <- sprintf("Will not remove batchtools registry, because is appears to hold a non-resolved future (%s; state = %s; batchtools status = %s): %s", sQuote(label), sQuote(future$state), paste(sQuote(status), collapse = ", "), sQuote(path)) #nolint
mdebugf("delete(): %s", msg)
if (onRunning == "warning") {
warning(msg)
return(invisible(TRUE))
} else if (onRunning == "error") {
stop(BatchtoolsFutureError(msg, future = future))
}
}
## Make sure to collect the results before deleting
## the internal batchtools registry
result <- result(future, cleanup = FALSE)
stop_if_not(inherits(result, "FutureResult"))
## Free up worker
unregisterFuture(future)
## To simplify post mortem troubleshooting in non-interactive sessions,
## should the batchtools registry files be removed or not?
mdebugf("delete(): Option 'future.delete = %s",
sQuote(getOption("future.delete", "<NULL>")))
if (!getOption("future.delete", interactive())) {
status <- status(future)
res <- future$result
if (inherits(res, "FutureResult")) {
if (result_has_errors(res)) status <- unique(c("error", status))
}
mdebugf("delete(): status(<future>) = %s",
paste(sQuote(status), collapse = ", "))
if (any(c("error", "expired") %in% status)) {
msg <- sprintf("Will not remove batchtools registry, because the status of the batchtools was %s and option 'future.delete' is FALSE or running in an interactive session: %s", paste(sQuote(status), collapse = ", "), sQuote(path)) #nolint
mdebugf("delete(): %s", msg)
warning(msg)
return(invisible(FALSE))
}
}
## Have user disabled deletions?
if (!getOption("future.delete", TRUE)) {
msg <- sprintf("Option 'future.delete' is FALSE - will not delete batchtools registry: %s", sQuote(path))
mdebugf("delete(): %s", msg)
return(invisible(FALSE))
}
## Control batchtools info output
oopts <- options(batchtools.verbose = debug)
on.exit(options(oopts))
## Try to delete registry
## WORKAROUND: batchtools::clearRegistry() and
## batchtools::removeRegistry() update the RNG state,
## which we must make sure to undo.
with_stealth_rng({
interval <- delta
for (kk in seq_len(times)) {
try(unlink(path, recursive = TRUE), silent = FALSE)
if (!file_test("-d", path)) break
try(removeRegistry(wait = 0.0, reg = reg), silent = FALSE)
if (!file_test("-d", path)) break
try(clearRegistry(reg = reg), silent = TRUE)
try(removeRegistry(wait = 0.0, reg = reg), silent = FALSE)
if (!file_test("-d", path)) break
Sys.sleep(interval)
interval <- alpha * interval
}
})
## Success?
if (file_test("-d", path)) {
if (onFailure %in% c("warning", "error")) {
msg <- sprintf("Failed to remove batchtools registry: %s", sQuote(path))
mdebugf("delete(): %s", msg)
if (onMissing == "warning") {
warning(msg)
} else if (onMissing == "error") {
stop(BatchtoolsFutureError(msg, future = future))
}
}
return(invisible(FALSE))
}
mdebugf("delete(): batchtools registry deleted: %s", sQuote(path))
invisible(TRUE)
} # delete()
add_finalizer <- function(...) UseMethod("add_finalizer")
add_finalizer.BatchtoolsFuture <- function(future, debug = FALSE, ...) {
## Register finalizer (will clean up registries etc.)
if (debug) {
mdebug("add_finalizer() for ", sQuote(class(future)[1]), " ...")
on.exit(mdebug("add_finalizer() for ", sQuote(class(future)[1]), " ... done"), add = TRUE)
}
reg.finalizer(future, f = function(f) {
if (debug) {
if (!exists("mdebug", mode = "function")) mdebug <- message
mdebug("Finalize ", sQuote(class(f)[1]), " ...")
on.exit(mdebug("Finalize ", sQuote(class(f)[1]), " ... done"), add = TRUE)
}
if (inherits(f, "BatchtoolsFuture") && "future.batchtools" %in% loadedNamespaces()) {
if (debug) {
mdebug("- attempting to delete future")
if (requireNamespace("utils", quietly = TRUE)) {
mdebug(utils::capture.output(utils::str(as.list(f))))
}
}
res <- try({
delete(f, onRunning = "skip", onMissing = "ignore", onFailure = "warning")
})
if (debug) {
if (inherits(res, "try-error")) {
mdebug("- Failed to delete: ", sQuote(res))
} else {
mdebug("- deleted: ", res)
}
}
}
}, onexit = TRUE)
invisible(future)
}
|