user6546116
user6546116

Reputation:

Maximum number of partitions in hive

I have 1500 partition in my hive tables but while doing query it is taking more time then expected. Maximum number of partitions can be created in hive table.

Upvotes: 2

Views: 7655

Answers (1)

Mayank Porwal
Mayank Porwal

Reputation: 34046

Current Hive versions with RDBMS metastore backend should be able to handle 10000+ partitions.

For numerous reasons, the community is moving away from this design to leverage HBase for the metastore. Follow https://issues.apache.org/jira/browse/HIVE-9452 .

Overall design document is available here: https://issues.apache.org/jira/secure/attachment/12697601/HBaseMetastoreApproach.pdf

Upvotes: 3

Related Questions