kbendick commented on issue #3092:
URL: https://github.com/apache/iceberg/issues/3092#issuecomment-922080611


   @deepeye Can you also check if setting the config 
`iceberg.engine.hive.enabled` in your hive-site.xml or in your catalog creation 
would resolve this issue? Otherwise, we might want to patch this.
   
   I think the easiest way to do it globally would be to use the catalog config 
(so that all tables from this catalog get the property). If this doesn't work, 
then we'll need a patch.
   
   ```
   CREATE CATALOG hive_catalog WITH (
   'type'='iceberg',
   'catalog-type'='hive',
   'uri'='thrift://localhost:9083',
   'clients'='5',
   'property-version'='1',
   'io-impl'='org.apache.iceberg.aliyun.oss.OSSFileIO',
   'oss.endpoint'='{endpoint}',
   'oss.access.key.id'='{key.id}',
   'oss.access.key.secret'='{key.secret}',
   'warehouse'='oss://{bucket}/iceberg/warehouse',
   'iceberg.engine.hive.enabled' = 'true'
   );
   ```


-- 
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]



---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to