DataFrameReader.
orc
Loads ORC files, returning the result as a DataFrame.
DataFrame
New in version 1.5.0.
For the extra options, refer to Data Source Option in the version you use.
Examples
>>> df = spark.read.orc('python/test_support/sql/orc_partitioned') >>> df.dtypes [('a', 'bigint'), ('b', 'int'), ('c', 'int')]