Skip to content

Docker Cluster - Presto SQL is a high performance, distributed SQL query engine for big data.

Notifications You must be signed in to change notification settings

chethanuk/PrestoSQL-Docker

Repository files navigation

Docker PrestoSQL Cluster

Build image

$ make build

# make push

Launch presto

Presto cluster can be launched by using docker-compose.

$ make run

docker-compose.yml

Images are uploaded in DockerHub. These images are build with the corresponding version of Presto. command is required to pass node id information which must be unique in a cluster.

version: '3'

services:
  coordinator:
    image: chethanuk/presto-coordinator:307
    ports:
      - "8080:8080"
    container_name: "coordinator"
    command: coordinator
  worker0:
    image: chethanuk/presto-worker:307
    container_name: "worker0"
    ports:
      - "8081:8081"
    command: worker0
  worker1:
    image: chethanuk/presto-worker:307
    container_name: "worker1"
    ports:
      - "8082:8081"
    command: worker1

Run

$ docker-compose up -d

Contact the awesome Presto community to learn more about PrestoSQL

User Mailing List: presto-users Users & Development Slack: prestosql.slack.com Twitter: @prestosql #prestosql #prestodb YouTube: Presto Channel

Credits to Kai for his Awesome Work!.

I have just build custom Dockerfiles with different tag and uploaded in my docker hub for my personal testing of prestosql.io and custom changes in future..

About

Docker Cluster - Presto SQL is a high performance, distributed SQL query engine for big data.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published