From 665597e7194adc1f04d797ce6674dde6fe7a84b9 Mon Sep 17 00:00:00 2001 From: William Shen Date: Fri, 11 Feb 2022 12:12:31 -0600 Subject: [PATCH] Setting hive.exec.dynamic.partition.mode=nonstrict If not set, user will run into FAILED: SemanticException [Error 10096]: Dynamic partition strict mode requires at least one static partition column. To turn this off set hive.exec.dynamic.partition.mode=nonstrict when they try to create the ORC tables. --- settings.hql | 1 + 1 file changed, 1 insertion(+) diff --git a/settings.hql b/settings.hql index 03914c5..2ced903 100644 --- a/settings.hql +++ b/settings.hql @@ -1,2 +1,3 @@ set hive.exec.max.dynamic.partitions.pernode=5000; set mapreduce.task.timeout=360000000; +set hive.exec.dynamic.partition.mode=nonstrict;