├── LICENSE ├── README.md ├── connect.sh ├── docker └── presto │ ├── Dockerfile │ ├── confd │ ├── conf.d │ │ ├── coordinator.toml │ │ ├── discovery.toml │ │ ├── jvm.toml │ │ ├── node.toml │ │ └── worker.toml │ └── templates │ │ ├── coordinator.properties.tmpl │ │ ├── discovery.properties.tmpl │ │ ├── jvm.config.tmpl │ │ ├── node.properties.tmpl │ │ └── worker.properties.tmpl │ └── entrypoint.sh └── examples ├── README.md └── deploy_presto.json /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheepkiller/presto-marathon-docker/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheepkiller/presto-marathon-docker/HEAD/README.md -------------------------------------------------------------------------------- /connect.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheepkiller/presto-marathon-docker/HEAD/connect.sh -------------------------------------------------------------------------------- /docker/presto/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheepkiller/presto-marathon-docker/HEAD/docker/presto/Dockerfile -------------------------------------------------------------------------------- /docker/presto/confd/conf.d/coordinator.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheepkiller/presto-marathon-docker/HEAD/docker/presto/confd/conf.d/coordinator.toml -------------------------------------------------------------------------------- /docker/presto/confd/conf.d/discovery.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheepkiller/presto-marathon-docker/HEAD/docker/presto/confd/conf.d/discovery.toml -------------------------------------------------------------------------------- /docker/presto/confd/conf.d/jvm.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheepkiller/presto-marathon-docker/HEAD/docker/presto/confd/conf.d/jvm.toml -------------------------------------------------------------------------------- /docker/presto/confd/conf.d/node.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheepkiller/presto-marathon-docker/HEAD/docker/presto/confd/conf.d/node.toml -------------------------------------------------------------------------------- /docker/presto/confd/conf.d/worker.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheepkiller/presto-marathon-docker/HEAD/docker/presto/confd/conf.d/worker.toml -------------------------------------------------------------------------------- /docker/presto/confd/templates/coordinator.properties.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheepkiller/presto-marathon-docker/HEAD/docker/presto/confd/templates/coordinator.properties.tmpl -------------------------------------------------------------------------------- /docker/presto/confd/templates/discovery.properties.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheepkiller/presto-marathon-docker/HEAD/docker/presto/confd/templates/discovery.properties.tmpl -------------------------------------------------------------------------------- /docker/presto/confd/templates/jvm.config.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheepkiller/presto-marathon-docker/HEAD/docker/presto/confd/templates/jvm.config.tmpl -------------------------------------------------------------------------------- /docker/presto/confd/templates/node.properties.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheepkiller/presto-marathon-docker/HEAD/docker/presto/confd/templates/node.properties.tmpl -------------------------------------------------------------------------------- /docker/presto/confd/templates/worker.properties.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheepkiller/presto-marathon-docker/HEAD/docker/presto/confd/templates/worker.properties.tmpl -------------------------------------------------------------------------------- /docker/presto/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheepkiller/presto-marathon-docker/HEAD/docker/presto/entrypoint.sh -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheepkiller/presto-marathon-docker/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/deploy_presto.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheepkiller/presto-marathon-docker/HEAD/examples/deploy_presto.json --------------------------------------------------------------------------------