I am using spark 1.3.1 and i want to store data in hive as a ORC format..
Below lines showing error, it looks like orc is not supporing as a data source in spark 1.3.1
dataframe.save(“/apps/hive/warehouse/person_orc_table_5″, “orc”);
Spark 1.4 has..
write.format(“orc”).partitionBy(“age”).save(“peoplePartitioned”)
to stored as an orc format..
Is there any way to store file in ORC format in spark 1.3.1 ??
Thanks,