Git Product home page Git Product logo

ansible-presto's Introduction

ansible-presto

Setup Presto using Ansible - POC version.

Prepequisites

On every node you want to install Presto, you must have:

  • Linux
  • Java 8
  • Python 2.4+
  • Hive metastore

Installation steps

ansible-playbook -i inventory-coordinator setup-presto-coordinator.yml -u <remote_user> --private-key=<path_to_private_key>

Note - this playbook will automatically start Presto coordinator.

  • Run installation for workers using this command:
ansible-playbook -i inventory-worker setup-presto-worker.yml -u <remote_user> --private-key=<path_to_private_key>

Note - this playbook will automatically start Presto workers.

Start and stop Presto

If you need to start/stop presto independently on the installation process, use start-presto.yml and stop-presto.yml playbooks. Start command:

ansible-playbook -i inventory-coordinator start-presto.yml -u <remote_user> --private-key=<path_to_private_key>
ansible-playbook -i inventory-worker start-presto.yml -u <remote_user> --private-key=<path_to_private_key>

Stop command:

ansible-playbook -i inventory-coordinator stop-presto.yml -u <remote_user> --private-key=<path_to_private_key>
ansible-playbook -i inventory-worker stop-presto.yml -u <remote_user> --private-key=<path_to_private_key>

Connect and run queries

Download Presto command line interface and run queries:

wget https://repo1.maven.org/maven2/com/facebook/presto/presto-cli/0.185/presto-cli-0.185-executable.jar
mv presto-cli-0.185-executable.jar presto
chmod +x presto
./presto --server <COORDINATOR_HOSTNAME>:8080 --catalog hive --schema default
presto:default>

ansible-presto's People

Contributors

elisska avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.