Planar is an enterprise scheduler service.
It’s providing peripheral tools and infrastructure to met all of schedule jobs needs (small to enterprise systems).
Scheduler engine is based on Quartz.NET
Below you can see the main key features of Planar:
You can host and manage Planar directly on your pc by using Docker.
Docker is an open source containerization platform. It enables developers to package applications into standardized executable components called containers
-
Create an installation folder called
Planar
for deployment and data storage. -
cd
into the installation folder. -
Download the docker-compose.yml file and place it into the
Planar
installation folder. -
Start the Docker container by running the command below.12
docker-compose -p planar up -d
-
Open terminal or command line
-
Connect to service container shell by running the command below
docker exec -it planar-service sh
-
Run the Planar CLI by running the command below
planar-cli
-
The following CLI welcome screen should appear
- Run
trace ls
command in Planar CLI to see list of logs - Open http://localhost:2306 to get the api documentation.
- Open http://localhost:2306/swagger to get swagger page
Follow the Write Your First Planar Job WiKi documatation to create, test, deploy & invoke your first planar job.