how to load excel data in already created hive table in orc format

513 Views Asked by At

I need to load data in already created hive table in orc format.

ie I need to read data from excel sheet, create data frame and then load it into hive tables in orc format.

1

There are 1 best solutions below

0
Istvan On

There are two steps involved:

  • read the excel file[1]

  • write it into the Hive table [2]

The answers related to this:

  1. Reading Excel file with Scala

  2. How to save DataFrame directly to Hive?