Nothing
#' @title Check Consistency and Remove Obsolete Information
#'
#' @description
#' Canceled jobs and jobs submitted multiple times may leave stray files behind.
#' This function checks the registry for consistency and removes obsolete files
#' and redundant data base entries.
#'
#' @template reg
#' @family Registry
#' @export
sweepRegistry = function(reg = getDefaultRegistry()) {
assertRegistry(reg, writeable = TRUE, sync = TRUE, running.ok = FALSE)
"!DEBUG [sweepRegistry]: Running sweepRegistry"
submitted = reg$status[.findSubmitted(reg = reg), c("job.id", "job.hash")]
obsolete = chsetdiff(
list.files(dir(reg, "results"), full.names = TRUE),
getResultFiles(reg, submitted)
)
if (length(obsolete)) {
info("Removing %i obsolete result files ...", length(obsolete))
fs::file_delete(obsolete)
}
obsolete = chsetdiff(
list.files(dir(reg, "logs"), full.names = TRUE),
getLogFiles(reg, submitted)
)
if (length(obsolete)) {
info("Removing %i obsolete log files ...", length(obsolete))
fs::file_delete(obsolete)
}
obsolete = list.files(dir(reg, "jobs"), pattern = "\\.rds", full.names = TRUE)
if (length(obsolete)) {
info("Removing %i obsolete job collection files ...", length(obsolete))
fs::file_delete(obsolete)
}
obsolete = list.files(dir(reg, "jobs"), pattern = "\\.job$", full.names = TRUE)
if (length(obsolete)) {
info("Removing %i job description files ...", length(obsolete))
fs::file_delete(obsolete)
}
obsolete = chsetdiff(
list.files(dir(reg, "external"), pattern = "^[0-9]+$", full.names = TRUE),
getExternalDirs(reg, submitted)
)
if (length(obsolete)) {
info("Removing %i external directories of unsubmitted jobs ...", length(obsolete))
fs::dir_delete(obsolete)
}
obsolete = reg$resources[!reg$status, on = "resource.id", which = TRUE]
if (length(obsolete)) {
info("Removing %i resource specifications ...", length(obsolete))
reg$resources = reg$resources[-obsolete]
}
obsolete = reg$tags[!reg$status, on = "job.id", which = TRUE]
if (length(obsolete)) {
info("Removing %i tags ...", length(obsolete))
reg$tags = reg$tags[-obsolete]
}
saveRegistry(reg)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.