copy_to
From sparklyr v0.4
by Javier Luraschi
Copy a local R data frame to Spark
Copy a local R data frame to Spark
Usage
# S3 method for spark_connection
copy_to(dest, df, name = deparse(substitute(df)),
memory = TRUE, repartition = 0, overwrite = FALSE, ...)
Arguments
- dest
A Spark connection
- df
Local data frame to copy
- name
Name of the destination table
- memory
Cache table into memory
- repartition
Partitions used to distribute table or 0 (default) to avoid partitioning
- overwrite
When TRUE, overwrites table with existing name
- ...
Unused
Value
dplyr compatible reference to table
See Also
Other dplyr: tbl_cache
,
tbl_uncache
Community examples
Looks like there are no examples yet.