InterviewSolution
Saved Bookmarks
| 1. |
Can you create more than one table in Hive for a single data file? |
|
Answer» In Hive, multiple tables can be CREATED for a SINGLE data file using the same HDFS DIRECTORY. As we know already that metastore acts as the central repository for Hive metadata and it stores metadata like schemas and locations. Data already remain in the same file. So, it becomes a very easy task to RETRIEVE the different results for the corresponding same data based UPON the schema. |
|