qining-mj commented on PR #5379: URL: https://github.com/apache/paimon/pull/5379#issuecomment-2768014005
## Azure Download [paimon-Azure-< version >.jar. ### Flink If you have already configured Azure access through Spark (Via Hadoop FileSystem), here you can skip the following configuration. Put `[paimon-azure-< version >.jar` into `lib` directory of your Flink home, and create catalog: ```sql CREATE CATALOG my_catalog WITH ( 'type' = 'paimon', 'warehouse' = 'wasb://,<container>@<account>.blob.core.windows.net/<path>', 'fs.azure.account.key.Account.blob.core.windows.net' = 'yyy' ); ``` ### Spark If you have already configured Azure access through Spark (Via Hadoop FileSystem), here you can skip the following configuration. Place `paimon-azure-{{< version >}}.jar` together with `paimon-spark-{{< version >}}.jar` under Spark's jars directory, and start like ```shell spark-sql \ --conf spark.sql.catalog.paimon=org.apache.paimon.spark.SparkCatalog \ --conf spark.sql.catalog.paimon.warehouse=wasb://,<container>@<account>.blob.core.windows.net/<path> \ --conf fs.azure.account.key.Account.blob.core.windows.net=yyy \ ``` -- 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...@paimon.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org