I'm using static partition in hive to seggregate the data into subdirectories based on date field, I'll need 365 partitions/year for each table(total 14 tables) as I have daily loads into hive.
Is there any limitation on number of static partitions that can be created in hive?
Dynamic partition gives error if "hive.exec.max.dynamic.partitions.pernode" exceeds the specified thresold(100) in sqoop import
I have 5 node HDP cluster out of which 3 are datanodes
Will it hamper performace of cluster if I increase the number of partitions that can be created in hive ?
Is that limitation only for dynamic partition or it is applicable to static as well?
Reference
Check trrouble shooting and best practices section https://cwiki.apache.org/confluence/display/Hive/Tutorial
Kindly suggest