├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── article-images ├── Screenshot 2023-03-02 at 3.40.15 PM.png ├── Screenshot 2023-03-02 at 3.52.25 PM.png ├── Screenshot 2023-03-02 at 4.20.50 PM.png ├── Screenshot 2023-03-02 at 4.36.35 PM.png ├── Screenshot 2023-03-02 at 4.37.40 PM.png ├── Screenshot 2023-03-02 at 4.41.33 PM.png ├── Screenshot 2023-03-02 at 4.44.15 PM.png ├── Screenshot 2023-03-02 at 5.17.58 PM.png ├── Screenshot 2023-03-02 at 5.20.10 PM.png ├── Screenshot 2023-03-02 at 5.25.25 PM.png └── Screenshot 2023-03-02 at 5.27.44 PM.png ├── conf ├── core-site.xml └── metastore-site.xml ├── docker-compose.yml ├── scripts └── entrypoint.sh └── trino-etc ├── catalog ├── hive.properties ├── mydelta.properties ├── tpcds.properties └── tpch.properties ├── config.properties ├── jvm.config ├── log.properties └── node.properties /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fithisux/experiment-with-trino-minio-hive/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fithisux/experiment-with-trino-minio-hive/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fithisux/experiment-with-trino-minio-hive/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fithisux/experiment-with-trino-minio-hive/HEAD/README.md -------------------------------------------------------------------------------- /article-images/Screenshot 2023-03-02 at 3.40.15 PM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fithisux/experiment-with-trino-minio-hive/HEAD/article-images/Screenshot 2023-03-02 at 3.40.15 PM.png -------------------------------------------------------------------------------- /article-images/Screenshot 2023-03-02 at 3.52.25 PM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fithisux/experiment-with-trino-minio-hive/HEAD/article-images/Screenshot 2023-03-02 at 3.52.25 PM.png -------------------------------------------------------------------------------- /article-images/Screenshot 2023-03-02 at 4.20.50 PM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fithisux/experiment-with-trino-minio-hive/HEAD/article-images/Screenshot 2023-03-02 at 4.20.50 PM.png -------------------------------------------------------------------------------- /article-images/Screenshot 2023-03-02 at 4.36.35 PM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fithisux/experiment-with-trino-minio-hive/HEAD/article-images/Screenshot 2023-03-02 at 4.36.35 PM.png -------------------------------------------------------------------------------- /article-images/Screenshot 2023-03-02 at 4.37.40 PM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fithisux/experiment-with-trino-minio-hive/HEAD/article-images/Screenshot 2023-03-02 at 4.37.40 PM.png -------------------------------------------------------------------------------- /article-images/Screenshot 2023-03-02 at 4.41.33 PM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fithisux/experiment-with-trino-minio-hive/HEAD/article-images/Screenshot 2023-03-02 at 4.41.33 PM.png -------------------------------------------------------------------------------- /article-images/Screenshot 2023-03-02 at 4.44.15 PM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fithisux/experiment-with-trino-minio-hive/HEAD/article-images/Screenshot 2023-03-02 at 4.44.15 PM.png -------------------------------------------------------------------------------- /article-images/Screenshot 2023-03-02 at 5.17.58 PM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fithisux/experiment-with-trino-minio-hive/HEAD/article-images/Screenshot 2023-03-02 at 5.17.58 PM.png -------------------------------------------------------------------------------- /article-images/Screenshot 2023-03-02 at 5.20.10 PM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fithisux/experiment-with-trino-minio-hive/HEAD/article-images/Screenshot 2023-03-02 at 5.20.10 PM.png -------------------------------------------------------------------------------- /article-images/Screenshot 2023-03-02 at 5.25.25 PM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fithisux/experiment-with-trino-minio-hive/HEAD/article-images/Screenshot 2023-03-02 at 5.25.25 PM.png -------------------------------------------------------------------------------- /article-images/Screenshot 2023-03-02 at 5.27.44 PM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fithisux/experiment-with-trino-minio-hive/HEAD/article-images/Screenshot 2023-03-02 at 5.27.44 PM.png -------------------------------------------------------------------------------- /conf/core-site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fithisux/experiment-with-trino-minio-hive/HEAD/conf/core-site.xml -------------------------------------------------------------------------------- /conf/metastore-site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fithisux/experiment-with-trino-minio-hive/HEAD/conf/metastore-site.xml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fithisux/experiment-with-trino-minio-hive/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /scripts/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fithisux/experiment-with-trino-minio-hive/HEAD/scripts/entrypoint.sh -------------------------------------------------------------------------------- /trino-etc/catalog/hive.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fithisux/experiment-with-trino-minio-hive/HEAD/trino-etc/catalog/hive.properties -------------------------------------------------------------------------------- /trino-etc/catalog/mydelta.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fithisux/experiment-with-trino-minio-hive/HEAD/trino-etc/catalog/mydelta.properties -------------------------------------------------------------------------------- /trino-etc/catalog/tpcds.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fithisux/experiment-with-trino-minio-hive/HEAD/trino-etc/catalog/tpcds.properties -------------------------------------------------------------------------------- /trino-etc/catalog/tpch.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fithisux/experiment-with-trino-minio-hive/HEAD/trino-etc/catalog/tpch.properties -------------------------------------------------------------------------------- /trino-etc/config.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fithisux/experiment-with-trino-minio-hive/HEAD/trino-etc/config.properties -------------------------------------------------------------------------------- /trino-etc/jvm.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fithisux/experiment-with-trino-minio-hive/HEAD/trino-etc/jvm.config -------------------------------------------------------------------------------- /trino-etc/log.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fithisux/experiment-with-trino-minio-hive/HEAD/trino-etc/log.properties -------------------------------------------------------------------------------- /trino-etc/node.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fithisux/experiment-with-trino-minio-hive/HEAD/trino-etc/node.properties --------------------------------------------------------------------------------