Guide to setting up Apache Iceberg + Trino locally + writing data to Iceberg in real-using the new iceberg-kafka-connector.
In case anyone needs it, I had to change the `iceberg.properties` file to:
```
connector.name=iceberg
iceberg.catalog.type=rest
iceberg.rest-catalog.uri=http://rest:8181
iceberg.rest-catalog.warehouse=s3://demo-iceberg/
iceberg.file-format=PARQUET
# https://trino.io/docs/current/object-storage/file-system-s3.html
fs.native-s3.enabled=true
s3.endpoint=http://minio:9000
s3.region=eu-south-2
s3.path-style-access=true
#hive.s3.aws-access-key=admin
#hive.s3.aws-secret-key=password
In case anyone needs it, I had to change the `iceberg.properties` file to:
```
connector.name=iceberg
iceberg.catalog.type=rest
iceberg.rest-catalog.uri=http://rest:8181
iceberg.rest-catalog.warehouse=s3://demo-iceberg/
iceberg.file-format=PARQUET
# https://trino.io/docs/current/object-storage/file-system-s3.html
fs.native-s3.enabled=true
s3.endpoint=http://minio:9000
s3.region=eu-south-2
s3.path-style-access=true
#hive.s3.aws-access-key=admin
#hive.s3.aws-secret-key=password
```