lucasberlang commented on issue #7185:
URL: https://github.com/apache/hudi/issues/7185#issuecomment-1317397836
Good news now is working,
I finally fixed it by adding these properties to the core-site.xml
```xml
<?xml version="1.0" ?>
<?xml-stylesheet type="text/xsl" href="configuration.xsl"?>
<configuration>
<property>
<name>fs.s3a.access.key</name>
<value>xxxxxxxxxxxx</value>
</property>
<property>
<name>fs.s3a.secret.key</name>
<value>xxxxxxxxxxxx</value>
</property>
<!-- -->
<property>
<name>fs.s3a.awsAccessKeyId </name>
<value>xxxxxxxxxxxx</value>
</property>
<property>
<name>fs.s3a.awsSecretAccessKey</name>
<value>xxxxxxxxxxxx</value>
</property>
</configuration>
```
And with this configuration in flink-conf.yaml
```yaml
jobmanager.rpc.address: flink-jobmanager
taskmanager.numberOfTaskSlots: 2
blob.server.port: 6124
jobmanager.rpc.port: 6123
taskmanager.rpc.port: 6122
queryable-state.proxy.ports: 6125
jobmanager.memory.process.size: 1600m
taskmanager.memory.process.size: 1728m
parallelism.default: 2
scheduler-mode: reactive
execution.checkpointing.interval: 10s
```
Thanks @hussein-awala for the support!
--
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]