Task Scheduler & Orchestrator Library
Team ID: AWS-T8 | Team Members: Sanskar Agarwal & Saksham Arora
Introduction •
Key Features •
How To Use •
Tech Stack •
Documentation •
Video •
Snapshots
The aim of our project is to create a Task Scheduler, that takes in a task in the form of a link to AWS lambda function & executes it on the specified time, & an Orchestrator that can schedule an orchestration. The orchestrator schedules a set of tasks collectively. These tasks are executed in a sequential manner, & after the successful execution of each task a condition check task is executed.
Why do we need this?
Basically companies have multiple workflows that consist of a set of asynchronous tasks that need to be scheduled and executed based on events or other triggers. This is where a task orchestrator and scheduler comes in handy.
Here we expose an API through which users can schedule the tasks & modify them.
To clone and run this application, you’ll need Git and Docker. From your command line:
# Clone this repository
$ git clone https://github.com/Crio-Winter-of-Doing-2021/AWS-T8.git
# Go into the repository
$ cd AWS-T8
# To create the docker images
$ chmod +x setup.sh
$ sudo ./setup.sh
# To start the scheduler & orchestrator(run docker images as containers)
$ chmod +x start.sh
$ sudo ./start.sh
# To stop the docker images
$ chmod +x stop.sh
$ sudo ./stop.sh