mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-11-21 18:06:36 +02:00
.. | ||
data | ||
docker-compose.yml | ||
README.md |
trino
Trino is a distributed SQL query engine designed to query large data sets distributed over one or more heterogeneous data sources.
$ mkdir data/{etc,log}
$ chown -R 1000:1000 data
$ docker-compose up -d
$ docker-compose exec trino trino
>>> show catalogs;
>>> show schemas from system;
>>> show tables from system.runtime;
>>> select * from system.runtime.queries;
>>> quit