Anonymous
Anonymous

Reputation: 1

How to store data in hive table from different file location

If we have multiple data sources and from each data source, one file is coming to HDFS but in a different location, how do we store all these files in a single Hive table?

Upvotes: 0

Views: 126

Answers (1)

Ayush Saxena
Ayush Saxena

Reputation: 133

Create an external table and for each path, add a partition and specify that location as the path for partition.

Upvotes: 1

Related Questions