Is it possible to read ORC file to Spark Data Frame in sparklyr?

Viewed 1281

I know that sparklyr has the following read file methods:

  • spark_read_csv
  • spark_read_parquet
  • spark_read_json

What about reading orc files? Is it supported yet by this library?

I know I can use read.orc in SparkR or this solution, but I'd like to keep my code in sparklyr.

1 Answers
Related