apache drill s3/minio s3 storage 配置

s3 使用 file类型, 注意 ip:port 不能用 域名/ host, s3 会解析出错, 把 bucket 拼接在 域名/ host 前面, 用 ip 就不会出现该问题

"type": "file",
  "connection": "s3a://bucket_name/",
  "config": {
    "fs.s3a.access.key": "user_name",
    "fs.s3a.secret.key": "pwd",
    "fs.s3a.endpoint": "http://ip:port",
    "fs.s3a.connection.ssl.enabled": "false",
    "fs.s3a.path.style.access": "true"
  },