compute()
Executes the query and stores the result in a new Impala table
collect()
Executes the query
and returns the result to R as a data frame tbl
collapse()
Generates the query for later execution
# S3 method for tbl_impala
compute(
x,
name,
temporary = TRUE,
unique_indexes = NULL,
indexes = NULL,
analyze = FALSE,
external = FALSE,
overwrite = FALSE,
force = FALSE,
field_terminator = NULL,
line_terminator = NULL,
file_format = NULL,
...
)# S3 method for tbl_impala
collect(x, ..., n = Inf, warn_incomplete = TRUE)
# S3 method for tbl_impala
collapse(x, vars = NULL, ...)
an object with class tbl_impala
the name for the new Impala table
must be set to FALSE
not used
not used
whether to run COMPUTE STATS
after adding data to the
new table
whether the new table will be externally managed
whether to overwrite existing table data (currently ignored)
whether to silently fail if the table already exists
the deliminter to use between fields in text file data. Defaults to the ASCII control-A (hex 01) character
the line terminator. Defaults to "\n"
the storage format to use. Options are "TEXTFILE"
(default) and "PARQUET"
other arguments passed on to methods
the number of rows to return
whether to issue a warning if not all rows retrieved
not used