mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-12-04 10:34:49 +02:00
.. | ||
conf | ||
docker-compose.yml | ||
Dockerfile | ||
Dockerfile.alpine | ||
README.md |
presto
Presto is a distributed SQL query engine designed to query large data sets distributed over one or more heterogeneous data sources.
docker-compose.yaml
presto:
image: vimagick/presto
ports:
- "8080:8080"
volumes:
- ./conf/standalone:/opt/presto/etc
- ./data/standalone:/data
restart: unless-stopped
up and running
$ docker-comopse up -d
$ docker-compose exec presto presto --server localhost:8080 --catalog tpch
>>> show schemas;
>>> show tables from tiny;
>>> select * from tiny.customer limit 10;
>>> quit
$ curl http://localhost:8080/v1/service/presto/general