Open sunscorch opened 1 year ago
It should work if you create a core-site.xml file under src/main/resources in your application with the following content:
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<configuration>
<property>
<name>fs.azure</name>
<value>org.apache.hadoop.fs.azure.NativeAzureFileSystem</value>
</property>
<property>
<name>fs.azure.account.key.leisun1992.dfs.core.windows.net</name>
<value>${env.AZURE_ACCOUNT_KEY}</value>
</property>
</configuration>
Flink should pick up the configuration and authenticate when doing the writing to ADLS Gen2.
Bug
Which Delta project/connector is this regarding?
Describe the problem
I try a few ways to authenticate adls2 when I use
Steps to reproduce
Please include copy-pastable code snippets if possible.
Observed results
Expected results
May I ask how to set the adls2 authentication in this code? I also try
It seems it does not work as well