RussellSpitzer commented on issue #12802: URL: https://github.com/apache/iceberg/issues/12802#issuecomment-2807422641
``` spark.conf.set("spark.sql.catalog.spark_catalog.io-impl", "org.apache.iceberg.azure.adlsv2.ADLSFileIO") ``` Sets the FileIO for the catalog named "spark_catalog" but you are reading out of a table from the catalog "local" So you should be setting ``` spark.conf.set("spark.sql.catalog.local.io-impl", "org.apache.iceberg.azure.adlsv2.ADLSFileIO") ``` -- 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: issues-unsubscr...@iceberg.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org For additional commands, e-mail: issues-h...@iceberg.apache.org