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
|
#' Perform arbitrary computation on remote backend
#'
#' @inheritParams dplyr::do
#' @param .chunk_size The size of each chunk to pull into R. If this number is
#' too big, the process will be slow because R has to allocate and free a lot
#' of memory. If it's too small, it will be slow, because of the overhead of
#' talking to the database.
#' @export
#' @importFrom dplyr do
do.tbl_sql <- function(.data, ..., .chunk_size = 1e4L) {
groups_sym <- groups(.data)
if (length(groups_sym) == 0) {
.data <- collect(.data)
return(do(.data, ...))
}
args <- quos(...)
named <- named_args(args)
# Create data frame of labels
labels <- .data %>%
select(!!! groups_sym) %>%
summarise() %>%
collect()
con <- .data$src$con
n <- nrow(labels)
m <- length(args)
out <- replicate(m, vector("list", n), simplify = FALSE)
names(out) <- names(args)
p <- progress_estimated(n * m, min_time = 2)
# Create ungrouped data frame suitable for chunked retrieval
query <- Query$new(con, db_sql_render(con, ungroup(.data)), op_vars(.data))
# When retrieving in pages, there's no guarantee we'll get a complete group.
# So we always assume the last group in the chunk is incomplete, and leave
# it for the next. If the group size is large than chunk size, it may
# take a couple of iterations to get the entire group, but that should
# be an unusual situation.
last_group <- NULL
i <- 0
# Assumes `chunk` to be ordered with group columns first
gvars <- seq_along(groups_sym)
# Initialise a data mask for tidy evaluation
env <- env(empty_env())
mask <- new_data_mask(env)
query$fetch_paged(.chunk_size, function(chunk) {
if (!is_null(last_group)) {
chunk <- rbind(last_group, chunk)
}
# Create an id for each group
grouped <- chunk %>% dplyr::group_by(!!! syms(names(chunk)[gvars]))
if (utils::packageVersion("dplyr") < "0.7.9") {
index <- attr(grouped, "indices") # nocov
# convert from 0-index
index <- lapply(index, `+`, 1L) # nocov
} else {
index <- dplyr::group_rows(grouped)
}
n <- length(index)
last_group <<- chunk[index[[length(index)]], , drop = FALSE]
for (j in seq_len(n - 1)) {
cur_chunk <- chunk[index[[j]], , drop = FALSE]
# Update pronouns within the data mask
env$. <- cur_chunk
env$.data <- cur_chunk
for (k in seq_len(m)) {
out[[k]][[i + j]] <<- eval_tidy(args[[k]], mask)
p$tick()$print()
}
}
i <<- i + (n - 1)
})
# Process last group
if (!is_null(last_group)) {
env$. <- last_group
last_group <- env$.data
for (k in seq_len(m)) {
out[[k]][[i + 1]] <- eval_tidy(args[[k]], mask)
p$tick()$print()
}
}
if (!named) {
label_output_dataframe(labels, out, group_vars(.data))
} else {
label_output_list(labels, out, group_vars(.data))
}
}
# Helper functions -------------------------------------------------------------
label_output_dataframe <- function(labels, out, groups) {
data_frame <- vapply(out[[1]], is.data.frame, logical(1))
if (any(!data_frame)) {
cli_abort(c(
"Results must be data frames",
"Problems at positions {which(!data_frame)}"
))
}
rows <- vapply(out[[1]], nrow, numeric(1))
out <- dplyr::bind_rows(out[[1]])
if (!is.null(labels)) {
# Remove any common columns from labels
labels <- labels[setdiff(names(labels), names(out))]
# Repeat each row to match data
labels <- labels[rep(seq_len(nrow(labels)), rows), , drop = FALSE]
rownames(labels) <- NULL
dplyr::grouped_df(dplyr::bind_cols(labels, out), groups)
} else {
dplyr::rowwise(out) # nocov
}
}
label_output_list <- function(labels, out, groups) {
if (!is.null(labels)) {
labels[names(out)] <- out
dplyr::rowwise(labels)
} else {
# nocov start
class(out) <- "data.frame"
attr(out, "row.names") <- .set_row_names(length(out[[1]]))
dplyr::rowwise(out)
# nocov end
}
}
named_args <- function(args) {
# Arguments must either be all named or all unnamed.
named <- sum(names2(args) != "")
if (!(named == 0 || named == length(args))) {
cli_abort(
"Arguments to {.fun do} must either be all named or all unnamed"
)
}
if (named == 0 && length(args) > 1) {
cli_abort("Can only supply single unnamed argument to {.fun do}")
}
# Check for old syntax
if (named == 1 && names(args) == ".f") {
cli_abort(
"{.fun do} syntax changed in dplyr 0.2. Please see documentation for details"
)
}
named != 0
}
|