Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ChethanUK/PrestoSQL-Docker
Docker Cluster - Presto SQL is a high performance, distributed SQL query engine for big data.
https://github.com/ChethanUK/PrestoSQL-Docker
Last synced: 3 months ago
JSON representation
Docker Cluster - Presto SQL is a high performance, distributed SQL query engine for big data.
- Host: GitHub
- URL: https://github.com/ChethanUK/PrestoSQL-Docker
- Owner: chethanuk
- Created: 2019-04-04T11:50:52.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-05-31T18:28:48.000Z (over 5 years ago)
- Last Synced: 2024-07-20T23:45:36.785Z (4 months ago)
- Language: Dockerfile
- Size: 10.7 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 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](https://hub.docker.com/). 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](https://groups.google.com/group/presto-users)
Users & Development Slack: [prestosql.slack.com](https://join.slack.com/t/prestosql/shared_invite/enQtNTMyNzU2NzQ1NzQ4LWRhMTE4ZTA4NjM0NDA1NmFkZjEyZDJmN2MxNGY1ZTk4NmM4MzMxZDk4OGQ0NjZhNmQxMWUyNGIxMDliODk0MmU)
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..