Hi Team,
I am trying to create a database in Hive using spark sql in spark 2.0 version & encounter the below permission issue,
command - spark.sql("create database test")
************************************************************************************************************************
Caused by: org.apache.hadoop.hive.metastore.api.MetaException: java.security.AccessControlException: Permission denied:
************************************************************************************************************************
However when I try to do the same in Spark 1.6 version, I am able to do it without any issues.
command - sqlContext.sql("create database test")
Do I need to set some configuration to execute from Spark 2.0?
Thanks in Advance!