├── .gitignore ├── LICENSE ├── README.md ├── assets ├── client_user_data.sh ├── hive-site.xml ├── nginx.conf ├── user_data.sh ├── zeppelin-interpreter.json └── zeppelin-jdbc-0.11.0-SNAPSHOT.jar ├── catalogs ├── blackhole.properties ├── glue.properties ├── hive.properties ├── iceberg.properties ├── jmx.properties ├── memory.properties ├── mysql.properties ├── tpcds.properties └── tpch.properties ├── packer ├── README.md ├── presto.json ├── presto │ ├── install-hive.sh │ ├── install-java.sh │ ├── install-presto-cli.sh │ ├── install-presto.sh │ ├── install-trino-cli.sh │ ├── install-trino.sh │ └── update-machine.sh ├── prestoclients.json ├── prestoclients │ ├── install-redash.sh │ ├── install-superset.sh │ ├── install-zeppelin.sh │ └── update-machine.sh └── variables.json └── terraform-aws ├── README.md ├── clients.tf ├── coordinator.tf ├── disks.tf ├── iam.tf ├── main.tf ├── output.tf ├── variables.tf ├── versions.tf ├── vpc.tf ├── workers-spot.tf └── workers.tf /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigDataBoutique/presto-cloud-deploy/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigDataBoutique/presto-cloud-deploy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigDataBoutique/presto-cloud-deploy/HEAD/README.md -------------------------------------------------------------------------------- /assets/client_user_data.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigDataBoutique/presto-cloud-deploy/HEAD/assets/client_user_data.sh -------------------------------------------------------------------------------- /assets/hive-site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigDataBoutique/presto-cloud-deploy/HEAD/assets/hive-site.xml -------------------------------------------------------------------------------- /assets/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigDataBoutique/presto-cloud-deploy/HEAD/assets/nginx.conf -------------------------------------------------------------------------------- /assets/user_data.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigDataBoutique/presto-cloud-deploy/HEAD/assets/user_data.sh -------------------------------------------------------------------------------- /assets/zeppelin-interpreter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigDataBoutique/presto-cloud-deploy/HEAD/assets/zeppelin-interpreter.json -------------------------------------------------------------------------------- /assets/zeppelin-jdbc-0.11.0-SNAPSHOT.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigDataBoutique/presto-cloud-deploy/HEAD/assets/zeppelin-jdbc-0.11.0-SNAPSHOT.jar -------------------------------------------------------------------------------- /catalogs/blackhole.properties: -------------------------------------------------------------------------------- 1 | connector.name=blackhole 2 | -------------------------------------------------------------------------------- /catalogs/glue.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigDataBoutique/presto-cloud-deploy/HEAD/catalogs/glue.properties -------------------------------------------------------------------------------- /catalogs/hive.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigDataBoutique/presto-cloud-deploy/HEAD/catalogs/hive.properties -------------------------------------------------------------------------------- /catalogs/iceberg.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigDataBoutique/presto-cloud-deploy/HEAD/catalogs/iceberg.properties -------------------------------------------------------------------------------- /catalogs/jmx.properties: -------------------------------------------------------------------------------- 1 | connector.name=jmx -------------------------------------------------------------------------------- /catalogs/memory.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigDataBoutique/presto-cloud-deploy/HEAD/catalogs/memory.properties -------------------------------------------------------------------------------- /catalogs/mysql.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigDataBoutique/presto-cloud-deploy/HEAD/catalogs/mysql.properties -------------------------------------------------------------------------------- /catalogs/tpcds.properties: -------------------------------------------------------------------------------- 1 | connector.name=tpcds -------------------------------------------------------------------------------- /catalogs/tpch.properties: -------------------------------------------------------------------------------- 1 | connector.name=tpch -------------------------------------------------------------------------------- /packer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigDataBoutique/presto-cloud-deploy/HEAD/packer/README.md -------------------------------------------------------------------------------- /packer/presto.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigDataBoutique/presto-cloud-deploy/HEAD/packer/presto.json -------------------------------------------------------------------------------- /packer/presto/install-hive.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigDataBoutique/presto-cloud-deploy/HEAD/packer/presto/install-hive.sh -------------------------------------------------------------------------------- /packer/presto/install-java.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigDataBoutique/presto-cloud-deploy/HEAD/packer/presto/install-java.sh -------------------------------------------------------------------------------- /packer/presto/install-presto-cli.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigDataBoutique/presto-cloud-deploy/HEAD/packer/presto/install-presto-cli.sh -------------------------------------------------------------------------------- /packer/presto/install-presto.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigDataBoutique/presto-cloud-deploy/HEAD/packer/presto/install-presto.sh -------------------------------------------------------------------------------- /packer/presto/install-trino-cli.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigDataBoutique/presto-cloud-deploy/HEAD/packer/presto/install-trino-cli.sh -------------------------------------------------------------------------------- /packer/presto/install-trino.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigDataBoutique/presto-cloud-deploy/HEAD/packer/presto/install-trino.sh -------------------------------------------------------------------------------- /packer/presto/update-machine.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigDataBoutique/presto-cloud-deploy/HEAD/packer/presto/update-machine.sh -------------------------------------------------------------------------------- /packer/prestoclients.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigDataBoutique/presto-cloud-deploy/HEAD/packer/prestoclients.json -------------------------------------------------------------------------------- /packer/prestoclients/install-redash.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigDataBoutique/presto-cloud-deploy/HEAD/packer/prestoclients/install-redash.sh -------------------------------------------------------------------------------- /packer/prestoclients/install-superset.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigDataBoutique/presto-cloud-deploy/HEAD/packer/prestoclients/install-superset.sh -------------------------------------------------------------------------------- /packer/prestoclients/install-zeppelin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigDataBoutique/presto-cloud-deploy/HEAD/packer/prestoclients/install-zeppelin.sh -------------------------------------------------------------------------------- /packer/prestoclients/update-machine.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigDataBoutique/presto-cloud-deploy/HEAD/packer/prestoclients/update-machine.sh -------------------------------------------------------------------------------- /packer/variables.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigDataBoutique/presto-cloud-deploy/HEAD/packer/variables.json -------------------------------------------------------------------------------- /terraform-aws/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigDataBoutique/presto-cloud-deploy/HEAD/terraform-aws/README.md -------------------------------------------------------------------------------- /terraform-aws/clients.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigDataBoutique/presto-cloud-deploy/HEAD/terraform-aws/clients.tf -------------------------------------------------------------------------------- /terraform-aws/coordinator.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigDataBoutique/presto-cloud-deploy/HEAD/terraform-aws/coordinator.tf -------------------------------------------------------------------------------- /terraform-aws/disks.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigDataBoutique/presto-cloud-deploy/HEAD/terraform-aws/disks.tf -------------------------------------------------------------------------------- /terraform-aws/iam.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigDataBoutique/presto-cloud-deploy/HEAD/terraform-aws/iam.tf -------------------------------------------------------------------------------- /terraform-aws/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigDataBoutique/presto-cloud-deploy/HEAD/terraform-aws/main.tf -------------------------------------------------------------------------------- /terraform-aws/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigDataBoutique/presto-cloud-deploy/HEAD/terraform-aws/output.tf -------------------------------------------------------------------------------- /terraform-aws/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigDataBoutique/presto-cloud-deploy/HEAD/terraform-aws/variables.tf -------------------------------------------------------------------------------- /terraform-aws/versions.tf: -------------------------------------------------------------------------------- 1 | 2 | terraform { 3 | required_version = ">= 0.12" 4 | } 5 | -------------------------------------------------------------------------------- /terraform-aws/vpc.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigDataBoutique/presto-cloud-deploy/HEAD/terraform-aws/vpc.tf -------------------------------------------------------------------------------- /terraform-aws/workers-spot.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigDataBoutique/presto-cloud-deploy/HEAD/terraform-aws/workers-spot.tf -------------------------------------------------------------------------------- /terraform-aws/workers.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigDataBoutique/presto-cloud-deploy/HEAD/terraform-aws/workers.tf --------------------------------------------------------------------------------