0 votes
in Big Data | Hadoop by
Partition

To manage/access data more efficiently, we have the partitioning and buckets concept in Apache Hive.

Partitioning helps and makes faster for a user to do queries on pieces of data. It breaks up the data in a different table, and we can get the result faster when a where clause is used.

example-select * from table where <condition>;

...