├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── hippolyte ├── __init__.py ├── aws_utils.py ├── config_util.py ├── dynamodb_backup.py ├── dynamodb_booster.py ├── monitor.py ├── multiple.template ├── pipeline_scheduler.py ├── pipeline_translator.py ├── project_config.py └── utils.py ├── requirements-dev.txt ├── requirements.txt ├── serverless.yml └── tests ├── __init__.py ├── resources └── test_backup_metadata.json ├── test.py ├── test_dynamodb_backup.py ├── test_dynamodb_booster.py ├── test_monitor.py └── test_utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/hippolyte/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/hippolyte/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/hippolyte/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/hippolyte/HEAD/README.md -------------------------------------------------------------------------------- /hippolyte/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = "roman.subik" 2 | -------------------------------------------------------------------------------- /hippolyte/aws_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/hippolyte/HEAD/hippolyte/aws_utils.py -------------------------------------------------------------------------------- /hippolyte/config_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/hippolyte/HEAD/hippolyte/config_util.py -------------------------------------------------------------------------------- /hippolyte/dynamodb_backup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/hippolyte/HEAD/hippolyte/dynamodb_backup.py -------------------------------------------------------------------------------- /hippolyte/dynamodb_booster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/hippolyte/HEAD/hippolyte/dynamodb_booster.py -------------------------------------------------------------------------------- /hippolyte/monitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/hippolyte/HEAD/hippolyte/monitor.py -------------------------------------------------------------------------------- /hippolyte/multiple.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/hippolyte/HEAD/hippolyte/multiple.template -------------------------------------------------------------------------------- /hippolyte/pipeline_scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/hippolyte/HEAD/hippolyte/pipeline_scheduler.py -------------------------------------------------------------------------------- /hippolyte/pipeline_translator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/hippolyte/HEAD/hippolyte/pipeline_translator.py -------------------------------------------------------------------------------- /hippolyte/project_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/hippolyte/HEAD/hippolyte/project_config.py -------------------------------------------------------------------------------- /hippolyte/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/hippolyte/HEAD/hippolyte/utils.py -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/hippolyte/HEAD/requirements-dev.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | pystache==0.5.4 2 | retrying==1.3.3 -------------------------------------------------------------------------------- /serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/hippolyte/HEAD/serverless.yml -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/resources/test_backup_metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/hippolyte/HEAD/tests/resources/test_backup_metadata.json -------------------------------------------------------------------------------- /tests/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/hippolyte/HEAD/tests/test.py -------------------------------------------------------------------------------- /tests/test_dynamodb_backup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/hippolyte/HEAD/tests/test_dynamodb_backup.py -------------------------------------------------------------------------------- /tests/test_dynamodb_booster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/hippolyte/HEAD/tests/test_dynamodb_booster.py -------------------------------------------------------------------------------- /tests/test_monitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/hippolyte/HEAD/tests/test_monitor.py -------------------------------------------------------------------------------- /tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/hippolyte/HEAD/tests/test_utils.py --------------------------------------------------------------------------------