Hive报错,Fatal error occurred when node tried to create too many dynamic partitions.

版权声明:本文为博主原创文章,转载请说明出处 https://blog.csdn.net/u010002184/article/details/88573187

Fatal error occurred when node tried to create too many dynamic partitions. The maximum number of dynamic partitions is controlled by hive.exec.max.dynamic.partitions and hive.exec.max.dynamic.partitions.pernode. Maximum was set to: 100

Solution:

Add:

set hive.exec.max.dynamic.partitions=50000;    

set hive.exec.max.dynamic.partitions.pernode=10000;

https://blog.csdn.net/Post_Yuan/article/details/62887619

猜你喜欢

转载自blog.csdn.net/u010002184/article/details/88573187