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

88 lines
2.9 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`
2015-09-21 19:20:51 +00:00
The `Java` driver is used to execute Java applications packaged into a Java Jar
2015-09-23 16:44:17 +00:00
file. The driver currently requires the Jar file be accessible via
2015-09-21 19:20:51 +00:00
HTTP from the Nomad client.
## Task Configuration
The `java` driver supports the following configuration in the job spec:
* `artifact_source` - The hosted location of the source Jar file. Must be
accessible from the Nomad client
2015-09-21 19:20:51 +00:00
* `checksum` - (Optional) The checksum type and value for the `artifact_source`
image. The format is `type:value`, where type is any of `md5`, `sha1`,
`sha256`, or `sha512`, and the value is the computed checksum. If a checksum
is supplied and does not match the downloaded artifact, the driver will fail
to start
2015-10-16 19:43:06 +00:00
2016-01-11 19:12:09 +00:00
* `args` - (Optional) A list of arguments to the optional `command`.
References to environment variables or any [intepretable Nomad
2016-02-06 23:34:21 +00:00
variables](/docs/jobspec/interpreted.html) will be interpreted
2016-01-11 19:12:09 +00:00
before launching the task. For example:
```
2016-02-06 23:34:21 +00:00
args = ["${nomad.datacenter}", "${MY_ENV}", "${meta.foo}"]
2016-01-11 19:12:09 +00:00
```
* `jvm_options` - (Optional) A list of JVM options to be passed while invoking
java. These options are passed not validated in any way in Nomad.
2015-09-21 19:20:51 +00:00
## Client Requirements
The `java` driver requires Java to be installed and in your systems `$PATH`.
2015-11-03 21:16:17 +00:00
The `artifact_source` must be accessible by the node running Nomad. This can be an
2015-09-21 19:20:51 +00:00
internal source, private to your cluster, but it must be reachable by the client
over HTTP.
2015-11-03 21:16:17 +00:00
## Examples
A simple config block to run a Java Jar:
```json
# Define a task to run
task "web" {
# Run a Java Jar
driver = "java"
config {
artifact_source = "https://dl.dropboxusercontent.com/u/1234/hello.jar"
checksum = "md5:123445555555555"
jvm_options = "-Xmx2048m -Xms256m"
}
```
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
## 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
running as root many of these mechanisms cannot be used.
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.
2015-09-20 22:31:33 +00:00