You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Nov 20, 2020. It is now read-only.
Mahmoud Ben Hassine edited this page Jun 23, 2018
·
3 revisions
What is Easy Jobs?
Easy Jobs is a simple job server for Java. It allows you to define jobs and request their executions through a restful API.
How does it work?
Easy Jobs stores meta-data of jobs in a relational database. Three tables are used: job, job_request and job_execution.
The job server polls the job_request table regularly looking for pending job requests.
When a job request comes in, the job server creates a job instance of the requested job and executes it:
The job server uses a pool of worker threads to execute jobs.
Job requests are submitted through a restful API.