1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-29 18:21:24 +00:00
dockerfiles/trino/README.md
2021-11-26 16:14:37 +08:00

19 lines
457 B
Markdown

trino
=====
[Trino][1] is a distributed SQL query engine designed to query large data sets
distributed over one or more heterogeneous data sources.
```bash
$ mkdir -m 777 data
$ docker-compose up -d
$ docker-compose exec trino trino
>>> show catalogs;
>>> show schemas from jmx;
>>> show tables from jmx.current;
>>> select * from jmx.current."java.lang:type=operatingsystem";
>>> quit
```
[1]: https://trino.io/docs/current/installation/deployment.html