spark_write_rds {sparklyr} | R Documentation |
Write Spark DataFrame to RDS files
Description
Write Spark dataframe to RDS files. Each partition of the dataframe will be exported to a separate RDS file so that all partitions can be processed in parallel.
Usage
spark_write_rds(x, dest_uri)
Arguments
x |
A Spark DataFrame to be exported |
dest_uri |
Can be a URI template containing 'partitionId' (e.g.,
|
Value
A tibble containing partition ID and RDS file location for each partition of the input Spark dataframe.