├── .gitignore ├── .travis.yml ├── HISTORY.rst ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.md ├── configuration ├── config.properties.xml ├── connectors.properties.xml ├── jvm.config.xml └── node.properties.xml ├── docs ├── Makefile ├── conf.py ├── developers.rst ├── getting-help.rst ├── getting-started.rst ├── index.rst └── known-issues.rst ├── metainfo.xml ├── package ├── __init__.py └── scripts │ ├── __init__.py │ ├── common.py │ ├── download.ini │ ├── params.py │ ├── presto_cli.py │ ├── presto_client.py │ ├── presto_coordinator.py │ └── presto_worker.py ├── requirements.txt ├── setup.py ├── tests ├── __init__.py ├── resource_management │ ├── __init__.py │ ├── core │ │ ├── __init__.py │ │ ├── exceptions.py │ │ └── resources │ │ │ ├── __init__.py │ │ │ └── system.py │ └── libraries │ │ ├── __init__.py │ │ └── script │ │ ├── __init__.py │ │ └── script.py ├── resources │ ├── valid_rest_response_level1.txt │ └── valid_rest_response_level2.txt ├── test_cli.py ├── test_common.py ├── test_coordinator.py ├── test_presto_client.py └── test_worker.py ├── themes └── theme.json └── tox.ini /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prestodb/ambari-presto-service/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prestodb/ambari-presto-service/HEAD/.travis.yml -------------------------------------------------------------------------------- /HISTORY.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prestodb/ambari-presto-service/HEAD/HISTORY.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prestodb/ambari-presto-service/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prestodb/ambari-presto-service/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prestodb/ambari-presto-service/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prestodb/ambari-presto-service/HEAD/README.md -------------------------------------------------------------------------------- /configuration/config.properties.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prestodb/ambari-presto-service/HEAD/configuration/config.properties.xml -------------------------------------------------------------------------------- /configuration/connectors.properties.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prestodb/ambari-presto-service/HEAD/configuration/connectors.properties.xml -------------------------------------------------------------------------------- /configuration/jvm.config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prestodb/ambari-presto-service/HEAD/configuration/jvm.config.xml -------------------------------------------------------------------------------- /configuration/node.properties.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prestodb/ambari-presto-service/HEAD/configuration/node.properties.xml -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prestodb/ambari-presto-service/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prestodb/ambari-presto-service/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/developers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prestodb/ambari-presto-service/HEAD/docs/developers.rst -------------------------------------------------------------------------------- /docs/getting-help.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prestodb/ambari-presto-service/HEAD/docs/getting-help.rst -------------------------------------------------------------------------------- /docs/getting-started.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prestodb/ambari-presto-service/HEAD/docs/getting-started.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prestodb/ambari-presto-service/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/known-issues.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prestodb/ambari-presto-service/HEAD/docs/known-issues.rst -------------------------------------------------------------------------------- /metainfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prestodb/ambari-presto-service/HEAD/metainfo.xml -------------------------------------------------------------------------------- /package/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /package/scripts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /package/scripts/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prestodb/ambari-presto-service/HEAD/package/scripts/common.py -------------------------------------------------------------------------------- /package/scripts/download.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prestodb/ambari-presto-service/HEAD/package/scripts/download.ini -------------------------------------------------------------------------------- /package/scripts/params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prestodb/ambari-presto-service/HEAD/package/scripts/params.py -------------------------------------------------------------------------------- /package/scripts/presto_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prestodb/ambari-presto-service/HEAD/package/scripts/presto_cli.py -------------------------------------------------------------------------------- /package/scripts/presto_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prestodb/ambari-presto-service/HEAD/package/scripts/presto_client.py -------------------------------------------------------------------------------- /package/scripts/presto_coordinator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prestodb/ambari-presto-service/HEAD/package/scripts/presto_coordinator.py -------------------------------------------------------------------------------- /package/scripts/presto_worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prestodb/ambari-presto-service/HEAD/package/scripts/presto_worker.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prestodb/ambari-presto-service/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prestodb/ambari-presto-service/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/resource_management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/resource_management/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/resource_management/core/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prestodb/ambari-presto-service/HEAD/tests/resource_management/core/exceptions.py -------------------------------------------------------------------------------- /tests/resource_management/core/resources/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/resource_management/core/resources/system.py: -------------------------------------------------------------------------------- 1 | def Execute(): 2 | pass 3 | -------------------------------------------------------------------------------- /tests/resource_management/libraries/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/resource_management/libraries/script/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/resource_management/libraries/script/script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prestodb/ambari-presto-service/HEAD/tests/resource_management/libraries/script/script.py -------------------------------------------------------------------------------- /tests/resources/valid_rest_response_level1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prestodb/ambari-presto-service/HEAD/tests/resources/valid_rest_response_level1.txt -------------------------------------------------------------------------------- /tests/resources/valid_rest_response_level2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prestodb/ambari-presto-service/HEAD/tests/resources/valid_rest_response_level2.txt -------------------------------------------------------------------------------- /tests/test_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prestodb/ambari-presto-service/HEAD/tests/test_cli.py -------------------------------------------------------------------------------- /tests/test_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prestodb/ambari-presto-service/HEAD/tests/test_common.py -------------------------------------------------------------------------------- /tests/test_coordinator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prestodb/ambari-presto-service/HEAD/tests/test_coordinator.py -------------------------------------------------------------------------------- /tests/test_presto_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prestodb/ambari-presto-service/HEAD/tests/test_presto_client.py -------------------------------------------------------------------------------- /tests/test_worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prestodb/ambari-presto-service/HEAD/tests/test_worker.py -------------------------------------------------------------------------------- /themes/theme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prestodb/ambari-presto-service/HEAD/themes/theme.json -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prestodb/ambari-presto-service/HEAD/tox.ini --------------------------------------------------------------------------------