就在1.18 号官方终于发布了20 版本的社区版(19.3 也提供了)大家可以体验了

docker-compose 运行

version: '3'
services:
  dremio:
     image: dremio/dremio-oss:20.0.0
     ports:
     - "9047:9047"
     - "31010:31010"
  s3:
    image: minio/minio
    environment:
      - "MINIO_ACCESS_KEY=minio"
      - "MINIO_SECRET_KEY=minio123"
    command: server /data --console-address ":9001"
    ports:
      - "9000:9000"
      - "9001:9001"

说明

官方代码也发布了,实际上感觉还是社区大家频繁的反馈官方才发布的,dremio 社区真做的不是很好

参考资料

https://download.dremio.com/

相关文章:

  • 2021-06-19
  • 2021-07-12
  • 2022-01-17
  • 2021-07-22
  • 2021-09-27
  • 2021-07-01
  • 2022-02-27
猜你喜欢
  • 2022-12-23
  • 2021-11-18
  • 2021-05-29
  • 2021-06-01
  • 2021-08-05
  • 2021-05-15
  • 2021-09-15
相关资源
相似解决方案