Has anyone been getting this error in Dataplex > Explore > Spark SQL?
___
Script failed in execution.
org.apache.spark.sql.AnalysisException: org.apache.hadoop.hive.ql.metadata.HiveException: org.apache.hadoop.hive.ql.metadata.HiveException: org.apache.thrift.transport.TTransportException
Caused by: org.apache.hadoop.hive.ql.metadata.HiveException: org.apache.hadoop.hive.ql.metadata.HiveException: org.apache.thrift.transport.TTransportException
Caused by: org.apache.hadoop.hive.ql.metadata.HiveException:
___
It happens on almost every query right now. Simple ones like
I figured out the problem - partially. This common Explore errors website says that HiveException and TTransportException errors are permission errors, and that the following roles/permissions are needed for using the Data exploration workbench:
After a careful comparison of the privileges granted in the Dataplex Administrator role, and the other Dataplex roles listed above, the only Dataplex role that has privileges the Dataplex Administrator does not is the Dataplex Data Reader. So, for a user that already had the Dataplex Administrator role, the remaining roles that needed to be granted were the
Granting these roles allowed queries to execute. Then I ran across the issue of Table or view not found errors when trying to query some tables. Documentation on the table not found error looks like if the table name has any capital letters in it, then spark.sql.caseSensitive needs to be set to true. Are there any more specific instructions out there about how to do that?