I am using HOCON configuration in my project. But I am stuck with Configuring a Hive connection.
The HOCON doc says:
The JSON spec does not clarify how duplicate keys in the same object should be handled. In HOCON, duplicate keys that appear later override those that appear earlier, unless both values are objects. If both values are objects, then the objects are merged.
Now having these two configurations how can I make this HOCO read them both?
hive.exec.dynamic.partition = true;
hive.exec.dynamic.partition.mode = nonstrict;