Description
All the HCatProcess tests are failing in secure mode. Oozie is not able to talk to hcat server. The following additions additional configuration needs to be added.
job.properties-
hive.metastore.sasl.enabled=true
hive.metastore.kerberos.principal=hive/<host>@<realm>
workflow.xml-
<credentials>
<credential name='hiveauth' type='hcat'>
<property>
<name>hcat.metastore.uri</name>
<value>thrift://<host>:<port></value>
</property>
<property>
<name>hcat.metastore.principal</name>
<value>hive/<host>@<realm></value>
</property>
</credential>
</credentials>