├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── cdk-project ├── .gitignore ├── README.md ├── app.py ├── batch_celery_container │ ├── Dockerfile │ └── celeryapp │ │ ├── app.py │ │ ├── fill-batch-queue.py │ │ ├── fill_batch_queue.sh │ │ └── run_celery_worker.sh ├── cdk.json └── requirements.txt └── images ├── batch-console-jq-1.png ├── batch-console-jq-2.png ├── cw-alarms-not-ok.png ├── cw-alarms-ok.png ├── figure-1-batch-celery-architecture.png └── figure-2-step-functions-sm.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-batch-celery-worker-example/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-batch-celery-worker-example/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-batch-celery-worker-example/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-batch-celery-worker-example/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-batch-celery-worker-example/HEAD/README.md -------------------------------------------------------------------------------- /cdk-project/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-batch-celery-worker-example/HEAD/cdk-project/.gitignore -------------------------------------------------------------------------------- /cdk-project/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-batch-celery-worker-example/HEAD/cdk-project/README.md -------------------------------------------------------------------------------- /cdk-project/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-batch-celery-worker-example/HEAD/cdk-project/app.py -------------------------------------------------------------------------------- /cdk-project/batch_celery_container/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-batch-celery-worker-example/HEAD/cdk-project/batch_celery_container/Dockerfile -------------------------------------------------------------------------------- /cdk-project/batch_celery_container/celeryapp/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-batch-celery-worker-example/HEAD/cdk-project/batch_celery_container/celeryapp/app.py -------------------------------------------------------------------------------- /cdk-project/batch_celery_container/celeryapp/fill-batch-queue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-batch-celery-worker-example/HEAD/cdk-project/batch_celery_container/celeryapp/fill-batch-queue.py -------------------------------------------------------------------------------- /cdk-project/batch_celery_container/celeryapp/fill_batch_queue.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-batch-celery-worker-example/HEAD/cdk-project/batch_celery_container/celeryapp/fill_batch_queue.sh -------------------------------------------------------------------------------- /cdk-project/batch_celery_container/celeryapp/run_celery_worker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-batch-celery-worker-example/HEAD/cdk-project/batch_celery_container/celeryapp/run_celery_worker.sh -------------------------------------------------------------------------------- /cdk-project/cdk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-batch-celery-worker-example/HEAD/cdk-project/cdk.json -------------------------------------------------------------------------------- /cdk-project/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-batch-celery-worker-example/HEAD/cdk-project/requirements.txt -------------------------------------------------------------------------------- /images/batch-console-jq-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-batch-celery-worker-example/HEAD/images/batch-console-jq-1.png -------------------------------------------------------------------------------- /images/batch-console-jq-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-batch-celery-worker-example/HEAD/images/batch-console-jq-2.png -------------------------------------------------------------------------------- /images/cw-alarms-not-ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-batch-celery-worker-example/HEAD/images/cw-alarms-not-ok.png -------------------------------------------------------------------------------- /images/cw-alarms-ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-batch-celery-worker-example/HEAD/images/cw-alarms-ok.png -------------------------------------------------------------------------------- /images/figure-1-batch-celery-architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-batch-celery-worker-example/HEAD/images/figure-1-batch-celery-architecture.png -------------------------------------------------------------------------------- /images/figure-2-step-functions-sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-batch-celery-worker-example/HEAD/images/figure-2-step-functions-sm.png --------------------------------------------------------------------------------