Hi,
it is unclear to me why this configuration does not work. I followed the documentation. Minio bucket credentials are setup and the tool is accessible. Both tools are running on the same VM to which I connect via SSH.
Encrypt connection is off.
Access keys are correct.
Compatibility mode is on.
Added properties:
fs.s3a.path.style.access: true
fs.s3a.endpoint: http://localhost:9000
Dremio was started with:
docker run -p 9047:9047 -p 31010:31010 -p 45678:45678 -d dremio/dremio-oss
and Minio with:
docker run \
-d \
-p 9000:9000 \
-p 9001:9001 \
--name minio \
-v ~/minio/data:/data \
-e "MINIO_ROOT_USER=admin" \
-e "MINIO_ROOT_PASSWORD=..." \
quay.io/minio/minio server /data --console-address ":9001"
Error message is: Could not connect to S3 source. Check your S3 data source settings and credentials.