pan3793 edited a comment on issue #2005: URL: https://github.com/apache/incubator-kyuubi/issues/2005#issuecomment-1058115302
From the log, I think you added the following configurations in your `kyuubi-defaults.conf` or `spark-defauls.conf` ``` spark.sql.hive.metastore.version=2.1.1 spark.sql.hive.metastore.jars=/opt/cloudera/parcels/CDH/lib/hive/lib/* ``` it indicates that spark use the hive 2.1.1-cdh6 client jars to communicate to the HMS, which generally reasonable, but you can try to remove these 2 confs, then spark will use the build-in hive 2.3 jars to do that, iceberg should work with it. PS: The hive metastore client communicate to HMS through thrift protocol, I don't know if 2.3 client compatible with 2.1 server(and 2.1.1-cdh has some difference with the apache version), please be careful to try it in your production environment. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
