commit | d9567d48bd9fa20478b0573d7b33a25cfb69f679 | [log] [tgz] |
---|---|---|
author | terrymanu <terrymanu@163.com> | Mon Dec 18 20:48:11 2017 +0800 |
committer | terrymanu <terrymanu@163.com> | Mon Dec 18 20:48:11 2017 +0800 |
tree | 9cfa177cd06a94aeb2201c75aa3f49ef39296e1b | |
parent | 2189c83e7b262f03a21f23aab3a59730b174fcd4 [diff] |
split elastic-job-cloud as a independent repo
Elastic-Job is a distributed scheduled job solution. Elastic-Job is composited from 2 independent sub projects: Elastic-Job-Lite and Elastic-Job-Cloud.
Elastic-Job-Cloud is a Mesos framework which use Mesos + Docker(todo) to manage and isolate resources and processes.
Elastic-Job-Lite and Elastic-Job-Cloud provide unified API. Developers only need code one time, then decide to deploy Lite or Cloud as you want.
<!-- import elastic-job cloud executor --> <dependency> <groupId>io.elasticjob</groupId> <artifactId>elastic-job-cloud-executor</artifactId> <version>${lasted.release.version}</version> </dependency>
Same with Elastic-Job-Lite
curl -l -H "Content-type: application/json" -X POST -d '{"appName":"yourAppName","appURL":"http://app_host:8080/foo-job.tar.gz","cpuCount":0.1,"memoryMB":64.0,"bootstrapScript":"bin/start.sh","appCacheEnable":true}' http://elastic_job_cloud_host:8899/api/app
curl -l -H "Content-type: application/json" -X POST -d '{"jobName":"foo_job","appName":"yourAppName","jobClass":"yourJobClass","jobType":"SIMPLE","jobExecutionType":"TRANSIENT","cron":"0/5 * * * * ?","shardingTotalCount":5,"cpuCount":0.1,"memoryMB":64.0,"failover":true,"misfire":true,"bootstrapScript":"bin/start.sh"}' http://elastic_job_cloud_host:8899/api/job/register