HeartSaVioR commented on issue #1359: URL: https://github.com/apache/iceberg/issues/1359#issuecomment-676027734
``` --conf spark.sql.catalog.spark_catalog=org.apache.iceberg.spark.SparkSessionCatalog --conf spark.sql.catalog.spark_catalog.type=hive --conf spark.sql.catalog.local=org.apache.iceberg.spark.SparkCatalog --conf spark.sql.catalog.local.type=hadoop --conf spark.sql.catalog.local.uri=hdfs://nameservice1:8020/user/spark2/iceberg ``` Once we group configs by catalog then configs for `local` catalog are following: ``` --conf spark.sql.catalog.local=org.apache.iceberg.spark.SparkCatalog --conf spark.sql.catalog.local.type=hadoop --conf spark.sql.catalog.local.uri=hdfs://nameservice1:8020/user/spark2/iceberg ``` `uri` is for hive-type catalog. hadoop-type catalog requires `warehouse`. Please refer https://iceberg.apache.org/spark/#configuring-catalogs to check required configurations. ---------------------------------------------------------------- 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. For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
