open-nomad/website/source/docs/drivers/java.html.md

142 lines
4.0 KiB
Markdown
Raw Normal View History

2015-09-20 22:31:33 +00:00
---
layout: "docs"
page_title: "Drivers: Java"
sidebar_current: "docs-drivers-java"
description: |-
The Java task driver is used to run Jars using the JVM.
---
# Java Driver
Name: `java`
The `java` driver is used to execute Java applications packaged into a Java Jar
2016-03-16 16:56:04 +00:00
file. The driver requires the Jar file to be accessible from the Nomad
client via the [`artifact` downloader](/docs/job-specification/artifact.html).
2015-09-21 19:20:51 +00:00
## Task Configuration
```hcl
task "webservice" {
driver = "java"
config {
jar_path = "local/exaple.jar"
jvm_options = ["-Xmx2048m", "-Xms256m"]
}
}
```
2015-09-21 19:20:51 +00:00
The `java` driver supports the following configuration in the job spec:
* `class` - (Optional) The name of the class to run. If `jar_path` is specified
and the manifest specifies a main class, this is optional. If shipping classes
rather than a Jar, please specify the class to run and the `class_path`.
* `class_path` - (Optional) The `class_path` specifies the clath path used by
Java to lookup classes and Jars.
* `jar_path` - (Optional) The path to the downloaded Jar. In most cases this will just be
2016-03-16 16:56:04 +00:00
the name of the Jar. However, if the supplied artifact is an archive that
contains the Jar in a subfolder, the path will need to be the relative path
(`subdir/from_archive/my.jar`).
2015-10-16 19:43:06 +00:00
* `args` - (Optional) A list of arguments to the Jar's main method. References
to environment variables or any [interpretable Nomad
variables](/docs/runtime/interpolation.html) will be interpreted before
launching the task.
* `jvm_options` - (Optional) A list of JVM options to be passed while invoking
2016-08-27 12:56:39 +00:00
java. These options are passed without being validated in any way by Nomad.
2015-09-21 19:20:51 +00:00
2015-11-03 21:16:17 +00:00
## Examples
A simple config block to run a Java Jar:
```hcl
2015-11-03 21:16:17 +00:00
task "web" {
driver = "java"
config {
jar_path = "local/hello.jar"
jvm_options = ["-Xmx2048m", "-Xms256m"]
2015-11-03 21:16:17 +00:00
}
2016-03-16 16:56:04 +00:00
# Specifying an artifact is required with the "java" driver. This is the
# mechanism to ship the Jar to be run.
2016-03-16 16:56:04 +00:00
artifact {
source = "https://internal.file.server/hello.jar"
2016-03-16 16:56:04 +00:00
options {
checksum = "md5:123445555555555"
}
}
}
2015-11-03 21:16:17 +00:00
```
A simple config block to run a Java class:
```hcl
task "web" {
driver = "java"
config {
class = "Hello"
class_path = "${NOMAD_TASK_DIR}"
jvm_options = ["-Xmx2048m", "-Xms256m"]
}
# Specifying an artifact is required with the "java" driver. This is the
# mechanism to ship the Jar to be run.
artifact {
source = "https://internal.file.server/Hello.class"
options {
checksum = "md5:123445555555555"
}
}
}
```
2016-03-16 16:56:04 +00:00
## Client Requirements
The `java` driver requires Java to be installed and in your system's `$PATH`. On
Linux, Nomad must run as root since it will use `chroot` and `cgroups` which
require root privileges. The task must also specify at least one artifact to
download, as this is the only way to retrieve the Jar being run.
2016-03-16 16:56:04 +00:00
2015-09-21 19:20:51 +00:00
## Client Attributes
The `java` driver will set the following client attributes:
* `driver.java` - Set to `1` if Java is found on the host node. Nomad determines
this by executing `java -version` on the host and parsing the output
2015-09-23 16:44:17 +00:00
* `driver.java.version` - Version of Java, ex: `1.6.0_65`
* `driver.java.runtime` - Runtime version, ex: `Java(TM) SE Runtime Environment (build 1.6.0_65-b14-466.1-11M4716)`
* `driver.java.vm` - Virtual Machine information, ex: `Java HotSpot(TM) 64-Bit Server VM (build 20.65-b04-466.1, mixed mode)`
2015-09-21 19:20:51 +00:00
Here is an example of using these properties in a job file:
```hcl
job "docs" {
# Only run this job where the JVM is higher than version 1.6.0.
constraint {
attribute = "${driver.java.version}"
operator = ">"
value = "1.6.0"
}
}
```
2015-09-21 19:20:51 +00:00
## Resource Isolation
The resource isolation provided varies by the operating system of
the client and the configuration.
On Linux, Nomad will attempt to use cgroups, namespaces, and chroot
to isolate the resources of a process. If the Nomad agent is not
2016-08-27 12:56:39 +00:00
running as root, many of these mechanisms cannot be used.
2015-09-21 19:20:51 +00:00
2015-10-25 17:00:08 +00:00
As a baseline, the Java jars will be run inside a Java Virtual Machine,
2015-09-23 16:44:17 +00:00
providing a minimum amount of isolation.