Skip to content

Latest commit

 

History

History
12 lines (9 loc) · 405 Bytes

deltaLake.md

File metadata and controls

12 lines (9 loc) · 405 Bytes

Using R to Read and Write to a Delta Lake

R supports reading and writing to a Delta Lake:

df <- read.df(path = 'dbfs:/delta_table", source = "delta")
write.df(sparkdf, source = "delta", path = "dbfs:/delta_table/)

As of September 2019, sparklyr doesn't directly support reading and writing to Delta tables.