Skip to content

Commit

Permalink
Translate docs/content/features/schedule-model.en.md
Browse files Browse the repository at this point in the history
  • Loading branch information
zhaoyuguang committed Jul 17, 2020
1 parent 5a8ce8e commit 2287b6f
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion docs/content/features/schedule-model.en.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,15 @@ weight = 1
chapter = true
+++

TODO
Unlike most job platforms, ElasticJob's scheduling model is divided into in-process scheduling ElasticJob Lite that supports thread-level scheduling, and ElasticJob Cloud for process-level scheduling.

## In-process scheduling

ElasticJob Lite is a thread-level scheduling framework for in-process. Through it, Job can be transparently combined with business application systems.
It can be easily used in conjunction with Java frameworks such as Spring and Dubbo. Spring DI Beans can be freely used in Job, such as data source connection pool and Dubbo remote service, etc., which is more convenient for business development.

## Process-level scheduling

ElasticJob Cloud has two methods: in-process scheduling and process-level scheduling.
Because ElasticJob Cloud can control the resources of the job server, its job types can be divided into resident tasks and transient tasks.
The resident task is similar to ElasticJob Lite, which is an in-process scheduling; the transient task is completely different. It fully utilizes the peak-cutting and valley-filling capabilities of resource allocation, and is a process-level scheduling. Each task will start a new process.

0 comments on commit 2287b6f

Please sign in to comment.