Table of Contents |
---|
Scope
This document explains
- how to download the JobScheduler engine binaries from Maven Central,
- the structure of the binaries,
- how to setup a minimal JobScheduler with the binaries.
Prerequisites
- Starting with release 1.9.6 JobScheduler artifacts are available from http://mvnrepository.com/artifact/com.sos-berlin/jobscheduler.engine.
- In order to download the binaries and to integrate them in your application it is required that you have Maven installed.
Maven
- Check the Maven Documentation.
- Download the latest Maven release
- Maven's
/bin
folder has to be added to the global variable "PATH
" in order to take effect. - No further Further configuration is not required for Maven in order to compile. For individual configuration, for example to receive certain 3rd Party libraries from a Maven2 repository, e.g. http://repo1.maven.org/maven2, you have to configure the settings.xml file.order to compile.
For individual configuration, for example to receive certain 3rd Party libraries from a Maven2 repository other than http://repo1.maven.org/maven2, you have to configure the settings.xml file.
Related Issues
Jira server SOS JIRA columns key,summary,type,created,updated,due,assignee,reporter,priority,status,resolution serverId 6dc67751-9d67-34cd-985b-194a8cdc9602 key JS-1508 Jira server SOS JIRA columns key,summary,type,created,updated,due,assignee,reporter,priority,status,resolution serverId 6dc67751-9d67-34cd-985b-194a8cdc9602 key JS-809 Jira server SOS JIRA columns key,summary,type,created,updated,due,assignee,reporter,priority,status,resolution serverId 6dc67751-9d67-34cd-985b-194a8cdc9602 key JS-785
The Binaries File
jobscheduler.engine-1.9.6.jar
jobscheduler.engine-1.9.6.pom
The version number 1.9.6
from this sample is based on the semantic versioning scheme. This sample version number is used for the examples in this article.
The Structure of the Binaries
The jobscheduler.engine-1.9.6.jar
file is a bundle jar with all binaries as well as the JobScheduler engine Java library included.
...
Code Block | ||||||
---|---|---|---|---|---|---|
| ||||||
|-linux-x64 | |-bin | | |---.version-engine | | |---scheduler | |-lib | | |---libjobscheduler-engine.so |-linux-x86 | |-bin | | |---.version-engine | | |---scheduler | |-lib | | |---libjobscheduler-engine.so |-windows-x64 | |-bin | | |---.version-engine | | |---jobscheduler-engine.dll | | |---scheduler.exe |-windows-x86 | |-bin | | |---.version-engine | | |---scheduler.exe |---com.sos-berlin.jobscheduler.engine-1.9.6.jar |
Setting up a JobScheduler with the Binaries
Required configuration files
sos.ini
factory.ini
scheduler.xml
Configuration
Step 1
To get a minimal JobScheduler up and running, create a home folder, e.g. myJobScheduler
, and copy the binaries according to your operating system and the Java library to systemto this folder.
Step 2
Add the following files to a folder:
- 3rd Party libraries that are configured in the
jobscheduler.engine-1.9.6.pom
file. - the Java library com.sos-berlin.jobscheduler.engine-1.9.6.jar from the bundle
- the JDBC database driver you want to use.
If you copy the 3rd party libraries to a different folder then you have to add this folder to the class_path
setting in the [java]
section of the factory.ini
file.
...
Code Block | ||||||
---|---|---|---|---|---|---|
| ||||||
<dependencies> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> <version>18.0</version> </dependency> <dependency> <groupId>javax.inject</groupId> <artifactId>javax.inject</artifactId> <version>1</version> </dependency> <dependency> <groupId>com.google.inject</groupId> <artifactId>guice</artifactId> <version>3.0</version> </dependency> <dependency> <groupId>com.h2database</groupId> <artifactId>h2</artifactId> <version>1.4.186</version> </dependency> <dependency> <groupId>commons-net</groupId> <artifactId>commons-net</artifactId> <version>3.3</version> </dependency> <dependency> <groupId>javax.mail</groupId> <artifactId>mail</artifactId> <version>1.4.7</version> </dependency> <dependency> <groupId>org.eclipse.persistence</groupId> <artifactId>javax.persistence</artifactId> <version>2.1.0</version> </dependency> <dependency> <groupId>org.scalactic</groupId> <artifactId>scalactic_2.11</artifactId> <version>2.2.4</version> </dependency> <dependency> <groupId>org.scala-lang</groupId> <artifactId>scala-library</artifactId> <version>2.11.6</version> </dependency> <dependency> <groupId>org.scala-lang</groupId> <artifactId>scala-reflect</artifactId> <version>2.11.6</version> </dependency> <dependency> <groupId>org.scala-lang.modules</groupId> <artifactId>scala-xml_2.11</artifactId> <version>1.0.3</version> </dependency> <dependency> <groupId>xerces</groupId> <artifactId>xercesImpl</artifactId> <version>2.11.0</version> </dependency> <dependency> <groupId>xml-apis</groupId> <artifactId>xml-apis</artifactId> <version>1.4.01</version> </dependency> <dependency> <groupId>joda-time</groupId> <artifactId>joda-time</artifactId> <version>2.5</version> </dependency> <dependency> <groupId>org.joda</groupId> <artifactId>joda-convert</artifactId> <version>1.7</version> </dependency> <dependency> <groupId>org.eclipse.jetty</groupId> <artifactId>jetty-server</artifactId> <version>8.1.16.v20140903</version> </dependency> <dependency> <groupId>org.eclipse.jetty</groupId> <artifactId>jetty-servlet</artifactId> <version>8.1.16.v20140903</version> </dependency> <dependency> <groupId>org.eclipse.jetty</groupId> <artifactId>jetty-servlets</artifactId> <version>8.1.16.v20140903</version> </dependency> <dependency> <groupId>org.eclipse.jetty</groupId> <artifactId>jetty-xml</artifactId> <version>8.1.16.v20140903</version> </dependency> <dependency> <groupId>org.eclipse.jetty</groupId> <artifactId>jetty-client</artifactId> <version>8.1.16.v20140903</version> </dependency> <dependency> <groupId>org.eclipse.jetty</groupId> <artifactId>jetty-webapp</artifactId> <version>8.1.16.v20140903</version> </dependency> <dependency> <groupId>org.eclipse.jetty</groupId> <artifactId>jetty-websocket</artifactId> <version>8.1.16.v20140903</version> </dependency> <dependency> <groupId>com.sun.jersey</groupId> <artifactId>jersey-server</artifactId> <version>1.19</version> </dependency> <dependency> <groupId>com.sun.jersey.contribs</groupId> <artifactId>jersey-guice</artifactId> <version>1.19</version> </dependency> <dependency> <groupId>com.sun.jersey</groupId> <artifactId>jersey-client</artifactId> <version>1.19</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>1.7.10</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-log4j12</artifactId> <version>1.7.10</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>jul-to-slf4j</artifactId> <version>1.7.10</version> </dependency> <dependency> <groupId>log4j</groupId> <artifactId>log4j</artifactId> <version>1.2.16</version> </dependency> <dependency> <groupId>com.google.code.findbugs</groupId> <artifactId>jsr305</artifactId> <version>3.0.0</version> </dependency> <dependency> <groupId>javax.ws.rs</groupId> <artifactId>jsr311-api</artifactId> <version>1.1.1</version> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-core</artifactId> <version>2.4.3</version> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> <version>2.4.3</version> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-annotations</artifactId> <version>2.4.3</version> </dependency> <dependency> <groupId>com.fasterxml.jackson.jaxrs</groupId> <artifactId>jackson-jaxrs-json-provider</artifactId> <version>2.4.3</version> </dependency> <dependency> <groupId>com.fasterxml.jackson.datatype</groupId> <artifactId>jackson-datatype-guava</artifactId> <version>2.4.3</version> </dependency> <dependency> <groupId>com.fasterxml.jackson.module</groupId> <artifactId>jackson-module-scala_2.11</artifactId> <version>2.4.3</version> </dependency> <dependency> <groupId>commons-beanutils</groupId> <artifactId>commons-beanutils</artifactId> <version>1.9.2</version> </dependency> <dependency> <groupId>io.spray</groupId> <artifactId>spray-json_2.11</artifactId> <version>1.3.1</version> </dependency> <dependency> <groupId>io.spray</groupId> <artifactId>spray-http_2.11</artifactId> <version>1.3.2</version> </dependency> <dependency> <groupId>io.spray</groupId> <artifactId>spray-client_2.11</artifactId> <version>1.3.2</version> </dependency> <dependency> <groupId>com.typesafe</groupId> <artifactId>config</artifactId> <version>1.2.1</version> </dependency> <dependency> <groupId>com.typesafe.akka</groupId> <artifactId>akka-actor_2.11</artifactId> <version>2.3.9</version> </dependency> <dependency> <groupId>com.typesafe.akka</groupId> <artifactId>akka-slf4j_2.11</artifactId> <version>2.3.9</version> </dependency> <dependency> <groupId>javax.servlet</groupId> <artifactId>javax.servlet-api</artifactId> <version>3.1.0</version> </dependency> <dependency> <groupId>aopalliance</groupId> <artifactId>aopalliance</artifactId> <version>1.0</version> </dependency> <dependency> <groupId>org.jvnet.mimepull</groupId> <artifactId>mimepull</artifactId> <version>1.9.4</version> </dependency> </dependencies> |
Step 3
Create a sos.ini
file and copy your license key to this file. This is a technical license key that ships with the Open Source License and with the Commercial License of the software. The file should look like this:
...
Code Block | ||||||
---|---|---|---|---|---|---|
| ||||||
@echo set exepath=%~dp0 scheduler.exe -sos.ini="%exepath%sos.ini" -config="%exepath%scheduler.xml" -ini="%exepath%factory.ini" |
Additional configuration
Code Block | ||||||
---|---|---|---|---|---|---|
| ||||||
log4j.rootCategory=info, stdout log4j.appender.stdout=org.apache.log4j.ConsoleAppender log4j.appender.stdout.layout=org.apache.log4j.PatternLayout log4j.appender.stdout.layout.ConversionPattern=%5p [%t] (%F:%L) - %m%n log4j.logger.org.hibernate=fatal log4j.logger.JobScheduler=fatal log4j.logger.com.sos.scheduler.engine=info # see http://www.sos-berlin.com/doc/en/scheduler.doc/api/Log-javax.script.xml log4j.logger.com.sos.scheduler.engine.jobapi.scripting=debug, scheduler log4j.appender.scheduler=org.apache.log4j.ConsoleAppender log4j.appender.scheduler.layout=org.apache.log4j.PatternLayout log4j.appender.scheduler.layout.ConversionPattern=%5p [%t] (%F:%L) - %m%n |
...
factory.ini
jobscheduler-engine.dll
log4j.properties(optional)
scheduler.exe
scheduler.xml
sos.ini
start.cmd
Testing the JobScheduler
Create a folder with the name
live
in your home folder. Create a simple job in thelive
folder like this:Code Block language xml title hello world job example collapse true <?xml version="1.0" encoding="ISO-8859-1"?> <job> <script language="shell"> <![CDATA[echo Hello World!]]> </script> <run_time once="yes"/> </job>
Open a console in your home folder and start the JobScheduler with the
start.cmd
start script.
If you have configured logging (log4j.properties and path to the properties file in thefactory.ini
file) then you should see a task log and job log for the sample job like this:Code Block language text title task log collapse true 2015-10-07 14:58:45.515+0200 [info] SCHEDULER-918 state=starting (at=never) 2015-10-07 14:58:45.516+0200 [info] SCHEDULER-987 Starting process: "C:\Users\YOUR_USERNAME\AppData\Local\Temp\\sos5051B.cmd" 2015-10-07 14:58:45.526+0200 [info] 2015-10-07 14:58:45.526+0200 [info] PATH_TO_YOUR_FOLDER>echo Hello World! 2015-10-07 14:58:45.526+0200 [info] Hello World! 2015-10-07 14:58:45.527+0200 [info] SCHEDULER-915 Process event 2015-10-07 14:58:45.556+0200 [info] SCHEDULER-918 state=closed 2015-10-07 14:58:45.556+0200 [info] SCHEDULER-962 Protocol ends in logs/task.HalloWorldExample.log
Code Block language text title job log collapse true 2015-10-07 14:58:45.507+0200 [info] SCHEDULER-893 Job is 'active' now 2015-10-07 14:58:45.512+0200 [info] SCHEDULER-930 Task 6114864 started - cause: period_once 2015-10-07 14:59:45.716+0200 [info] SCHEDULER-931 state=stopped 2015-10-07 14:59:45.717+0200 [info] SCHEDULER-962 Protocol ends in logs/job.HalloWorldExample.log
Change Management References
Jira | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|
|