1. Introduction
This is the REST API documentation for Genie version 4.0.0-rc.89. Here you will find specific details of how to invoke the Genie REST API and what you can expect as return values.
For more Genie information see the website. |
For high level information and installation instructions please see the reference guide. |
For a demo of this version of Genie please see demo guide. |
2. Assumptions
This documentation assumes a basic knowledge of how REST APIs work. If you don’t know things like HTTP verbs see websites like this one.
3. HATEOAS
A lot of the API’s return application/hal+json
as a content type. This is a superset of JSON built to support
HATEOAS (Hypermedia as the Engine of Application State). Rather than re-writing what
HATEOAS is see this great write up on the Spring Website about it.
4. Security
All of this documentation assumes security is disabled for Genie. If your installation has security enabled the REST APIs will be secured via OAuth2 or x509 certs or both.
These are the currently supported API security mechanisms but others could be plugged in. We’ll only talk about OAuth2 here for now until another implementation is done. |
4.1. OAuth2
If OAuth2 is enabled you’ll need to send your JWT you got back from your provider along with your
API request. This is accomplished by setting your Authorization
header to a value of Bearer {your token here}
.
4.2. x509
If your admin has security Genie using client and server certificates mechanisms you’ll need to send your client certificate along with your request.
Something like curl --cert {your cert} {genie endpoint}
5. Resources
This section contains the documentation for various resources sent to and from the various Genie APIs. Note their structure and fields, particularly what is marked optional. Optional means when you submit one of these resources to Genie you don’t need to set that field. Genie either doesn’t require it or if it does, as is the case with ID’s, it will create one if you don’t provide it. When you get a resource all fields Genie has stored will be returned.
5.1. Application
Path | Type | Description | Constraints | Optional |
---|---|---|---|---|
id |
String |
The id. If not set the system will set one. |
Size must be between 0 and 255 inclusive |
true |
created |
String |
The UTC time of creation. Set by system. ISO8601 format including milliseconds. |
true |
|
updated |
String |
The UTC time of last update. Set by system. ISO8601 format including milliseconds. |
true |
|
name |
String |
The name |
Must not be empty. Size must be between 0 and 255 inclusive |
false |
user |
String |
The user |
Must not be empty. Size must be between 0 and 255 inclusive |
false |
version |
String |
The version |
Must not be empty. Size must be between 0 and 255 inclusive |
false |
description |
String |
Any description |
Size must be between 0 and 1000 inclusive |
true |
metadata |
Object |
Any semi-structured metadata. Must be valid JSON |
true |
|
tags |
Array |
The tags |
true |
|
setupFile |
String |
A location for any setup that needs to be done when installing |
Size must be between 0 and 1024 inclusive |
true |
configs |
Array |
Any configuration files needed for the resource |
true |
|
type |
String |
The type of application this is (e.g. hadoop, presto, spark). Can be used to group. |
true |
|
status |
String |
The status of the application. Options: [ACTIVE, DEPRECATED, INACTIVE] |
Must not be null |
false |
dependencies |
Array |
The dependencies for the application |
true |
5.2. Cluster
Path | Type | Description | Constraints | Optional |
---|---|---|---|---|
id |
String |
The id. If not set the system will set one. |
Size must be between 0 and 255 inclusive |
true |
created |
String |
The UTC time of creation. Set by system. ISO8601 format including milliseconds. |
true |
|
updated |
String |
The UTC time of last update. Set by system. ISO8601 format including milliseconds. |
true |
|
name |
String |
The name |
Must not be empty. Size must be between 0 and 255 inclusive |
false |
user |
String |
The user |
Must not be empty. Size must be between 0 and 255 inclusive |
false |
version |
String |
The version |
Must not be empty. Size must be between 0 and 255 inclusive |
false |
description |
String |
Any description |
Size must be between 0 and 1000 inclusive |
true |
metadata |
Object |
Any semi-structured metadata. Must be valid JSON |
true |
|
tags |
Array |
The tags |
true |
|
setupFile |
String |
A location for any setup that needs to be done when installing |
Size must be between 0 and 1024 inclusive |
true |
configs |
Array |
Any configuration files needed for the resource |
true |
|
status |
String |
The status of the cluster. Options: [UP, OUT_OF_SERVICE, TERMINATED] |
Must not be null |
false |
dependencies |
Array |
The dependencies for the cluster |
true |
5.3. Command
Path | Type | Description | Constraints | Optional |
---|---|---|---|---|
id |
String |
The id. If not set the system will set one. |
Size must be between 0 and 255 inclusive |
true |
created |
String |
The UTC time of creation. Set by system. ISO8601 format including milliseconds. |
true |
|
updated |
String |
The UTC time of last update. Set by system. ISO8601 format including milliseconds. |
true |
|
name |
String |
The name |
Must not be empty. Size must be between 0 and 255 inclusive |
false |
user |
String |
The user |
Must not be empty. Size must be between 0 and 255 inclusive |
false |
version |
String |
The version |
Must not be empty. Size must be between 0 and 255 inclusive |
false |
description |
String |
Any description |
Size must be between 0 and 1000 inclusive |
true |
metadata |
Object |
Any semi-structured metadata. Must be valid JSON |
true |
|
tags |
Array |
The tags |
true |
|
setupFile |
String |
A location for any setup that needs to be done when installing |
Size must be between 0 and 1024 inclusive |
true |
configs |
Array |
Any configuration files needed for the resource |
true |
|
status |
String |
The status of the command. Options: [ACTIVE, DEPRECATED, INACTIVE] |
Must not be null |
false |
executable |
String |
The executable to run on the Genie node when this command is used. e.g. /usr/bin/hadoop |
Must not be empty. Size must be between 0 and 1024 inclusive |
false |
executableAndArguments |
Array |
The executable and arguments to run on the Genie node when this command is used. e.g. /usr/bin/hadoop |
Must not be empty |
false |
checkDelay |
Number |
The amount of time (in milliseconds) to delay between checks of the jobs using this command |
Must be at least 1 |
false |
memory |
Number |
The default amount of memory (in MB) that should be allocated for instances of this command client |
Must be at least 1 |
true |
dependencies |
Array |
The dependencies for the command |
true |
|
clusterCriteria |
Array |
The priority ordered list of criteria to resolve clusters that this command can run jobs on |
true |
5.4. Job Request
Path | Type | Description | Constraints | Optional |
---|---|---|---|---|
id |
String |
The id. If not set the system will set one. |
Size must be between 0 and 255 inclusive |
true |
created |
String |
The UTC time of creation. Set by system. ISO8601 format including milliseconds. |
true |
|
updated |
String |
The UTC time of last update. Set by system. ISO8601 format including milliseconds. |
true |
|
name |
String |
The name |
Must not be empty. Size must be between 0 and 255 inclusive |
false |
user |
String |
The user |
Must not be empty. Size must be between 0 and 255 inclusive |
false |
version |
String |
The version |
Must not be empty. Size must be between 0 and 255 inclusive |
false |
description |
String |
Any description |
Size must be between 0 and 1000 inclusive |
true |
metadata |
Object |
Any semi-structured metadata. Must be valid JSON |
true |
|
tags |
Array |
The tags |
true |
|
setupFile |
String |
A location for any setup that needs to be done when installing |
Size must be between 0 and 1024 inclusive |
true |
commandArgs |
String |
Any arguments to append to the command executable when the job is run |
Size must be between 0 and 10000 inclusive |
true |
clusterCriterias |
Array |
List of cluster criteria’s for which a match will be attempted with register cluster tags. Each set of tags within a given cluster criteria must have at least one non-blank (e.g. ' ', ' ', null) tag. |
Must not be empty |
false |
commandCriteria |
Array |
Set of tags which will attempt to match against the commands linked to selected cluster. There must be at least one non-blank (e.g. ' ', ' ', null) criteria within the set |
Must not be empty |
false |
group |
String |
A group that the job should be run under on the linux system |
Size must be between 0 and 255 inclusive |
true |
disableLogArchival |
Boolean |
If you want to disable backing up job output files set this to true. Default: false |
true |
|
String |
If you want e-mail notification on job completion enter address here |
Must be a well-formed email address. Size must be between 0 and 255 inclusive |
true |
|
cpu |
Number |
For future use. Currently has no impact. |
Must be at least 1 |
true |
memory |
Number |
The amount of memory (in MB) desired for job client. Cannot exceed configured max. |
Must be at least 1 |
true |
timeout |
Number |
The timeout (in seconds) after which job will be killed by system, system setting used if not set |
Must be at least 1 |
true |
configs |
Array |
URI’s of configuration files which will be downloaded into job working directory at runtime |
true |
|
dependencies |
Array |
URI’s of dependency files which will be downloaded into job working directory at runtime |
true |
|
applications |
Array |
Complete list of application ids if power user wishes to override selected command defaults |
true |
|
grouping |
String |
The grouping of the job relative to other jobs. e.g. scheduler job name |
true |
|
groupingInstance |
String |
The grouping instance of the job relative to other jobs. e.g. scheduler job run |
true |
5.5. Job
Path | Type | Description | Constraints | Optional |
---|---|---|---|---|
id |
String |
The id. If not set the system will set one. |
Size must be between 0 and 255 inclusive |
true |
created |
String |
The UTC time of creation. Set by system. ISO8601 format including milliseconds. |
true |
|
updated |
String |
The UTC time of last update. Set by system. ISO8601 format including milliseconds. |
true |
|
name |
String |
The name |
Must not be empty. Size must be between 0 and 255 inclusive |
false |
user |
String |
The user |
Must not be empty. Size must be between 0 and 255 inclusive |
false |
version |
String |
The version |
Must not be empty. Size must be between 0 and 255 inclusive |
false |
description |
String |
Any description |
Size must be between 0 and 1000 inclusive |
true |
metadata |
Object |
Any semi-structured metadata. Must be valid JSON |
true |
|
tags |
Array |
The tags |
true |
|
commandArgs |
String |
Any arguments to append to the command executable when the job is run |
Size must be between 0 and 10000 inclusive |
true |
status |
String |
The status of the job. Options: [RESERVED, RESOLVED, ACCEPTED, CLAIMED, INIT, RUNNING, SUCCEEDED, KILLED, FAILED, INVALID] |
Must not be null |
false |
statusMsg |
String |
The status message of the job |
Size must be between 0 and 255 inclusive |
true |
started |
String |
The time (UTC ISO8601 with millis) the job was started |
true |
|
finished |
String |
The time (UTC ISO8601 with millis) the job finished |
true |
|
archiveLocation |
String |
The URI where the working directory zip was stored |
Size must be between 0 and 1024 inclusive |
true |
clusterName |
String |
The name of the cluster the job was run on if it’s been determined |
Size must be between 0 and 255 inclusive |
true |
commandName |
String |
The name of the command the job was run with if it’s been determined |
Size must be between 0 and 255 inclusive |
true |
runtime |
String |
Runtime of the job in ISO8601 duration format |
Must not be null |
true |
grouping |
String |
The grouping of the job relative to other jobs. e.g. scheduler job name |
true |
|
groupingInstance |
String |
The grouping instance of the job relative to other jobs. e.g. scheduler job run |
true |
5.6. Job Execution
Path | Type | Description | Constraints | Optional |
---|---|---|---|---|
id |
String |
The id. If not set the system will set one. |
Size must be between 0 and 255 inclusive |
true |
created |
String |
The UTC time of creation. Set by system. ISO8601 format including milliseconds. |
true |
|
updated |
String |
The UTC time of last update. Set by system. ISO8601 format including milliseconds. |
true |
|
hostName |
String |
The host name of the Genie node responsible for the job |
Size must be between 1 and 1024 inclusive |
false |
processId |
Number |
The id of the job client process on the Genie node |
true |
|
checkDelay |
Number |
The amount of time in milliseconds between checks of the job status by Genie |
Must be at least 1 |
true |
timeout |
String |
The date (UTC ISO8601 with millis) when the job will be killed by Genie due to timeout |
true |
|
exitCode |
Number |
The job client process exit code after the job is done |
true |
|
memory |
Number |
The amount of memory (in MB) allocated to the job client |
Must be at least 1 |
true |
archiveStatus |
String |
The archival status of the job directory |
true |
|
launcherExt |
Object |
JSON object that contains metadata specific to the launcher implementation for the job |
true |
5.7. Job Metadata
Path | Type | Description | Constraints | Optional |
---|---|---|---|---|
id |
String |
The id. If not set the system will set one. |
Size must be between 0 and 255 inclusive |
true |
created |
String |
The UTC time of creation. Set by system. ISO8601 format including milliseconds. |
true |
|
updated |
String |
The UTC time of last update. Set by system. ISO8601 format including milliseconds. |
true |
|
clientHost |
String |
The host name of the client that submitted the job to Genie |
true |
|
userAgent |
String |
The user agent string that was passed to Genie on job request |
true |
|
numAttachments |
Number |
The number of attachments sent to Genie with the job request |
true |
|
totalSizeOfAttachments |
Number |
The total size of all attachments sent to Genie with the job request. In bytes. |
true |
|
stdOutSize |
Number |
The final size of the stdout file after a job is completed. In bytes. |
true |
|
stdErrSize |
Number |
The final size of the stderr file after a job is completed. In bytes. |
true |
5.8. Criterion
Path | Type | Description | Constraints | Optional |
---|---|---|---|---|
id |
String |
The unique identifier a resource needs to have to match this criterion |
true |
|
name |
String |
The name a resource needs to have to match this criterion |
true |
|
version |
String |
The version a resource needs to have to match this criterion |
true |
|
status |
String |
The status a resource needs to have to match this criterion |
true |
|
tags |
Array |
The set of tags a resource needs to have to match this criterion |
true |
6. Jobs API
6.1. Submit a Job
6.1.1. Description
The main API in Genie. Submitting a job to be run.
There are two different ways to submit a job to Genie. Both go to the same endpoint but you can simply send a JSON
payload if you have no attachments. This means setting your content type to application/json
. If you do have
attachments you want to send with your job request you need to set the content type to multipart/form-data
and
post the request that way. Examples are below.
6.1.2. Endpoint
POST /api/v3/jobs
The id in this example is optional. If you include one Genie will use it. If not it will provide one. If you provide one it must be unique. |
This Example is without attachments |
6.1.3. API Docs
Request Documentation
Headers
Name | Description |
---|---|
|
application/json |
Path Parameters
None
Query Parameters
None
Payload Fields
Path | Type | Description | Constraints | Optional |
---|---|---|---|---|
id |
String |
The id. If not set the system will set one. |
Size must be between 0 and 255 inclusive |
true |
created |
String |
The UTC time of creation. Set by system. ISO8601 format including milliseconds. |
true |
|
updated |
String |
The UTC time of last update. Set by system. ISO8601 format including milliseconds. |
true |
|
name |
String |
The name |
Must not be empty. Size must be between 0 and 255 inclusive |
false |
user |
String |
The user |
Must not be empty. Size must be between 0 and 255 inclusive |
false |
version |
String |
The version |
Must not be empty. Size must be between 0 and 255 inclusive |
false |
description |
String |
Any description |
Size must be between 0 and 1000 inclusive |
true |
metadata |
Object |
Any semi-structured metadata. Must be valid JSON |
true |
|
tags |
Array |
The tags |
true |
|
setupFile |
String |
A location for any setup that needs to be done when installing |
Size must be between 0 and 1024 inclusive |
true |
commandArgs |
String |
Any arguments to append to the command executable when the job is run |
Size must be between 0 and 10000 inclusive |
true |
clusterCriterias |
Array |
List of cluster criteria’s for which a match will be attempted with register cluster tags. Each set of tags within a given cluster criteria must have at least one non-blank (e.g. ' ', ' ', null) tag. |
Must not be empty |
false |
commandCriteria |
Array |
Set of tags which will attempt to match against the commands linked to selected cluster. There must be at least one non-blank (e.g. ' ', ' ', null) criteria within the set |
Must not be empty |
false |
group |
String |
A group that the job should be run under on the linux system |
Size must be between 0 and 255 inclusive |
true |
disableLogArchival |
Boolean |
If you want to disable backing up job output files set this to true. Default: false |
true |
|
String |
If you want e-mail notification on job completion enter address here |
Must be a well-formed email address. Size must be between 0 and 255 inclusive |
true |
|
cpu |
Number |
For future use. Currently has no impact. |
Must be at least 1 |
true |
memory |
Number |
The amount of memory (in MB) desired for job client. Cannot exceed configured max. |
Must be at least 1 |
true |
timeout |
Number |
The timeout (in seconds) after which job will be killed by system, system setting used if not set |
Must be at least 1 |
true |
configs |
Array |
URI’s of configuration files which will be downloaded into job working directory at runtime |
true |
|
dependencies |
Array |
URI’s of dependency files which will be downloaded into job working directory at runtime |
true |
|
applications |
Array |
Complete list of application ids if power user wishes to override selected command defaults |
true |
|
grouping |
String |
The grouping of the job relative to other jobs. e.g. scheduler job name |
true |
|
groupingInstance |
String |
The grouping instance of the job relative to other jobs. e.g. scheduler job run |
true |
Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/jobs' -i -X POST \
-H 'Content-Type: application/json; charset=UTF-8' \
-d '{
"id" : null,
"created" : null,
"updated" : null,
"version" : "1.0",
"user" : "genie",
"name" : "List * ... Directories bash job",
"description" : "Genie 3 Test Job",
"metadata" : {
"schedulerJobName" : "70eb090a-b574-42c6-a907-d0a3b37c8b7c",
"schedulerRunId" : "271c5eb8-176a-4c7c-9972-950e0e789eb9"
},
"tags" : [ "aTag", "zTag" ],
"configs" : [ "file:/home/travis/build/Netflix/genie/genie-web/build/resources/integTest/com/netflix/genie/web/apis/rest/v3/controllers/JobRestControllerIntegrationTests/job/config1" ],
"dependencies" : [ "file:/home/travis/build/Netflix/genie/genie-web/build/resources/integTest/com/netflix/genie/web/apis/rest/v3/controllers/JobRestControllerIntegrationTests/job/dep1" ],
"setupFile" : "file:/home/travis/build/Netflix/genie/genie-web/build/resources/integTest/com/netflix/genie/web/apis/rest/v3/controllers/JobRestControllerIntegrationTests/job/jobsetupfile",
"commandArgs" : "-c 'sleep 5 && echo hello world'",
"clusterCriterias" : [ {
"tags" : [ "localhost" ]
} ],
"commandCriteria" : [ "bash" ],
"group" : null,
"disableLogArchival" : false,
"email" : null,
"cpu" : null,
"memory" : null,
"timeout" : null,
"applications" : [ ],
"grouping" : "Workflow.Foo",
"groupingInstance" : "Workflow.Foo_Step.Blah-2020021919:12:34.000_1"
}'
HTTPie
$ echo '{
"id" : null,
"created" : null,
"updated" : null,
"version" : "1.0",
"user" : "genie",
"name" : "List * ... Directories bash job",
"description" : "Genie 3 Test Job",
"metadata" : {
"schedulerJobName" : "70eb090a-b574-42c6-a907-d0a3b37c8b7c",
"schedulerRunId" : "271c5eb8-176a-4c7c-9972-950e0e789eb9"
},
"tags" : [ "aTag", "zTag" ],
"configs" : [ "file:/home/travis/build/Netflix/genie/genie-web/build/resources/integTest/com/netflix/genie/web/apis/rest/v3/controllers/JobRestControllerIntegrationTests/job/config1" ],
"dependencies" : [ "file:/home/travis/build/Netflix/genie/genie-web/build/resources/integTest/com/netflix/genie/web/apis/rest/v3/controllers/JobRestControllerIntegrationTests/job/dep1" ],
"setupFile" : "file:/home/travis/build/Netflix/genie/genie-web/build/resources/integTest/com/netflix/genie/web/apis/rest/v3/controllers/JobRestControllerIntegrationTests/job/jobsetupfile",
"commandArgs" : "-c 'sleep 5 && echo hello world'",
"clusterCriterias" : [ {
"tags" : [ "localhost" ]
} ],
"commandCriteria" : [ "bash" ],
"group" : null,
"disableLogArchival" : false,
"email" : null,
"cpu" : null,
"memory" : null,
"timeout" : null,
"applications" : [ ],
"grouping" : "Workflow.Foo",
"groupingInstance" : "Workflow.Foo_Step.Blah-2020021919:12:34.000_1"
}' | http POST 'https://genie.example.com/api/v3/jobs' \
'Content-Type:application/json; charset=UTF-8'
Response Documentation
Headers
Name | Description |
---|---|
|
The URI |
Payload Fields
None
HATEOAS Links
None
HTTP Messages
Request
POST /api/v3/jobs HTTP/1.1
Content-Type: application/json; charset=UTF-8
Host: genie.example.com
Content-Length: 1332
{
"id" : null,
"created" : null,
"updated" : null,
"version" : "1.0",
"user" : "genie",
"name" : "List * ... Directories bash job",
"description" : "Genie 3 Test Job",
"metadata" : {
"schedulerJobName" : "70eb090a-b574-42c6-a907-d0a3b37c8b7c",
"schedulerRunId" : "271c5eb8-176a-4c7c-9972-950e0e789eb9"
},
"tags" : [ "aTag", "zTag" ],
"configs" : [ "file:/home/travis/build/Netflix/genie/genie-web/build/resources/integTest/com/netflix/genie/web/apis/rest/v3/controllers/JobRestControllerIntegrationTests/job/config1" ],
"dependencies" : [ "file:/home/travis/build/Netflix/genie/genie-web/build/resources/integTest/com/netflix/genie/web/apis/rest/v3/controllers/JobRestControllerIntegrationTests/job/dep1" ],
"setupFile" : "file:/home/travis/build/Netflix/genie/genie-web/build/resources/integTest/com/netflix/genie/web/apis/rest/v3/controllers/JobRestControllerIntegrationTests/job/jobsetupfile",
"commandArgs" : "-c 'sleep 5 && echo hello world'",
"clusterCriterias" : [ {
"tags" : [ "localhost" ]
} ],
"commandCriteria" : [ "bash" ],
"group" : null,
"disableLogArchival" : false,
"email" : null,
"cpu" : null,
"memory" : null,
"timeout" : null,
"applications" : [ ],
"grouping" : "Workflow.Foo",
"groupingInstance" : "Workflow.Foo_Step.Blah-2020021919:12:34.000_1"
}
Response
HTTP/1.1 202 Accepted
Location: https://genie.example.com/api/v3/jobs/ed4ca26b-6eb9-41f8-8650-2a75424d604f
Date: Fri, 05 Mar 2021 22:54:03 GMT
Keep-Alive: timeout=60
Connection: keep-alive
This example is with attachments |
6.1.4. API Docs
Request Documentation
Headers
Name | Description |
---|---|
|
multipart/form-data |
Path Parameters
None
Query Parameters
None
Payload Fields
Part | Description |
---|---|
|
The job request JSON. Content type must be application/json for part |
|
An attachment file. There can be multiple. Type should be octet-stream |
Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/jobs' -i -X POST \
-H 'Content-Type: multipart/form-data; boundary="xQiSUPrlyxIFSd1Je-CrXsfLoeB0MpIsE"' \
-F 'request=@file;type=application/json' \
-F 'attachment=@query.sql;type=application/octet-stream' \
-F 'attachment=@query2.sql;type=application/octet-stream'
HTTPie
$ http --form POST 'https://genie.example.com/api/v3/jobs' \
'request'@'file' \
'attachment'@'query.sql' \
'attachment'@'query2.sql'
Response Documentation
Headers
Name | Description |
---|---|
|
The URI |
Payload Fields
None
HATEOAS Links
None
HTTP Messages
Request
POST /api/v3/jobs HTTP/1.1
Content-Type: multipart/form-data; boundary="xQiSUPrlyxIFSd1Je-CrXsfLoeB0MpIsE"; boundary=6o2knFse3p53ty9dmcQvWAIx1zInP11uCfbm
Host: genie.example.com
--6o2knFse3p53ty9dmcQvWAIx1zInP11uCfbm
Content-Disposition: form-data; name=request; filename=file
Content-Type: application/json
{"id":null,"created":null,"updated":null,"version":"1.0","user":"genie","name":"List * ... Directories bash job","description":"Genie 3 Test Job","metadata":null,"tags":[],"configs":[],"dependencies":[],"setupFile":"file:/home/travis/build/Netflix/genie/genie-web/build/resources/integTest/com/netflix/genie/web/apis/rest/v3/controllers/JobRestControllerIntegrationTests/job/jobsetupfile","commandArgs":"-c 'sleep 5 && echo hello world'","clusterCriterias":[{"tags":["localhost"]}],"commandCriteria":["bash"],"group":null,"disableLogArchival":true,"email":null,"cpu":null,"memory":null,"timeout":null,"applications":[],"grouping":null,"groupingInstance":null}
--6o2knFse3p53ty9dmcQvWAIx1zInP11uCfbm
Content-Disposition: form-data; name=attachment; filename=query.sql
Content-Type: application/octet-stream
--
--
-- Copyright 2018 Netflix, Inc.
--
-- Licensed under the Apache License, Version 2.0 (the "License");
-- you may not use this file except in compliance with the License.
-- You may obtain a copy of the License at
--
-- https://genie.example.com/licenses/LICENSE-2.0
--
-- Unless required by applicable law or agreed to in writing, software
-- distributed under the License is distributed on an "AS IS" BASIS,
-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-- See the License for the specific language governing permissions and
-- limitations under the License.
--
--
select * from myTable;
--6o2knFse3p53ty9dmcQvWAIx1zInP11uCfbm
Content-Disposition: form-data; name=attachment; filename=query2.sql
Content-Type: application/octet-stream
--
--
-- Copyright 2018 Netflix, Inc.
--
-- Licensed under the Apache License, Version 2.0 (the "License");
-- you may not use this file except in compliance with the License.
-- You may obtain a copy of the License at
--
-- https://genie.example.com/licenses/LICENSE-2.0
--
-- Unless required by applicable law or agreed to in writing, software
-- distributed under the License is distributed on an "AS IS" BASIS,
-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-- See the License for the specific language governing permissions and
-- limitations under the License.
--
--
SELECT * FROM your_table JOIN my_table ON your_table.id = my_table.id WHERE x > 50;
--6o2knFse3p53ty9dmcQvWAIx1zInP11uCfbm--
Response
HTTP/1.1 202 Accepted
Location: https://genie.example.com/api/v3/jobs/3da1d72f-aaa4-4d4d-8fad-13973cdccdcf
Date: Fri, 05 Mar 2021 22:54:42 GMT
Keep-Alive: timeout=60
Connection: keep-alive
6.2. Find Jobs
6.2.1. Description
Search for jobs using query parameters.
6.2.2. Endpoint
GET /api/v3/jobs
6.2.3. API Docs
Request Documentation
Headers
None
Path Parameters
None
Query Parameters
Parameter | Description |
---|---|
|
The page number to get. Default to 0. |
|
The size of the page to get. Default to 64. |
|
The fields to sort the results by. Defaults to 'updated,desc'. |
|
The id of the jobs to find. Use % symbol for regex like search. |
|
The name of the jobs to find. Use % symbol for regex like search. |
|
The user of the jobs to find. Use % symbol for regex like search. |
|
The status(es) of the jobs to find. Can have multiple. Options: [RESERVED, RESOLVED, ACCEPTED, CLAIMED, INIT, RUNNING, SUCCEEDED, KILLED, FAILED, INVALID] |
|
The tag(s) of the jobs to find. Can have multiple. |
|
The name of the cluster on which the jobs ran. Use % symbol for regex like search. |
|
The id of the cluster on which the jobs ran. |
|
The name of the command which was executed by the job. Use % symbol for regex like search. |
|
The id of the command which was executed by the job. |
|
The minimum started time of the job in milliseconds since epoch. (inclusive) |
|
The maximum started time of the job in milliseconds since epoch. (exclusive) |
|
The minimum finished time of the job in milliseconds since epoch. (inclusive) |
|
The maximum finished time of the job in milliseconds since epoch. (exclusive) |
|
The grouping the job should be a member of. Use % symbol for regex like search. |
|
The grouping instance the job should be a member of. Use % symbol for regex like search. |
Payload Fields
None
Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/jobs?user=genie' -i -X GET
HTTPie
$ http GET 'https://genie.example.com/api/v3/jobs?user=genie'
Response Documentation
Headers
Name | Description |
---|---|
|
application/hal+json |
Payload Fields
Path | Type | Description | Constraints | Optional |
---|---|---|---|---|
_links |
Object |
Links to other resources. |
false |
|
page |
Object |
The result page information. |
false |
|
page.size |
Number |
The number of elements in this page result. |
false |
|
page.totalElements |
Number |
The total number of elements this search result could return. |
false |
|
page.totalPages |
Number |
The total number of pages there could be at the current page size. |
false |
|
page.number |
Number |
The current page number. |
false |
|
_embedded.jobSearchResultList |
Array |
The found jobs. |
false |
HATEOAS Links
Relation | Description |
---|---|
|
The current search |
|
The first page for this search |
|
The previous page for this search |
|
The next page for this search |
|
The last page for this search |
HTTP Messages
Request
GET /api/v3/jobs?user=genie HTTP/1.1
Host: genie.example.com
Response
HTTP/1.1 200 OK
Content-Type: application/hal+json;charset=UTF-8
Transfer-Encoding: chunked
Date: Fri, 05 Mar 2021 22:54:21 GMT
Keep-Alive: timeout=60
Connection: keep-alive
Content-Length: 946
{
"_embedded" : {
"jobSearchResultList" : [ {
"id" : "ed4ca26b-6eb9-41f8-8650-2a75424d604f",
"name" : "List * ... Directories bash job",
"user" : "genie",
"status" : "SUCCEEDED",
"started" : "2021-03-05T22:54:13.075Z",
"finished" : "2021-03-05T22:54:18.165Z",
"clusterName" : "Local laptop",
"commandName" : "Unix Bash command",
"runtime" : "PT5.09S",
"_links" : {
"self" : {
"href" : "https://genie.example.com/api/v3/jobs/ed4ca26b-6eb9-41f8-8650-2a75424d604f"
}
}
} ]
},
"_links" : {
"self" : {
"href" : "https://genie.example.com/api/v3/jobs?user=genie{&id,name,status,tag,clusterName,clusterId,commandName,commandId,minStarted,maxStarted,minFinished,maxFinished,grouping,groupingInstance}",
"templated" : true
}
},
"page" : {
"size" : 10,
"totalElements" : 1,
"totalPages" : 1,
"number" : 0
}
}
6.3. Get a Job
6.3.1. Description
Get metadata about a specific job.
6.3.2. Endpoint
GET /api/v3/jobs/{id}
6.3.3. API Docs
Request Documentation
Headers
None
Path Parameters
Parameter | Description |
---|---|
|
The resource id |
Query Parameters
None
Payload Fields
None
Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/jobs/ed4ca26b-6eb9-41f8-8650-2a75424d604f' -i -X GET
HTTPie
$ http GET 'https://genie.example.com/api/v3/jobs/ed4ca26b-6eb9-41f8-8650-2a75424d604f'
Response Documentation
Headers
Name | Description |
---|---|
|
application/hal+json |
Payload Fields
Path | Type | Description | Constraints | Optional |
---|---|---|---|---|
id |
String |
The id. If not set the system will set one. |
Size must be between 0 and 255 inclusive |
true |
created |
String |
The UTC time of creation. Set by system. ISO8601 format including milliseconds. |
true |
|
updated |
String |
The UTC time of last update. Set by system. ISO8601 format including milliseconds. |
true |
|
name |
String |
The name |
Must not be empty. Size must be between 0 and 255 inclusive |
false |
user |
String |
The user |
Must not be empty. Size must be between 0 and 255 inclusive |
false |
version |
String |
The version |
Must not be empty. Size must be between 0 and 255 inclusive |
false |
description |
String |
Any description |
Size must be between 0 and 1000 inclusive |
true |
metadata |
Object |
Any semi-structured metadata. Must be valid JSON |
true |
|
tags |
Array |
The tags |
true |
|
commandArgs |
String |
Any arguments to append to the command executable when the job is run |
Size must be between 0 and 10000 inclusive |
true |
status |
String |
The status of the job. Options: [RESERVED, RESOLVED, ACCEPTED, CLAIMED, INIT, RUNNING, SUCCEEDED, KILLED, FAILED, INVALID] |
Must not be null |
false |
statusMsg |
String |
The status message of the job |
Size must be between 0 and 255 inclusive |
true |
started |
String |
The time (UTC ISO8601 with millis) the job was started |
true |
|
finished |
String |
The time (UTC ISO8601 with millis) the job finished |
true |
|
archiveLocation |
String |
The URI where the working directory zip was stored |
Size must be between 0 and 1024 inclusive |
true |
clusterName |
String |
The name of the cluster the job was run on if it’s been determined |
Size must be between 0 and 255 inclusive |
true |
commandName |
String |
The name of the command the job was run with if it’s been determined |
Size must be between 0 and 255 inclusive |
true |
runtime |
String |
Runtime of the job in ISO8601 duration format |
Must not be null |
true |
grouping |
String |
The grouping of the job relative to other jobs. e.g. scheduler job name |
true |
|
groupingInstance |
String |
The grouping instance of the job relative to other jobs. e.g. scheduler job run |
true |
HATEOAS Links
Relation | Description |
---|---|
|
URI for this job |
|
The request that kicked off this job |
|
The job execution information for this job |
|
The job metadata information for this job |
|
The output URI for the job |
|
The current status of the job |
|
The cluster this job ran on |
|
The command this job executed |
|
The applications this job used |
HTTP Messages
Request
GET /api/v3/jobs/ed4ca26b-6eb9-41f8-8650-2a75424d604f HTTP/1.1
Host: genie.example.com
Response
HTTP/1.1 200 OK
Content-Type: application/hal+json;charset=UTF-8
Transfer-Encoding: chunked
Date: Fri, 05 Mar 2021 22:54:17 GMT
Keep-Alive: timeout=60
Connection: keep-alive
Content-Length: 2086
{
"id" : "ed4ca26b-6eb9-41f8-8650-2a75424d604f",
"created" : "2021-03-05T22:54:04.150Z",
"updated" : "2021-03-05T22:54:18.289Z",
"version" : "1.0",
"user" : "genie",
"name" : "List * ... Directories bash job",
"description" : "Genie 3 Test Job",
"metadata" : {
"schedulerJobName" : "70eb090a-b574-42c6-a907-d0a3b37c8b7c",
"schedulerRunId" : "271c5eb8-176a-4c7c-9972-950e0e789eb9"
},
"tags" : [ "aTag", "zTag" ],
"status" : "SUCCEEDED",
"statusMsg" : "Job finished successfully.",
"started" : "2021-03-05T22:54:13.075Z",
"finished" : "2021-03-05T22:54:18.165Z",
"archiveLocation" : "file:///tmp/genie/archives/ed4ca26b-6eb9-41f8-8650-2a75424d604f",
"clusterName" : "Local laptop",
"commandName" : "Unix Bash command",
"runtime" : "PT5.09S",
"commandArgs" : "-c 'sleep 5 && echo hello world'",
"grouping" : "Workflow.Foo",
"groupingInstance" : "Workflow.Foo_Step.Blah-2020021919:12:34.000_1",
"_links" : {
"self" : {
"href" : "https://genie.example.com/api/v3/jobs/ed4ca26b-6eb9-41f8-8650-2a75424d604f"
},
"output" : {
"href" : "https://genie.example.com/api/v3/jobs/ed4ca26b-6eb9-41f8-8650-2a75424d604f/output"
},
"request" : {
"href" : "https://genie.example.com/api/v3/jobs/ed4ca26b-6eb9-41f8-8650-2a75424d604f/request"
},
"execution" : {
"href" : "https://genie.example.com/api/v3/jobs/ed4ca26b-6eb9-41f8-8650-2a75424d604f/execution"
},
"metadata" : {
"href" : "https://genie.example.com/api/v3/jobs/ed4ca26b-6eb9-41f8-8650-2a75424d604f/metadata"
},
"status" : {
"href" : "https://genie.example.com/api/v3/jobs/ed4ca26b-6eb9-41f8-8650-2a75424d604f/status"
},
"cluster" : {
"href" : "https://genie.example.com/api/v3/jobs/ed4ca26b-6eb9-41f8-8650-2a75424d604f/cluster"
},
"command" : {
"href" : "https://genie.example.com/api/v3/jobs/ed4ca26b-6eb9-41f8-8650-2a75424d604f/command"
},
"applications" : {
"href" : "https://genie.example.com/api/v3/jobs/ed4ca26b-6eb9-41f8-8650-2a75424d604f/applications"
}
}
}
6.4. Kill a Job
6.4.1. Description
Request for a job to be killed.
6.4.2. Endpoint
DELETE /api/v3/jobs/{id}
6.4.3. API Docs
Request Documentation
Headers
None
Path Parameters
Parameter | Description |
---|---|
|
The resource id |
Query Parameters
None
Payload Fields
None
Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/jobs/64b7c2d3-d1fa-408a-89c6-3ba042196cfd' -i -X DELETE
HTTPie
$ http DELETE 'https://genie.example.com/api/v3/jobs/64b7c2d3-d1fa-408a-89c6-3ba042196cfd'
HTTP Messages
Request
DELETE /api/v3/jobs/64b7c2d3-d1fa-408a-89c6-3ba042196cfd HTTP/1.1
Host: genie.example.com
Response
HTTP/1.1 202 Accepted
Date: Fri, 05 Mar 2021 22:54:02 GMT
Keep-Alive: timeout=60
Connection: keep-alive
6.5. Get Job Status
6.5.1. Description
Get the current status of a job.
6.5.2. Endpoint
GET /api/v3/jobs/{id}/status
6.5.3. API Docs
Request Documentation
Headers
None
Path Parameters
Parameter | Description |
---|---|
|
The resource id |
Query Parameters
None
Payload Fields
None
Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/jobs/ed4ca26b-6eb9-41f8-8650-2a75424d604f/status' -i -X GET
HTTPie
$ http GET 'https://genie.example.com/api/v3/jobs/ed4ca26b-6eb9-41f8-8650-2a75424d604f/status'
Response Documentation
Headers
Name | Description |
---|---|
|
application/json |
Payload Fields
Path | Type | Description | Constraints | Optional |
---|---|---|---|---|
status |
String |
The job status. One of: [RESERVED, RESOLVED, ACCEPTED, CLAIMED, INIT, RUNNING, SUCCEEDED, KILLED, FAILED, INVALID] |
false |
HATEOAS Links
None
HTTP Messages
Request
GET /api/v3/jobs/ed4ca26b-6eb9-41f8-8650-2a75424d604f/status HTTP/1.1
Host: genie.example.com
Response
HTTP/1.1 200 OK
Content-Type: application/json;charset=UTF-8
Transfer-Encoding: chunked
Date: Fri, 05 Mar 2021 22:54:17 GMT
Keep-Alive: timeout=60
Connection: keep-alive
Content-Length: 28
{
"status" : "SUCCEEDED"
}
6.6. Get Contents From the Job Working Directory
6.6.1. Description
This API acts as a file browser for the remote working directory of your job. You can request endpoints and if it is a directory you will be shown the contents of the directory and be able to navigate. If the endpoint points to a file it will return the file.
6.6.2. Endpoint
GET /api/v3/jobs/{id}/output/{path}**
6.6.3. Getting a directory as JSON
This is the default behavior for directories if no Accept header is present
|
6.6.4. API Docs
Request Documentation
Headers
Name | Description |
---|---|
|
application/json |
Path Parameters
Parameter | Description |
---|---|
|
The resource id |
|
The path to the directory to get |
Query Parameters
None
Payload Fields
None
Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/jobs/ed4ca26b-6eb9-41f8-8650-2a75424d604f/output/' -i -X GET \
-H 'Accept: application/json'
HTTPie
$ http GET 'https://genie.example.com/api/v3/jobs/ed4ca26b-6eb9-41f8-8650-2a75424d604f/output/' \
'Accept:application/json'
Response Documentation
Headers
Name | Description |
---|---|
|
application/json |
Payload Fields
Path | Type | Description | Constraints | Optional |
---|---|---|---|---|
parent |
Object |
Information about the parent of this directory |
true |
|
parent.name |
String |
The name of the parent directory |
true |
|
parent.url |
String |
The url to get the parent |
true |
|
parent.size |
Number |
The size of the parent in bytes |
true |
|
parent.lastModified |
String |
The last time the parent was modified in ISO8601 UTC with milliseconds included |
true |
|
directories |
Array |
All the subdirectories of this directory |
false |
|
directories[].name |
String |
The name of the directory |
false |
|
directories[].url |
String |
The url to get the directory |
false |
|
directories[].size |
Number |
The size of the directory in bytes |
false |
|
directories[].lastModified |
String |
The last time the directory was modified in ISO8601 UTC with milliseconds included |
false |
|
files |
Array |
All the files in this directory |
false |
|
files[].name |
String |
The name of the file |
false |
|
files[].url |
String |
The url to get the file |
false |
|
files[].size |
Number |
The size of the file in bytes |
false |
|
files[].lastModified |
String |
The last time the file was modified in ISO8601 UTC with milliseconds included |
false |
HATEOAS Links
None
HTTP Messages
Request
GET /api/v3/jobs/ed4ca26b-6eb9-41f8-8650-2a75424d604f/output/ HTTP/1.1
Accept: application/json
Host: genie.example.com
Response
HTTP/1.1 200 OK
Content-Type: application/json;charset=UTF-8
Content-Length: 1480
Date: Fri, 05 Mar 2021 22:54:19 GMT
Keep-Alive: timeout=60
Connection: keep-alive
{
"parent" : null,
"directories" : [ {
"name" : "genie/",
"url" : "https://genie.example.com/api/v3/jobs/ed4ca26b-6eb9-41f8-8650-2a75424d604f/output/genie",
"size" : 4096,
"lastModified" : "2021-03-05T22:54:12.998406Z"
} ],
"files" : [ {
"name" : "config1",
"url" : "https://genie.example.com/api/v3/jobs/ed4ca26b-6eb9-41f8-8650-2a75424d604f/output/config1",
"size" : 0,
"lastModified" : "2021-03-05T22:54:12.666406Z"
}, {
"name" : "dep1",
"url" : "https://genie.example.com/api/v3/jobs/ed4ca26b-6eb9-41f8-8650-2a75424d604f/output/dep1",
"size" : 0,
"lastModified" : "2021-03-05T22:54:12.642406Z"
}, {
"name" : "genie_setup.sh",
"url" : "https://genie.example.com/api/v3/jobs/ed4ca26b-6eb9-41f8-8650-2a75424d604f/output/genie_setup.sh",
"size" : 0,
"lastModified" : "2021-03-05T22:54:12.650406Z"
}, {
"name" : "run",
"url" : "https://genie.example.com/api/v3/jobs/ed4ca26b-6eb9-41f8-8650-2a75424d604f/output/run",
"size" : 3828,
"lastModified" : "2021-03-05T22:54:12.578406Z"
}, {
"name" : "stderr",
"url" : "https://genie.example.com/api/v3/jobs/ed4ca26b-6eb9-41f8-8650-2a75424d604f/output/stderr",
"size" : 0,
"lastModified" : "2021-03-05T22:54:12.962406Z"
}, {
"name" : "stdout",
"url" : "https://genie.example.com/api/v3/jobs/ed4ca26b-6eb9-41f8-8650-2a75424d604f/output/stdout",
"size" : 12,
"lastModified" : "2021-03-05T22:54:18.006406Z"
} ]
}
6.6.5. Getting a directory as HTML
This would happen automatically if you called from browser due to browser default accept header |
6.6.6. API Docs
Request Documentation
Headers
Name | Description |
---|---|
|
text/html |
Path Parameters
Parameter | Description |
---|---|
|
The resource id |
|
The path to the directory to get |
Query Parameters
None
Payload Fields
None
Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/jobs/ed4ca26b-6eb9-41f8-8650-2a75424d604f/output/' -i -X GET \
-H 'Accept: text/html'
HTTPie
$ http GET 'https://genie.example.com/api/v3/jobs/ed4ca26b-6eb9-41f8-8650-2a75424d604f/output/' \
'Accept:text/html'
Response Documentation
Headers
Name | Description |
---|---|
|
text/html |
Payload Fields
None
HATEOAS Links
None
HTTP Messages
Request
GET /api/v3/jobs/ed4ca26b-6eb9-41f8-8650-2a75424d604f/output/ HTTP/1.1
Accept: text/html
Host: genie.example.com
Response
HTTP/1.1 200 OK
Content-Type: text/html;charset=UTF-8
Content-Length: 2722
Date: Fri, 05 Mar 2021 22:54:19 GMT
Keep-Alive: timeout=60
Connection: keep-alive
<!DOCTYPE html><html><head><title>ed4ca26b-6eb9-41f8-8650-2a75424d604f</title><style type="text/css"><!--body {font-family:Tahoma,Arial,sans-serif;} h1, h2, h3, b {color:white;background-color:#525D76;} h1 {font-size:22px;} h2 {font-size:16px;} h3 {font-size:14px;} p {font-size:12px;} a {color:black;} .line {height:1px;background-color:#525D76;border:none;}--></style> </head><body><h1>ed4ca26b-6eb9-41f8-8650-2a75424d604f</h1><HR size="1" noshade="noshade"><table width="100%" cellspacing="0" cellpadding="5" align="center"><tr><td align="left"><font size="+1"><strong>Filename</strong></font></td><td align="right"><font size="+1"><strong>Size</strong></font></td><td align="right"><font size="+1"><strong>Last Modified</strong></font></td></tr><tr bgcolor="#eeeeee"><td align="left"> <a href="https://genie.example.com/api/v3/jobs/ed4ca26b-6eb9-41f8-8650-2a75424d604f/output/genie"><tt>genie/</tt></a></td><td align="right"><tt>-</tt></td><td align="right"><tt>Fri, 5 Mar 2021 22:54:12 GMT</tt></td></tr><tr><td align="left"> <a href="https://genie.example.com/api/v3/jobs/ed4ca26b-6eb9-41f8-8650-2a75424d604f/output/config1"><tt>config1</tt></a></td><td align="right"><tt>0 bytes</tt></td><td align="right"><tt>Fri, 5 Mar 2021 22:54:12 GMT</tt></td></tr><tr bgcolor="#eeeeee"><td align="left"> <a href="https://genie.example.com/api/v3/jobs/ed4ca26b-6eb9-41f8-8650-2a75424d604f/output/dep1"><tt>dep1</tt></a></td><td align="right"><tt>0 bytes</tt></td><td align="right"><tt>Fri, 5 Mar 2021 22:54:12 GMT</tt></td></tr><tr><td align="left"> <a href="https://genie.example.com/api/v3/jobs/ed4ca26b-6eb9-41f8-8650-2a75424d604f/output/genie_setup.sh"><tt>genie_setup.sh</tt></a></td><td align="right"><tt>0 bytes</tt></td><td align="right"><tt>Fri, 5 Mar 2021 22:54:12 GMT</tt></td></tr><tr bgcolor="#eeeeee"><td align="left"> <a href="https://genie.example.com/api/v3/jobs/ed4ca26b-6eb9-41f8-8650-2a75424d604f/output/run"><tt>run</tt></a></td><td align="right"><tt>3 KB</tt></td><td align="right"><tt>Fri, 5 Mar 2021 22:54:12 GMT</tt></td></tr><tr><td align="left"> <a href="https://genie.example.com/api/v3/jobs/ed4ca26b-6eb9-41f8-8650-2a75424d604f/output/stderr"><tt>stderr</tt></a></td><td align="right"><tt>0 bytes</tt></td><td align="right"><tt>Fri, 5 Mar 2021 22:54:12 GMT</tt></td></tr><tr bgcolor="#eeeeee"><td align="left"> <a href="https://genie.example.com/api/v3/jobs/ed4ca26b-6eb9-41f8-8650-2a75424d604f/output/stdout"><tt>stdout</tt></a></td><td align="right"><tt>12 bytes</tt></td><td align="right"><tt>Fri, 5 Mar 2021 22:54:18 GMT</tt></td></tr></table><HR size="1" noshade="noshade"><h3>Apache Tomcat/9.0.39</h3></body></html>
6.6.8. API Docs
Request Documentation
Headers
Name | Description |
---|---|
|
/ |
Path Parameters
Parameter | Description |
---|---|
|
The resource id |
|
The path to the file to get |
Query Parameters
None
Payload Fields
None
Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/jobs/ed4ca26b-6eb9-41f8-8650-2a75424d604f/output/run' -i -X GET
HTTPie
$ http GET 'https://genie.example.com/api/v3/jobs/ed4ca26b-6eb9-41f8-8650-2a75424d604f/output/run'
Response Documentation
Headers
Name | Description |
---|---|
|
The content type of the file being returned |
Payload Fields
None
HATEOAS Links
None
HTTP Messages
Request
GET /api/v3/jobs/ed4ca26b-6eb9-41f8-8650-2a75424d604f/output/run HTTP/1.1
Host: genie.example.com
Response
HTTP/1.1 200 OK
Last-Modified: Fri, 05 Mar 2021 22:54:12 GMT
Accept-Ranges: bytes
Content-Type: text/plain;charset=UTF-8
Content-Length: 3828
Date: Fri, 05 Mar 2021 22:54:19 GMT
Keep-Alive: timeout=60
Connection: keep-alive
#!/usr/bin/env bash
#
# Generated by Genie for job: ed4ca26b-6eb9-41f8-8650-2a75424d604f
#
# Error out if any command fails
set -o errexit
# Error out if any command in a pipeline fails
set -o pipefail
# Error out if unknown variable is used
set -o nounset
# Save original stdout and stderr in fd 6 and 7
exec 6>&1
exec 7>&2
# Trap exit signals to ensure children processes are dead before returning
function handle_kill_request {
echo "Handling $1 signal" >&2
# Update trap
trap wait SIGTERM SIGINT SIGHUP
# Send SIGTERM to all children
pkill -P $$ || true
for ((iteration=1; iteration < 30; iteration++))
{
if pkill -0 -P $$ &> /dev/null;
then
echo "Waiting for children to terminate" >&2
sleep 1
else
echo "All children terminated" >&2
exit 1
fi
}
# Reaching this point means the children did not die. Kill with SIGKILL
echo "Terminating all children with SIGKILL" >&2
pkill -9 -P $$
}
trap 'handle_kill_request SIGTERM' SIGTERM
trap 'handle_kill_request SIGINT' SIGINT
trap 'handle_kill_request SIGHUP' SIGHUP
# Locally-generated environment variables
export GENIE_JOB_DIR="/tmp/genie/jobs/ed4ca26b-6eb9-41f8-8650-2a75424d604f"
export GENIE_APPLICATION_DIR="${GENIE_JOB_DIR}/genie/applications"
export GENIE_COMMAND_DIR="${GENIE_JOB_DIR}/genie/command/cmd1"
export GENIE_CLUSTER_DIR="${GENIE_JOB_DIR}/genie/cluster/cluster1"
export __GENIE_SETUP_LOG_FILE="${GENIE_JOB_DIR}/genie/logs/setup.log"
export __GENIE_ENVIRONMENT_DUMP_FILE="${GENIE_JOB_DIR}/genie/logs/env.log"
export __GENIE_SETUP_ERROR_MARKER_FILE="${GENIE_JOB_DIR}/genie/setup_failed.txt"
# Mark the beginnig of the setup by creating a marker file
echo "The job script failed during setup. See ${__GENIE_SETUP_LOG_FILE} for details" > ${__GENIE_SETUP_ERROR_MARKER_FILE}
# During setup, redirect stdout and stderr of this script to a log file
exec > ${__GENIE_SETUP_LOG_FILE}
exec 2>&1
echo "Setup start: $(date '+%Y-%m-%d %H:%M:%S')"
# Server-provided environment variables
export GENIE_CLUSTER_ID="cluster1"
export GENIE_CLUSTER_NAME="Local laptop"
export GENIE_CLUSTER_TAGS="localhost"
export GENIE_COMMAND_ID="cmd1"
export GENIE_COMMAND_NAME="Unix Bash command"
export GENIE_COMMAND_TAGS="bash"
export GENIE_JOB_GROUPING="Workflow.Foo"
export GENIE_JOB_GROUPING_INSTANCE="Workflow.Foo_Step.Blah-2020021919:12:34.000_1"
export GENIE_JOB_ID="ed4ca26b-6eb9-41f8-8650-2a75424d604f"
export GENIE_JOB_MEMORY="1024"
export GENIE_JOB_NAME="List * ... Directories bash job"
export GENIE_JOB_TAGS="aTag,zTag"
export GENIE_REQUESTED_CLUSTER_TAGS="[[localhost]]"
export GENIE_REQUESTED_CLUSTER_TAGS_0="localhost"
export GENIE_REQUESTED_COMMAND_TAGS="bash"
export GENIE_USER="genie"
export GENIE_USER_GROUP=""
export GENIE_VERSION="4"
echo "Sourcing setup script for cluster cluster1"
source ${GENIE_JOB_DIR}/genie/cluster/cluster1/genie_setup.sh
echo "Sourcing setup script for application app1"
source ${GENIE_JOB_DIR}/genie/applications/app1/genie_setup.sh
echo "Sourcing setup script for application app2"
source ${GENIE_JOB_DIR}/genie/applications/app2/genie_setup.sh
echo "Sourcing setup script for command cmd1"
source ${GENIE_JOB_DIR}/genie/command/cmd1/genie_setup.sh
echo "Sourcing setup script for job ed4ca26b-6eb9-41f8-8650-2a75424d604f"
source ${GENIE_JOB_DIR}/genie_setup.sh
echo "Setup end: $(date '+%Y-%m-%d %H:%M:%S')"
# Setup completed successfully, delete marker file
rm ${__GENIE_SETUP_ERROR_MARKER_FILE}
# Restore the original stdout and stderr. Close fd 6 and 7
exec 1>&6 6>&-
exec 2>&7 7>&-
# Dump environment post-setup
env | grep -E --regex='.*' | sort > ${__GENIE_ENVIRONMENT_DUMP_FILE}
# Launch the command
/bin/bash -c 'sleep 5 && echo hello world' <&0 &
wait %1
exit $?
6.7. Get a Job Request
6.7.1. Description
Get the original request which spawned the job.
6.7.2. Endpoint
GET /api/v3/jobs/{id}/request
6.7.3. API Docs
Request Documentation
Headers
None
Path Parameters
Parameter | Description |
---|---|
|
The resource id |
Query Parameters
None
Payload Fields
None
Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/jobs/ed4ca26b-6eb9-41f8-8650-2a75424d604f/request' -i -X GET
HTTPie
$ http GET 'https://genie.example.com/api/v3/jobs/ed4ca26b-6eb9-41f8-8650-2a75424d604f/request'
Response Documentation
Headers
Name | Description |
---|---|
|
application/hal+json |
Payload Fields
Path | Type | Description | Constraints | Optional |
---|---|---|---|---|
id |
String |
The id. If not set the system will set one. |
Size must be between 0 and 255 inclusive |
true |
created |
String |
The UTC time of creation. Set by system. ISO8601 format including milliseconds. |
true |
|
updated |
String |
The UTC time of last update. Set by system. ISO8601 format including milliseconds. |
true |
|
name |
String |
The name |
Must not be empty. Size must be between 0 and 255 inclusive |
false |
user |
String |
The user |
Must not be empty. Size must be between 0 and 255 inclusive |
false |
version |
String |
The version |
Must not be empty. Size must be between 0 and 255 inclusive |
false |
description |
String |
Any description |
Size must be between 0 and 1000 inclusive |
true |
metadata |
Object |
Any semi-structured metadata. Must be valid JSON |
true |
|
tags |
Array |
The tags |
true |
|
setupFile |
String |
A location for any setup that needs to be done when installing |
Size must be between 0 and 1024 inclusive |
true |
commandArgs |
String |
Any arguments to append to the command executable when the job is run |
Size must be between 0 and 10000 inclusive |
true |
clusterCriterias |
Array |
List of cluster criteria’s for which a match will be attempted with register cluster tags. Each set of tags within a given cluster criteria must have at least one non-blank (e.g. ' ', ' ', null) tag. |
Must not be empty |
false |
commandCriteria |
Array |
Set of tags which will attempt to match against the commands linked to selected cluster. There must be at least one non-blank (e.g. ' ', ' ', null) criteria within the set |
Must not be empty |
false |
group |
String |
A group that the job should be run under on the linux system |
Size must be between 0 and 255 inclusive |
true |
disableLogArchival |
Boolean |
If you want to disable backing up job output files set this to true. Default: false |
true |
|
String |
If you want e-mail notification on job completion enter address here |
Must be a well-formed email address. Size must be between 0 and 255 inclusive |
true |
|
cpu |
Number |
For future use. Currently has no impact. |
Must be at least 1 |
true |
memory |
Number |
The amount of memory (in MB) desired for job client. Cannot exceed configured max. |
Must be at least 1 |
true |
timeout |
Number |
The timeout (in seconds) after which job will be killed by system, system setting used if not set |
Must be at least 1 |
true |
configs |
Array |
URI’s of configuration files which will be downloaded into job working directory at runtime |
true |
|
dependencies |
Array |
URI’s of dependency files which will be downloaded into job working directory at runtime |
true |
|
applications |
Array |
Complete list of application ids if power user wishes to override selected command defaults |
true |
|
grouping |
String |
The grouping of the job relative to other jobs. e.g. scheduler job name |
true |
|
groupingInstance |
String |
The grouping instance of the job relative to other jobs. e.g. scheduler job run |
true |
HATEOAS Links
Relation | Description |
---|---|
|
URI for this job request |
|
The job that resulted from this request |
|
The job execution that resulted from this request |
|
The job metadata information for this job |
|
The output URI for the job |
|
The current status of the job |
HTTP Messages
Request
GET /api/v3/jobs/ed4ca26b-6eb9-41f8-8650-2a75424d604f/request HTTP/1.1
Host: genie.example.com
Response
HTTP/1.1 200 OK
Content-Type: application/hal+json;charset=UTF-8
Transfer-Encoding: chunked
Date: Fri, 05 Mar 2021 22:54:19 GMT
Keep-Alive: timeout=60
Connection: keep-alive
Content-Length: 2166
{
"id" : "ed4ca26b-6eb9-41f8-8650-2a75424d604f",
"created" : "2021-03-05T22:54:04.150Z",
"updated" : "2021-03-05T22:54:18.289Z",
"version" : "1.0",
"user" : "genie",
"name" : "List * ... Directories bash job",
"description" : "Genie 3 Test Job",
"metadata" : {
"schedulerJobName" : "70eb090a-b574-42c6-a907-d0a3b37c8b7c",
"schedulerRunId" : "271c5eb8-176a-4c7c-9972-950e0e789eb9"
},
"tags" : [ "aTag", "zTag" ],
"configs" : [ "file:/home/travis/build/Netflix/genie/genie-web/build/resources/integTest/com/netflix/genie/web/apis/rest/v3/controllers/JobRestControllerIntegrationTests/job/config1" ],
"dependencies" : [ "file:/home/travis/build/Netflix/genie/genie-web/build/resources/integTest/com/netflix/genie/web/apis/rest/v3/controllers/JobRestControllerIntegrationTests/job/dep1" ],
"setupFile" : "file:/home/travis/build/Netflix/genie/genie-web/build/resources/integTest/com/netflix/genie/web/apis/rest/v3/controllers/JobRestControllerIntegrationTests/job/jobsetupfile",
"commandArgs" : "-c 'sleep 5 && echo hello world'",
"clusterCriterias" : [ {
"tags" : [ "localhost" ]
} ],
"commandCriteria" : [ "bash" ],
"group" : null,
"disableLogArchival" : false,
"email" : null,
"cpu" : null,
"memory" : null,
"timeout" : null,
"applications" : [ ],
"grouping" : "Workflow.Foo",
"groupingInstance" : "Workflow.Foo_Step.Blah-2020021919:12:34.000_1",
"_links" : {
"self" : {
"href" : "https://genie.example.com/api/v3/jobs/ed4ca26b-6eb9-41f8-8650-2a75424d604f/request"
},
"job" : {
"href" : "https://genie.example.com/api/v3/jobs/ed4ca26b-6eb9-41f8-8650-2a75424d604f"
},
"execution" : {
"href" : "https://genie.example.com/api/v3/jobs/ed4ca26b-6eb9-41f8-8650-2a75424d604f/execution"
},
"output" : {
"href" : "https://genie.example.com/api/v3/jobs/ed4ca26b-6eb9-41f8-8650-2a75424d604f/output"
},
"status" : {
"href" : "https://genie.example.com/api/v3/jobs/ed4ca26b-6eb9-41f8-8650-2a75424d604f/status"
},
"metadata" : {
"href" : "https://genie.example.com/api/v3/jobs/ed4ca26b-6eb9-41f8-8650-2a75424d604f/metadata"
}
}
}
6.8. Get a Job Execution
6.8.1. Description
Get metadata about a job execution. Information like where a job was run, its process exit code, etc.
6.8.2. Endpoint
GET /api/v3/jobs/{id}/execution
6.8.3. API Docs
Request Documentation
Headers
None
Path Parameters
Parameter | Description |
---|---|
|
The resource id |
Query Parameters
None
Payload Fields
None
Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/jobs/ed4ca26b-6eb9-41f8-8650-2a75424d604f/execution' -i -X GET
HTTPie
$ http GET 'https://genie.example.com/api/v3/jobs/ed4ca26b-6eb9-41f8-8650-2a75424d604f/execution'
Response Documentation
Headers
Name | Description |
---|---|
|
application/hal+json |
Payload Fields
Path | Type | Description | Constraints | Optional |
---|---|---|---|---|
id |
String |
The id. If not set the system will set one. |
Size must be between 0 and 255 inclusive |
true |
created |
String |
The UTC time of creation. Set by system. ISO8601 format including milliseconds. |
true |
|
updated |
String |
The UTC time of last update. Set by system. ISO8601 format including milliseconds. |
true |
|
hostName |
String |
The host name of the Genie node responsible for the job |
Size must be between 1 and 1024 inclusive |
false |
processId |
Number |
The id of the job client process on the Genie node |
true |
|
checkDelay |
Number |
The amount of time in milliseconds between checks of the job status by Genie |
Must be at least 1 |
true |
timeout |
String |
The date (UTC ISO8601 with millis) when the job will be killed by Genie due to timeout |
true |
|
exitCode |
Number |
The job client process exit code after the job is done |
true |
|
memory |
Number |
The amount of memory (in MB) allocated to the job client |
Must be at least 1 |
true |
archiveStatus |
String |
The archival status of the job directory |
true |
|
launcherExt |
Object |
JSON object that contains metadata specific to the launcher implementation for the job |
true |
HATEOAS Links
Relation | Description |
---|---|
|
URI for this job execution |
|
The job associated with this execution |
|
The job request that spawned this execution |
|
The job metadata information for this job |
|
The output URI for the job |
|
The current status of the job |
HTTP Messages
Request
GET /api/v3/jobs/ed4ca26b-6eb9-41f8-8650-2a75424d604f/execution HTTP/1.1
Host: genie.example.com
Response
HTTP/1.1 200 OK
Content-Type: application/hal+json;charset=UTF-8
Transfer-Encoding: chunked
Date: Fri, 05 Mar 2021 22:54:20 GMT
Keep-Alive: timeout=60
Connection: keep-alive
Content-Length: 1227
{
"id" : "ed4ca26b-6eb9-41f8-8650-2a75424d604f",
"created" : "2021-03-05T22:54:04.150Z",
"updated" : "2021-03-05T22:54:18.289Z",
"hostName" : "localhost",
"processId" : null,
"checkDelay" : null,
"timeout" : "2021-03-12T22:54:13.075Z",
"exitCode" : null,
"memory" : 1024,
"archiveStatus" : "ARCHIVED",
"launcherExt" : {
"launcherClass" : "com.netflix.genie.web.agent.launchers.impl.LocalAgentLauncherImpl",
"sourceHostname" : "localhost"
},
"_links" : {
"self" : {
"href" : "https://genie.example.com/api/v3/jobs/ed4ca26b-6eb9-41f8-8650-2a75424d604f/execution"
},
"job" : {
"href" : "https://genie.example.com/api/v3/jobs/ed4ca26b-6eb9-41f8-8650-2a75424d604f"
},
"request" : {
"href" : "https://genie.example.com/api/v3/jobs/ed4ca26b-6eb9-41f8-8650-2a75424d604f/request"
},
"output" : {
"href" : "https://genie.example.com/api/v3/jobs/ed4ca26b-6eb9-41f8-8650-2a75424d604f/output"
},
"status" : {
"href" : "https://genie.example.com/api/v3/jobs/ed4ca26b-6eb9-41f8-8650-2a75424d604f/status"
},
"metadata" : {
"href" : "https://genie.example.com/api/v3/jobs/ed4ca26b-6eb9-41f8-8650-2a75424d604f/metadata"
}
}
}
6.9. Get Job Metadata
6.9.1. Description
Get metadata about a job beyond core information. Information like where a job was submitted from, how large its output files were, etc.
6.9.2. Endpoint
GET /api/v3/jobs/{id}/metadata
6.9.3. API Docs
Request Documentation
Headers
None
Path Parameters
Parameter | Description |
---|---|
|
The resource id |
Query Parameters
None
Payload Fields
None
Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/jobs/ed4ca26b-6eb9-41f8-8650-2a75424d604f/metadata' -i -X GET
HTTPie
$ http GET 'https://genie.example.com/api/v3/jobs/ed4ca26b-6eb9-41f8-8650-2a75424d604f/metadata'
Response Documentation
Headers
Name | Description |
---|---|
|
application/hal+json |
Payload Fields
Path | Type | Description | Constraints | Optional |
---|---|---|---|---|
id |
String |
The id. If not set the system will set one. |
Size must be between 0 and 255 inclusive |
true |
created |
String |
The UTC time of creation. Set by system. ISO8601 format including milliseconds. |
true |
|
updated |
String |
The UTC time of last update. Set by system. ISO8601 format including milliseconds. |
true |
|
clientHost |
String |
The host name of the client that submitted the job to Genie |
true |
|
userAgent |
String |
The user agent string that was passed to Genie on job request |
true |
|
numAttachments |
Number |
The number of attachments sent to Genie with the job request |
true |
|
totalSizeOfAttachments |
Number |
The total size of all attachments sent to Genie with the job request. In bytes. |
true |
|
stdOutSize |
Number |
The final size of the stdout file after a job is completed. In bytes. |
true |
|
stdErrSize |
Number |
The final size of the stderr file after a job is completed. In bytes. |
true |
HATEOAS Links
Relation | Description |
---|---|
|
URI for this job metadata |
|
The job associated with this execution |
|
The job request that spawned this execution |
|
The job execution information for this job |
|
The output URI for the job |
|
The current status of the job |
HTTP Messages
Request
GET /api/v3/jobs/ed4ca26b-6eb9-41f8-8650-2a75424d604f/metadata HTTP/1.1
Host: genie.example.com
Response
HTTP/1.1 200 OK
Content-Type: application/hal+json;charset=UTF-8
Transfer-Encoding: chunked
Date: Fri, 05 Mar 2021 22:54:20 GMT
Keep-Alive: timeout=60
Connection: keep-alive
Content-Length: 1083
{
"id" : "ed4ca26b-6eb9-41f8-8650-2a75424d604f",
"created" : "2021-03-05T22:54:04.150Z",
"updated" : "2021-03-05T22:54:18.289Z",
"clientHost" : "127.0.0.1",
"userAgent" : "Apache-HttpClient/4.5.13 (Java/1.8.0_252)",
"numAttachments" : 0,
"totalSizeOfAttachments" : 0,
"stdOutSize" : null,
"stdErrSize" : null,
"_links" : {
"self" : {
"href" : "https://genie.example.com/api/v3/jobs/ed4ca26b-6eb9-41f8-8650-2a75424d604f/metadata"
},
"job" : {
"href" : "https://genie.example.com/api/v3/jobs/ed4ca26b-6eb9-41f8-8650-2a75424d604f"
},
"request" : {
"href" : "https://genie.example.com/api/v3/jobs/ed4ca26b-6eb9-41f8-8650-2a75424d604f/request"
},
"output" : {
"href" : "https://genie.example.com/api/v3/jobs/ed4ca26b-6eb9-41f8-8650-2a75424d604f/output"
},
"status" : {
"href" : "https://genie.example.com/api/v3/jobs/ed4ca26b-6eb9-41f8-8650-2a75424d604f/status"
},
"execution" : {
"href" : "https://genie.example.com/api/v3/jobs/ed4ca26b-6eb9-41f8-8650-2a75424d604f/execution"
}
}
}
6.10. Get the Cluster a Job Ran On
6.10.1. Description
Get the metadata about the cluster which was selected to run the job based on the cluster and command criteria in the job request.
6.10.2. Endpoint
GET /api/v3/jobs/{id}/cluster
6.10.3. API Docs
Request Documentation
Headers
None
Path Parameters
Parameter | Description |
---|---|
|
The resource id |
Query Parameters
None
Payload Fields
None
Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/jobs/ed4ca26b-6eb9-41f8-8650-2a75424d604f/cluster' -i -X GET
HTTPie
$ http GET 'https://genie.example.com/api/v3/jobs/ed4ca26b-6eb9-41f8-8650-2a75424d604f/cluster'
Response Documentation
Headers
Name | Description |
---|---|
|
application/hal+json |
Payload Fields
Path | Type | Description | Constraints | Optional |
---|---|---|---|---|
id |
String |
The id. If not set the system will set one. |
Size must be between 0 and 255 inclusive |
true |
created |
String |
The UTC time of creation. Set by system. ISO8601 format including milliseconds. |
true |
|
updated |
String |
The UTC time of last update. Set by system. ISO8601 format including milliseconds. |
true |
|
name |
String |
The name |
Must not be empty. Size must be between 0 and 255 inclusive |
false |
user |
String |
The user |
Must not be empty. Size must be between 0 and 255 inclusive |
false |
version |
String |
The version |
Must not be empty. Size must be between 0 and 255 inclusive |
false |
description |
String |
Any description |
Size must be between 0 and 1000 inclusive |
true |
metadata |
Object |
Any semi-structured metadata. Must be valid JSON |
true |
|
tags |
Array |
The tags |
true |
|
setupFile |
String |
A location for any setup that needs to be done when installing |
Size must be between 0 and 1024 inclusive |
true |
configs |
Array |
Any configuration files needed for the resource |
true |
|
status |
String |
The status of the cluster. Options: [UP, OUT_OF_SERVICE, TERMINATED] |
Must not be null |
false |
dependencies |
Array |
The dependencies for the cluster |
true |
HATEOAS Links
Relation | Description |
---|---|
|
URI for this cluster |
|
Get all the commands this cluster can use |
HTTP Messages
Request
GET /api/v3/jobs/ed4ca26b-6eb9-41f8-8650-2a75424d604f/cluster HTTP/1.1
Host: genie.example.com
Response
HTTP/1.1 200 OK
Content-Type: application/hal+json;charset=UTF-8
Transfer-Encoding: chunked
Date: Fri, 05 Mar 2021 22:54:20 GMT
Keep-Alive: timeout=60
Connection: keep-alive
Content-Length: 1490
{
"id" : "cluster1",
"created" : "2021-03-05T22:54:03.868Z",
"updated" : "2021-03-05T22:54:03.868Z",
"version" : "1.0",
"user" : "genie",
"name" : "Local laptop",
"description" : null,
"metadata" : null,
"tags" : [ "localhost", "genie.id:cluster1", "genie.name:Local laptop" ],
"configs" : [ "file:/home/travis/build/Netflix/genie/genie-web/build/resources/integTest/com/netflix/genie/web/apis/rest/v3/controllers/JobRestControllerIntegrationTests/cluster1/config1", "file:/home/travis/build/Netflix/genie/genie-web/build/resources/integTest/com/netflix/genie/web/apis/rest/v3/controllers/JobRestControllerIntegrationTests/cluster1/config2" ],
"dependencies" : [ "file:/home/travis/build/Netflix/genie/genie-web/build/resources/integTest/com/netflix/genie/web/apis/rest/v3/controllers/JobRestControllerIntegrationTests/cluster1/dep1", "file:/home/travis/build/Netflix/genie/genie-web/build/resources/integTest/com/netflix/genie/web/apis/rest/v3/controllers/JobRestControllerIntegrationTests/cluster1/dep2" ],
"setupFile" : "file:/home/travis/build/Netflix/genie/genie-web/build/resources/integTest/com/netflix/genie/web/apis/rest/v3/controllers/JobRestControllerIntegrationTests/cluster1/setupfile",
"status" : "UP",
"_links" : {
"self" : {
"href" : "https://genie.example.com/api/v3/clusters/cluster1"
},
"commands" : {
"href" : "https://genie.example.com/api/v3/clusters/cluster1/commands{?status}",
"templated" : true
}
}
}
6.11. Get the Command a Job Executed
6.11.1. Description
Get the metadata about the command which was selected to be executed by the job based on the cluster and command criteria in the job request.
6.11.2. Endpoint
GET /api/v3/jobs/{id}/command
6.11.3. API Docs
Request Documentation
Headers
None
Path Parameters
Parameter | Description |
---|---|
|
The resource id |
Query Parameters
None
Payload Fields
None
Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/jobs/ed4ca26b-6eb9-41f8-8650-2a75424d604f/command' -i -X GET
HTTPie
$ http GET 'https://genie.example.com/api/v3/jobs/ed4ca26b-6eb9-41f8-8650-2a75424d604f/command'
Response Documentation
Headers
Name | Description |
---|---|
|
application/hal+json |
Payload Fields
Path | Type | Description | Constraints | Optional |
---|---|---|---|---|
id |
String |
The id. If not set the system will set one. |
Size must be between 0 and 255 inclusive |
true |
created |
String |
The UTC time of creation. Set by system. ISO8601 format including milliseconds. |
true |
|
updated |
String |
The UTC time of last update. Set by system. ISO8601 format including milliseconds. |
true |
|
name |
String |
The name |
Must not be empty. Size must be between 0 and 255 inclusive |
false |
user |
String |
The user |
Must not be empty. Size must be between 0 and 255 inclusive |
false |
version |
String |
The version |
Must not be empty. Size must be between 0 and 255 inclusive |
false |
description |
String |
Any description |
Size must be between 0 and 1000 inclusive |
true |
metadata |
Object |
Any semi-structured metadata. Must be valid JSON |
true |
|
tags |
Array |
The tags |
true |
|
setupFile |
String |
A location for any setup that needs to be done when installing |
Size must be between 0 and 1024 inclusive |
true |
configs |
Array |
Any configuration files needed for the resource |
true |
|
status |
String |
The status of the command. Options: [ACTIVE, DEPRECATED, INACTIVE] |
Must not be null |
false |
executable |
String |
The executable to run on the Genie node when this command is used. e.g. /usr/bin/hadoop |
Must not be empty. Size must be between 0 and 1024 inclusive |
false |
executableAndArguments |
Array |
The executable and arguments to run on the Genie node when this command is used. e.g. /usr/bin/hadoop |
Must not be empty |
false |
checkDelay |
Number |
The amount of time (in milliseconds) to delay between checks of the jobs using this command |
Must be at least 1 |
false |
memory |
Number |
The default amount of memory (in MB) that should be allocated for instances of this command client |
Must be at least 1 |
true |
dependencies |
Array |
The dependencies for the command |
true |
|
clusterCriteria |
Array |
The priority ordered list of criteria to resolve clusters that this command can run jobs on |
true |
HATEOAS Links
Relation | Description |
---|---|
|
URI for this command |
|
Get all the applications this command depends on |
|
Get all clusters this command is available on |
HTTP Messages
Request
GET /api/v3/jobs/ed4ca26b-6eb9-41f8-8650-2a75424d604f/command HTTP/1.1
Host: genie.example.com
Response
HTTP/1.1 200 OK
Content-Type: application/hal+json;charset=UTF-8
Transfer-Encoding: chunked
Date: Fri, 05 Mar 2021 22:54:20 GMT
Keep-Alive: timeout=60
Connection: keep-alive
Content-Length: 2011
{
"id" : "cmd1",
"created" : "2021-03-05T22:54:03.910Z",
"updated" : "2021-03-05T22:54:03.980Z",
"version" : "1.0",
"user" : "genie",
"name" : "Unix Bash command",
"description" : null,
"metadata" : null,
"tags" : [ "genie.name:Unix Bash command", "bash", "genie.id:cmd1" ],
"configs" : [ "file:/home/travis/build/Netflix/genie/genie-web/build/resources/integTest/com/netflix/genie/web/apis/rest/v3/controllers/JobRestControllerIntegrationTests/cmd1/config2", "file:/home/travis/build/Netflix/genie/genie-web/build/resources/integTest/com/netflix/genie/web/apis/rest/v3/controllers/JobRestControllerIntegrationTests/cmd1/GB18030.txt", "file:/home/travis/build/Netflix/genie/genie-web/build/resources/integTest/com/netflix/genie/web/apis/rest/v3/controllers/JobRestControllerIntegrationTests/cmd1/config1" ],
"dependencies" : [ "file:/home/travis/build/Netflix/genie/genie-web/build/resources/integTest/com/netflix/genie/web/apis/rest/v3/controllers/JobRestControllerIntegrationTests/cluster1/dep1", "file:/home/travis/build/Netflix/genie/genie-web/build/resources/integTest/com/netflix/genie/web/apis/rest/v3/controllers/JobRestControllerIntegrationTests/cluster1/dep2" ],
"setupFile" : "file:/home/travis/build/Netflix/genie/genie-web/build/resources/integTest/com/netflix/genie/web/apis/rest/v3/controllers/JobRestControllerIntegrationTests/cmd1/setupfile",
"status" : "ACTIVE",
"executable" : "/bin/bash",
"executableAndArguments" : [ "/bin/bash" ],
"checkDelay" : 250,
"memory" : null,
"clusterCriteria" : [ {
"id" : null,
"name" : null,
"version" : null,
"status" : null,
"tags" : [ "localhost" ]
} ],
"_links" : {
"self" : {
"href" : "https://genie.example.com/api/v3/commands/cmd1"
},
"applications" : {
"href" : "https://genie.example.com/api/v3/commands/cmd1/applications"
},
"clusters" : {
"href" : "https://genie.example.com/api/v3/commands/cmd1/clusters{?status}",
"templated" : true
}
}
}
6.12. Get the Applications a Job Command Used
6.12.1. Description
Get the list of applications that were used by the command selected by job to execute.
6.12.2. Endpoint
GET /api/v3/jobs/{id}/applications
6.12.3. API Docs
Request Documentation
Headers
None
Path Parameters
Parameter | Description |
---|---|
|
The resource id |
Query Parameters
None
Payload Fields
None
Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/jobs/ed4ca26b-6eb9-41f8-8650-2a75424d604f/applications' -i -X GET
HTTPie
$ http GET 'https://genie.example.com/api/v3/jobs/ed4ca26b-6eb9-41f8-8650-2a75424d604f/applications'
Response Documentation
Headers
Name | Description |
---|---|
|
application/hal+json |
Payload Fields
Path | Type | Description | Constraints | Optional |
---|---|---|---|---|
[] |
Array |
The applications for the job |
false |
HATEOAS Links
None
HTTP Messages
Request
GET /api/v3/jobs/ed4ca26b-6eb9-41f8-8650-2a75424d604f/applications HTTP/1.1
Host: genie.example.com
Response
HTTP/1.1 200 OK
Content-Type: application/hal+json;charset=UTF-8
Transfer-Encoding: chunked
Date: Fri, 05 Mar 2021 22:54:21 GMT
Keep-Alive: timeout=60
Connection: keep-alive
Content-Length: 2904
[ {
"id" : "app1",
"created" : "2021-03-05T22:54:03.791Z",
"updated" : "2021-03-05T22:54:03.791Z",
"version" : "1.0",
"user" : "genie",
"name" : "Application 1",
"description" : null,
"metadata" : null,
"tags" : [ "genie.id:app1", "genie.name:Application 1" ],
"configs" : [ "file:/home/travis/build/Netflix/genie/genie-web/build/resources/integTest/com/netflix/genie/web/apis/rest/v3/controllers/JobRestControllerIntegrationTests/app1/config1", "file:/home/travis/build/Netflix/genie/genie-web/build/resources/integTest/com/netflix/genie/web/apis/rest/v3/controllers/JobRestControllerIntegrationTests/app1/config2" ],
"dependencies" : [ "file:/home/travis/build/Netflix/genie/genie-web/build/resources/integTest/com/netflix/genie/web/apis/rest/v3/controllers/JobRestControllerIntegrationTests/app1/dep2", "file:/home/travis/build/Netflix/genie/genie-web/build/resources/integTest/com/netflix/genie/web/apis/rest/v3/controllers/JobRestControllerIntegrationTests/app1/dep1" ],
"setupFile" : "file:/home/travis/build/Netflix/genie/genie-web/build/resources/integTest/com/netflix/genie/web/apis/rest/v3/controllers/JobRestControllerIntegrationTests/app1/setupfile",
"status" : "ACTIVE",
"type" : null,
"links" : [ {
"rel" : "self",
"href" : "https://genie.example.com/api/v3/applications/app1"
}, {
"rel" : "commands",
"href" : "https://genie.example.com/api/v3/applications/app1/commands{?status}"
} ]
}, {
"id" : "app2",
"created" : "2021-03-05T22:54:03.822Z",
"updated" : "2021-03-05T22:54:03.822Z",
"version" : "1.0",
"user" : "genie",
"name" : "Application 2",
"description" : null,
"metadata" : null,
"tags" : [ "genie.id:app2", "genie.name:Application 2" ],
"configs" : [ "file:/home/travis/build/Netflix/genie/genie-web/build/resources/integTest/com/netflix/genie/web/apis/rest/v3/controllers/JobRestControllerIntegrationTests/app2/config1", "file:/home/travis/build/Netflix/genie/genie-web/build/resources/integTest/com/netflix/genie/web/apis/rest/v3/controllers/JobRestControllerIntegrationTests/app2/config2" ],
"dependencies" : [ "file:/home/travis/build/Netflix/genie/genie-web/build/resources/integTest/com/netflix/genie/web/apis/rest/v3/controllers/JobRestControllerIntegrationTests/app2/dep1", "file:/home/travis/build/Netflix/genie/genie-web/build/resources/integTest/com/netflix/genie/web/apis/rest/v3/controllers/JobRestControllerIntegrationTests/app2/dep2" ],
"setupFile" : "file:/home/travis/build/Netflix/genie/genie-web/build/resources/integTest/com/netflix/genie/web/apis/rest/v3/controllers/JobRestControllerIntegrationTests/app2/setupfile",
"status" : "ACTIVE",
"type" : null,
"links" : [ {
"rel" : "self",
"href" : "https://genie.example.com/api/v3/applications/app2"
}, {
"rel" : "commands",
"href" : "https://genie.example.com/api/v3/applications/app2/commands{?status}"
} ]
} ]
7. Applications API
7.1. Create an Application
7.1.1. Description
Create a new application in the system.
7.1.2. Endpoint
POST /api/v3/applications
The id in this example is optional. If you include one Genie will use it. If not it will provide one. If you provide one it must be unique. |
7.1.3. API Docs
Request Documentation
Headers
Name | Description |
---|---|
|
application/json |
Path Parameters
None
Query Parameters
None
Payload Fields
Path | Type | Description | Constraints | Optional |
---|---|---|---|---|
id |
String |
The id. If not set the system will set one. |
Size must be between 0 and 255 inclusive |
true |
created |
String |
The UTC time of creation. Set by system. ISO8601 format including milliseconds. |
true |
|
updated |
String |
The UTC time of last update. Set by system. ISO8601 format including milliseconds. |
true |
|
name |
String |
The name |
Must not be empty. Size must be between 0 and 255 inclusive |
false |
user |
String |
The user |
Must not be empty. Size must be between 0 and 255 inclusive |
false |
version |
String |
The version |
Must not be empty. Size must be between 0 and 255 inclusive |
false |
description |
String |
Any description |
Size must be between 0 and 1000 inclusive |
true |
metadata |
Object |
Any semi-structured metadata. Must be valid JSON |
true |
|
tags |
Array |
The tags |
true |
|
setupFile |
String |
A location for any setup that needs to be done when installing |
Size must be between 0 and 1024 inclusive |
true |
configs |
Array |
Any configuration files needed for the resource |
true |
|
type |
String |
The type of application this is (e.g. hadoop, presto, spark). Can be used to group. |
true |
|
status |
String |
The status of the application. Options: [ACTIVE, DEPRECATED, INACTIVE] |
Must not be null |
false |
dependencies |
Array |
The dependencies for the application |
true |
Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/applications' -i -X POST \
-H 'Content-Type: application/json; charset=UTF-8' \
-d '{
"id" : null,
"created" : null,
"updated" : null,
"version" : "1.5.1",
"user" : "genie",
"name" : "spark",
"description" : "Spark for Genie",
"metadata" : null,
"tags" : [ "type:spark", "ver:1.5.1" ],
"configs" : [ "s3://mybucket/spark/1.5.1/spark-env.sh" ],
"dependencies" : [ "s3://mybucket/spark/1.5.1/spark.tar.gz" ],
"setupFile" : "s3://mybucket/spark/1.5.1/setupBase-spark.sh",
"status" : "ACTIVE",
"type" : "spark"
}'
HTTPie
$ echo '{
"id" : null,
"created" : null,
"updated" : null,
"version" : "1.5.1",
"user" : "genie",
"name" : "spark",
"description" : "Spark for Genie",
"metadata" : null,
"tags" : [ "type:spark", "ver:1.5.1" ],
"configs" : [ "s3://mybucket/spark/1.5.1/spark-env.sh" ],
"dependencies" : [ "s3://mybucket/spark/1.5.1/spark.tar.gz" ],
"setupFile" : "s3://mybucket/spark/1.5.1/setupBase-spark.sh",
"status" : "ACTIVE",
"type" : "spark"
}' | http POST 'https://genie.example.com/api/v3/applications' \
'Content-Type:application/json; charset=UTF-8'
Response Documentation
Headers
Name | Description |
---|---|
|
The URI |
Payload Fields
None
HATEOAS Links
None
HTTP Messages
Request
POST /api/v3/applications HTTP/1.1
Content-Type: application/json; charset=UTF-8
Host: genie.example.com
Content-Length: 452
{
"id" : null,
"created" : null,
"updated" : null,
"version" : "1.5.1",
"user" : "genie",
"name" : "spark",
"description" : "Spark for Genie",
"metadata" : null,
"tags" : [ "type:spark", "ver:1.5.1" ],
"configs" : [ "s3://mybucket/spark/1.5.1/spark-env.sh" ],
"dependencies" : [ "s3://mybucket/spark/1.5.1/spark.tar.gz" ],
"setupFile" : "s3://mybucket/spark/1.5.1/setupBase-spark.sh",
"status" : "ACTIVE",
"type" : "spark"
}
Response
HTTP/1.1 201 Created
Location: https://genie.example.com/api/v3/applications/2c2fec6e-f73a-48d6-8ddf-ee9a5ed50d1e
Date: Fri, 05 Mar 2021 22:55:51 GMT
Keep-Alive: timeout=60
Connection: keep-alive
7.2. Get an Application
7.2.1. Description
Get the metadata about an application in the system.
7.2.2. Endpoint
GET /api/v3/applications/{id}
7.2.3. API Docs
Request Documentation
Headers
None
Path Parameters
Parameter | Description |
---|---|
|
The resource id |
Query Parameters
None
Payload Fields
None
Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/applications/2c2fec6e-f73a-48d6-8ddf-ee9a5ed50d1e' -i -X GET
HTTPie
$ http GET 'https://genie.example.com/api/v3/applications/2c2fec6e-f73a-48d6-8ddf-ee9a5ed50d1e'
Response Documentation
Headers
Name | Description |
---|---|
|
application/hal+json |
Payload Fields
Path | Type | Description | Constraints | Optional |
---|---|---|---|---|
id |
String |
The id. If not set the system will set one. |
Size must be between 0 and 255 inclusive |
true |
created |
String |
The UTC time of creation. Set by system. ISO8601 format including milliseconds. |
true |
|
updated |
String |
The UTC time of last update. Set by system. ISO8601 format including milliseconds. |
true |
|
name |
String |
The name |
Must not be empty. Size must be between 0 and 255 inclusive |
false |
user |
String |
The user |
Must not be empty. Size must be between 0 and 255 inclusive |
false |
version |
String |
The version |
Must not be empty. Size must be between 0 and 255 inclusive |
false |
description |
String |
Any description |
Size must be between 0 and 1000 inclusive |
true |
metadata |
Object |
Any semi-structured metadata. Must be valid JSON |
true |
|
tags |
Array |
The tags |
true |
|
setupFile |
String |
A location for any setup that needs to be done when installing |
Size must be between 0 and 1024 inclusive |
true |
configs |
Array |
Any configuration files needed for the resource |
true |
|
type |
String |
The type of application this is (e.g. hadoop, presto, spark). Can be used to group. |
true |
|
status |
String |
The status of the application. Options: [ACTIVE, DEPRECATED, INACTIVE] |
Must not be null |
false |
dependencies |
Array |
The dependencies for the application |
true |
HATEOAS Links
Relation | Description |
---|---|
|
URI for this application |
|
Get all the commands using this application |
HTTP Messages
Request
GET /api/v3/applications/2c2fec6e-f73a-48d6-8ddf-ee9a5ed50d1e HTTP/1.1
Host: genie.example.com
Response
HTTP/1.1 200 OK
Content-Type: application/hal+json;charset=UTF-8
Transfer-Encoding: chunked
Date: Fri, 05 Mar 2021 22:55:51 GMT
Keep-Alive: timeout=60
Connection: keep-alive
Content-Length: 910
{
"id" : "2c2fec6e-f73a-48d6-8ddf-ee9a5ed50d1e",
"created" : "2021-03-05T22:55:51.644Z",
"updated" : "2021-03-05T22:55:51.644Z",
"version" : "1.5.1",
"user" : "genie",
"name" : "spark",
"description" : "Spark for Genie",
"metadata" : null,
"tags" : [ "type:spark", "ver:1.5.1", "genie.id:2c2fec6e-f73a-48d6-8ddf-ee9a5ed50d1e", "genie.name:spark" ],
"configs" : [ "s3://mybucket/spark/1.5.1/spark-env.sh" ],
"dependencies" : [ "s3://mybucket/spark/1.5.1/spark.tar.gz" ],
"setupFile" : "s3://mybucket/spark/1.5.1/setupBase-spark.sh",
"status" : "ACTIVE",
"type" : "spark",
"_links" : {
"self" : {
"href" : "https://genie.example.com/api/v3/applications/2c2fec6e-f73a-48d6-8ddf-ee9a5ed50d1e"
},
"commands" : {
"href" : "https://genie.example.com/api/v3/applications/2c2fec6e-f73a-48d6-8ddf-ee9a5ed50d1e/commands{?status}",
"templated" : true
}
}
}
7.3. Find Applications
7.3.1. Description
Find applications using various query parameters.
7.3.2. Endpoint
GET /api/v3/applications
7.3.3. API Docs
Request Documentation
Headers
None
Path Parameters
None
Query Parameters
Parameter | Description |
---|---|
|
The page number to get. Default to 0. |
|
The size of the page to get. Default to 64. |
|
The fields to sort the results by. Defaults to 'updated,desc'. |
|
The name of the applications to find. Use % to perform a regex like query |
|
The user of the applications to find. Use % to perform a regex like query |
|
The status(es) of the applications to find. Can have multiple. Options: [ACTIVE, DEPRECATED, INACTIVE] |
|
The tag(s) of the applications to find. Can have multiple. |
|
The type of the applications to find. Use % to perform a regex like query |
Payload Fields
None
Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/applications?status=ACTIVE&status=DEPRECATED&status=%5BACTIVE%2C+DEPRECATED%5D' -i -X GET
HTTPie
$ http GET 'https://genie.example.com/api/v3/applications?status=ACTIVE&status=DEPRECATED&status=%5BACTIVE%2C+DEPRECATED%5D'
Response Documentation
Headers
Name | Description |
---|---|
|
application/hal+json |
Payload Fields
Path | Type | Description | Constraints | Optional |
---|---|---|---|---|
_links |
Object |
Links to other resources. |
false |
|
page |
Object |
The result page information. |
false |
|
page.size |
Number |
The number of elements in this page result. |
false |
|
page.totalElements |
Number |
The total number of elements this search result could return. |
false |
|
page.totalPages |
Number |
The total number of pages there could be at the current page size. |
false |
|
page.number |
Number |
The current page number. |
false |
|
_embedded.applicationList |
Array |
The found applications. |
false |
HATEOAS Links
Relation | Description |
---|---|
|
The current search |
|
The first page for this search |
|
The previous page for this search |
|
The next page for this search |
|
The last page for this search |
HTTP Messages
Request
GET /api/v3/applications?status=ACTIVE&status=DEPRECATED&status=%5BACTIVE%2C+DEPRECATED%5D HTTP/1.1
Host: genie.example.com
Response
HTTP/1.1 200 OK
Content-Type: application/hal+json;charset=UTF-8
Transfer-Encoding: chunked
Date: Fri, 05 Mar 2021 22:55:49 GMT
Keep-Alive: timeout=60
Connection: keep-alive
Content-Length: 6406
{
"_embedded" : {
"applicationList" : [ {
"id" : "71c4c0e8-cbbc-4d61-bb4d-a7d94cc993e6",
"created" : "2021-03-05T22:55:50.067Z",
"updated" : "2021-03-05T22:55:50.067Z",
"version" : "1.0.0",
"user" : "genieUser7",
"name" : "hive",
"description" : "Hive 1.0.0 for Genie",
"metadata" : null,
"tags" : [ "type:hive", "genie.name:hive", "ver:1.0.0", "genie.id:71c4c0e8-cbbc-4d61-bb4d-a7d94cc993e6" ],
"configs" : [ "s3://mybucket/hive/hive-env.sh", "s3://mybucket/hive/hive-log4j.properties" ],
"dependencies" : [ "s3://mybucket/hive/hive-1.0.0.tar.gz" ],
"setupFile" : "s3://mybucket/hive/setupBase-hive.sh",
"status" : "ACTIVE",
"type" : "hive",
"_links" : {
"self" : {
"href" : "https://genie.example.com/api/v3/applications/71c4c0e8-cbbc-4d61-bb4d-a7d94cc993e6"
},
"commands" : {
"href" : "https://genie.example.com/api/v3/applications/71c4c0e8-cbbc-4d61-bb4d-a7d94cc993e6/commands{?status}",
"templated" : true
}
}
}, {
"id" : "a3a2b118-b941-4701-9958-eb478039996f",
"created" : "2021-03-05T22:55:50.048Z",
"updated" : "2021-03-05T22:55:50.048Z",
"version" : "0.4.0",
"user" : "genieUser6",
"name" : "spark",
"description" : "Pig 0.15.0 for Genie",
"metadata" : null,
"tags" : [ "ver:0.15.0", "type:pig", "genie.id:a3a2b118-b941-4701-9958-eb478039996f", "genie.name:spark" ],
"configs" : [ "s3://mybucket/pig/pig.properties" ],
"dependencies" : [ "s3://mybucket/pig/pig-0.15.0.tar.gz" ],
"setupFile" : "s3://mybucket/pig/setupBase-pig.sh",
"status" : "ACTIVE",
"type" : "pig",
"_links" : {
"self" : {
"href" : "https://genie.example.com/api/v3/applications/a3a2b118-b941-4701-9958-eb478039996f"
},
"commands" : {
"href" : "https://genie.example.com/api/v3/applications/a3a2b118-b941-4701-9958-eb478039996f/commands{?status}",
"templated" : true
}
}
}, {
"id" : "004e188a-9c20-4cc9-83b7-a5acdad368a8",
"created" : "2021-03-05T22:55:50.031Z",
"updated" : "2021-03-05T22:55:50.031Z",
"version" : "1.3.1",
"user" : "genieUser5",
"name" : "spark",
"description" : "Spark 1.3.1 for Genie",
"metadata" : null,
"tags" : [ "genie.id:004e188a-9c20-4cc9-83b7-a5acdad368a8", "type:spark", "ver:1.3.1", "genie.name:spark" ],
"configs" : [ "s3://mybucket/spark/spark-env.sh" ],
"dependencies" : [ "s3://mybucket/spark/spark-1.3.1.tar.gz" ],
"setupFile" : "s3://mybucket/spark/setupBase-spark.sh",
"status" : "DEPRECATED",
"type" : "spark",
"_links" : {
"self" : {
"href" : "https://genie.example.com/api/v3/applications/004e188a-9c20-4cc9-83b7-a5acdad368a8"
},
"commands" : {
"href" : "https://genie.example.com/api/v3/applications/004e188a-9c20-4cc9-83b7-a5acdad368a8/commands{?status}",
"templated" : true
}
}
}, {
"id" : "6ead26cf-2b42-43cc-a012-5c28655368e9",
"created" : "2021-03-05T22:55:50.017Z",
"updated" : "2021-03-05T22:55:50.017Z",
"version" : "1.4.0",
"user" : "genieUser4",
"name" : "spark",
"description" : "Spark 1.4.0 for Genie",
"metadata" : null,
"tags" : [ "genie.id:6ead26cf-2b42-43cc-a012-5c28655368e9", "type:spark", "ver:1.4.0", "genie.name:spark" ],
"configs" : [ "s3://mybucket/spark/spark-env.sh" ],
"dependencies" : [ "s3://mybucket/spark/spark-1.4.0.tar.gz" ],
"setupFile" : "s3://mybucket/spark/setupBase-spark.sh",
"status" : "DEPRECATED",
"type" : "spark",
"_links" : {
"self" : {
"href" : "https://genie.example.com/api/v3/applications/6ead26cf-2b42-43cc-a012-5c28655368e9"
},
"commands" : {
"href" : "https://genie.example.com/api/v3/applications/6ead26cf-2b42-43cc-a012-5c28655368e9/commands{?status}",
"templated" : true
}
}
}, {
"id" : "cb544c21-96e6-4b45-933c-6df3fc9cc3bf",
"created" : "2021-03-05T22:55:49.983Z",
"updated" : "2021-03-05T22:55:49.983Z",
"version" : "1.5.0",
"user" : "genieUser2",
"name" : "spark",
"description" : "Spark 1.5.0 for Genie",
"metadata" : null,
"tags" : [ "type:spark", "ver:1.5.0", "genie.id:cb544c21-96e6-4b45-933c-6df3fc9cc3bf", "genie.name:spark" ],
"configs" : [ "s3://mybucket/spark/spark-env.sh" ],
"dependencies" : [ "s3://mybucket/spark/spark-1.5.0.tar.gz" ],
"setupFile" : "s3://mybucket/spark/setupBase-spark.sh",
"status" : "ACTIVE",
"type" : "spark",
"_links" : {
"self" : {
"href" : "https://genie.example.com/api/v3/applications/cb544c21-96e6-4b45-933c-6df3fc9cc3bf"
},
"commands" : {
"href" : "https://genie.example.com/api/v3/applications/cb544c21-96e6-4b45-933c-6df3fc9cc3bf/commands{?status}",
"templated" : true
}
}
}, {
"id" : "99cbe47b-c466-4667-950d-8646412581a7",
"created" : "2021-03-05T22:55:49.965Z",
"updated" : "2021-03-05T22:55:49.965Z",
"version" : "1.5.1",
"user" : "genieUser1",
"name" : "spark",
"description" : "Spark 1.5.1 for Genie",
"metadata" : null,
"tags" : [ "genie.id:99cbe47b-c466-4667-950d-8646412581a7", "type:spark", "ver:1.5.1", "genie.name:spark" ],
"configs" : [ "s3://mybucket/spark/spark-env.sh" ],
"dependencies" : [ "s3://mybucket/spark/spark-1.5.1.tar.gz" ],
"setupFile" : "s3://mybucket/spark/setupBase-spark.sh",
"status" : "ACTIVE",
"type" : "spark",
"_links" : {
"self" : {
"href" : "https://genie.example.com/api/v3/applications/99cbe47b-c466-4667-950d-8646412581a7"
},
"commands" : {
"href" : "https://genie.example.com/api/v3/applications/99cbe47b-c466-4667-950d-8646412581a7/commands{?status}",
"templated" : true
}
}
} ]
},
"_links" : {
"self" : {
"href" : "https://genie.example.com/api/v3/applications?status=ACTIVE&status=DEPRECATED{&name,user,tag,type}",
"templated" : true
}
},
"page" : {
"size" : 10,
"totalElements" : 6,
"totalPages" : 1,
"number" : 0
}
}
7.4. Update an Entire Application
7.4.1. Description
Update the metadata about an application. This method does a complete replace of the resource. Usual flow is to call to get the most recent state then update what you want and call this API with the result.
For more fine grained control call the PATCH API. |
7.4.2. Endpoint
PUT /api/v3/applications/{id}
7.4.3. API Docs
Request Documentation
Headers
Name | Description |
---|---|
|
application/json |
Path Parameters
Parameter | Description |
---|---|
|
The resource id |
Query Parameters
None
Payload Fields
Path | Type | Description | Constraints | Optional |
---|---|---|---|---|
id |
String |
The id. If not set the system will set one. |
Size must be between 0 and 255 inclusive |
true |
created |
String |
The UTC time of creation. Set by system. ISO8601 format including milliseconds. |
true |
|
updated |
String |
The UTC time of last update. Set by system. ISO8601 format including milliseconds. |
true |
|
name |
String |
The name |
Must not be empty. Size must be between 0 and 255 inclusive |
false |
user |
String |
The user |
Must not be empty. Size must be between 0 and 255 inclusive |
false |
version |
String |
The version |
Must not be empty. Size must be between 0 and 255 inclusive |
false |
description |
String |
Any description |
Size must be between 0 and 1000 inclusive |
true |
metadata |
Object |
Any semi-structured metadata. Must be valid JSON |
true |
|
tags |
Array |
The tags |
true |
|
setupFile |
String |
A location for any setup that needs to be done when installing |
Size must be between 0 and 1024 inclusive |
true |
configs |
Array |
Any configuration files needed for the resource |
true |
|
type |
String |
The type of application this is (e.g. hadoop, presto, spark). Can be used to group. |
true |
|
status |
String |
The status of the application. Options: [ACTIVE, DEPRECATED, INACTIVE] |
Must not be null |
false |
dependencies |
Array |
The dependencies for the application |
true |
Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/applications/371f6168-22f9-4de1-a67e-922cb1b3cbc1.8ad93725-8a83-4696-90bc-8cf2d6eeb6cf' -i -X PUT \
-H 'Content-Type: application/json; charset=UTF-8' \
-d '{
"id" : "371f6168-22f9-4de1-a67e-922cb1b3cbc1.8ad93725-8a83-4696-90bc-8cf2d6eeb6cf",
"created" : "2021-03-05T22:55:52.432Z",
"updated" : "2021-03-05T22:55:52.432Z",
"version" : "1.5.1",
"user" : "genie",
"name" : "spark",
"description" : null,
"metadata" : null,
"tags" : [ "genie.id:371f6168-22f9-4de1-a67e-922cb1b3cbc1.8ad93725-8a83-4696-90bc-8cf2d6eeb6cf", "genie.name:spark" ],
"configs" : [ ],
"dependencies" : [ ],
"setupFile" : null,
"status" : "INACTIVE",
"type" : null
}'
HTTPie
$ echo '{
"id" : "371f6168-22f9-4de1-a67e-922cb1b3cbc1.8ad93725-8a83-4696-90bc-8cf2d6eeb6cf",
"created" : "2021-03-05T22:55:52.432Z",
"updated" : "2021-03-05T22:55:52.432Z",
"version" : "1.5.1",
"user" : "genie",
"name" : "spark",
"description" : null,
"metadata" : null,
"tags" : [ "genie.id:371f6168-22f9-4de1-a67e-922cb1b3cbc1.8ad93725-8a83-4696-90bc-8cf2d6eeb6cf", "genie.name:spark" ],
"configs" : [ ],
"dependencies" : [ ],
"setupFile" : null,
"status" : "INACTIVE",
"type" : null
}' | http PUT 'https://genie.example.com/api/v3/applications/371f6168-22f9-4de1-a67e-922cb1b3cbc1.8ad93725-8a83-4696-90bc-8cf2d6eeb6cf' \
'Content-Type:application/json; charset=UTF-8'
HTTP Messages
Request
PUT /api/v3/applications/371f6168-22f9-4de1-a67e-922cb1b3cbc1.8ad93725-8a83-4696-90bc-8cf2d6eeb6cf HTTP/1.1
Content-Type: application/json; charset=UTF-8
Host: genie.example.com
Content-Length: 508
{
"id" : "371f6168-22f9-4de1-a67e-922cb1b3cbc1.8ad93725-8a83-4696-90bc-8cf2d6eeb6cf",
"created" : "2021-03-05T22:55:52.432Z",
"updated" : "2021-03-05T22:55:52.432Z",
"version" : "1.5.1",
"user" : "genie",
"name" : "spark",
"description" : null,
"metadata" : null,
"tags" : [ "genie.id:371f6168-22f9-4de1-a67e-922cb1b3cbc1.8ad93725-8a83-4696-90bc-8cf2d6eeb6cf", "genie.name:spark" ],
"configs" : [ ],
"dependencies" : [ ],
"setupFile" : null,
"status" : "INACTIVE",
"type" : null
}
Response
HTTP/1.1 204 No Content
Date: Fri, 05 Mar 2021 22:55:52 GMT
Keep-Alive: timeout=60
Connection: keep-alive
7.5. Update Parts of an Application
7.5.1. Description
Update the metadata about an application using JSON Patch. This will ONLY update the fields you request be changed.
For more information about JSON Patch RFC see the website. |
7.5.2. Endpoint
PATCH /api/v3/applications/{id}
7.5.3. API Docs
Request Documentation
Headers
Name | Description |
---|---|
|
application/json |
Path Parameters
Parameter | Description |
---|---|
|
The resource id |
Query Parameters
None
Payload Fields
Path | Type | Description | Constraints | Optional |
---|---|---|---|---|
[] |
Array |
Array of patches to apply |
false |
|
[].op |
String |
Patch operation to perform. |
add, remove, replace, copy, move, test |
false |
[].path |
String |
The json path to operate on. e.g. /user |
false |
|
[].from |
String |
The json path to move or copy from. e.g. /user |
true |
|
[].value |
String |
The json value to put at the path for an add, replace or test |
true |
Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/applications/371f6168-22f9-4de1-a67e-922cb1b3cbc1.8ad93725-8a83-4696-90bc-8cf2d6eeb6cf' -i -X PATCH \
-H 'Content-Type: application/json; charset=UTF-8' \
-d '[ {
"op" : "replace",
"path" : "/user",
"value" : "c6b2df15-78a7-4e17-8c4b-58048f6be5ac"
} ]'
HTTPie
$ echo '[ {
"op" : "replace",
"path" : "/user",
"value" : "c6b2df15-78a7-4e17-8c4b-58048f6be5ac"
} ]' | http PATCH 'https://genie.example.com/api/v3/applications/371f6168-22f9-4de1-a67e-922cb1b3cbc1.8ad93725-8a83-4696-90bc-8cf2d6eeb6cf' \
'Content-Type:application/json; charset=UTF-8'
HTTP Messages
Request
PATCH /api/v3/applications/371f6168-22f9-4de1-a67e-922cb1b3cbc1.8ad93725-8a83-4696-90bc-8cf2d6eeb6cf HTTP/1.1
Content-Type: application/json; charset=UTF-8
Host: genie.example.com
Content-Length: 98
[ {
"op" : "replace",
"path" : "/user",
"value" : "c6b2df15-78a7-4e17-8c4b-58048f6be5ac"
} ]
Response
HTTP/1.1 204 No Content
Date: Fri, 05 Mar 2021 22:55:48 GMT
Keep-Alive: timeout=60
Connection: keep-alive
7.6. Delete All Applications
7.6.1. Description
Delete all the applications currently stored in the system.
7.6.2. Endpoint
DELETE /api/v3/applications
7.6.3. API Docs
Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/applications' -i -X DELETE
HTTPie
$ http DELETE 'https://genie.example.com/api/v3/applications'
HTTP Messages
Request
DELETE /api/v3/applications HTTP/1.1
Host: genie.example.com
Response
HTTP/1.1 204 No Content
Date: Fri, 05 Mar 2021 22:55:52 GMT
Keep-Alive: timeout=60
Connection: keep-alive
7.7. Delete an Application
7.7.1. Description
Delete an application currently configured in the system.
7.7.2. Endpoint
DELETE /api/v3/applications/{id}
7.7.3. API Docs
Request Documentation
Headers
None
Path Parameters
Parameter | Description |
---|---|
|
The resource id |
Query Parameters
None
Payload Fields
None
Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/applications/f3addbaf-bf36-4508-a849-37901e87ed0e' -i -X DELETE
HTTPie
$ http DELETE 'https://genie.example.com/api/v3/applications/f3addbaf-bf36-4508-a849-37901e87ed0e'
HTTP Messages
Request
DELETE /api/v3/applications/f3addbaf-bf36-4508-a849-37901e87ed0e HTTP/1.1
Host: genie.example.com
Response
HTTP/1.1 204 No Content
Date: Fri, 05 Mar 2021 22:55:52 GMT
Keep-Alive: timeout=60
Connection: keep-alive
7.8. Get Configs for Application
7.8.1. Description
Get the configuration file locations for an application.
7.8.2. Endpoint
GET /api/v3/applications/{id}/configs
7.8.3. API Docs
Request Documentation
Headers
None
Path Parameters
Parameter | Description |
---|---|
|
The resource id |
Query Parameters
None
Payload Fields
None
Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/applications/371f6168-22f9-4de1-a67e-922cb1b3cbc1.8ad93725-8a83-4696-90bc-8cf2d6eeb6cf/configs' -i -X GET
HTTPie
$ http GET 'https://genie.example.com/api/v3/applications/371f6168-22f9-4de1-a67e-922cb1b3cbc1.8ad93725-8a83-4696-90bc-8cf2d6eeb6cf/configs'
Response Documentation
Headers
Name | Description |
---|---|
|
application/json |
Payload Fields
Path | Type | Description | Constraints | Optional |
---|---|---|---|---|
[] |
Array |
Array of configuration file locations |
false |
HATEOAS Links
None
HTTP Messages
Request
GET /api/v3/applications/371f6168-22f9-4de1-a67e-922cb1b3cbc1.8ad93725-8a83-4696-90bc-8cf2d6eeb6cf/configs HTTP/1.1
Host: genie.example.com
Response
HTTP/1.1 200 OK
Content-Type: application/json;charset=UTF-8
Transfer-Encoding: chunked
Date: Fri, 05 Mar 2021 22:55:53 GMT
Keep-Alive: timeout=60
Connection: keep-alive
Content-Length: 82
[ "581efb50-9b00-4d60-8c13-7b344295b2a6", "bf67a9f5-ca05-4a24-bc4a-cea901d3192f" ]
7.9. Add Configs to Application
7.9.1. Description
Add configuration file locations to an existing application. Configurations are stored as a set so any duplicates will be ignored.
7.9.2. Endpoint
POST /api/v3/applications/{id}/configs
7.9.3. API Docs
Request Documentation
Headers
Name | Description |
---|---|
|
application/json |
Path Parameters
Parameter | Description |
---|---|
|
The resource id |
Query Parameters
None
Payload Fields
Path | Type | Description | Constraints | Optional |
---|---|---|---|---|
[] |
Array |
Array of configuration file locations |
false |
Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/applications/371f6168-22f9-4de1-a67e-922cb1b3cbc1.8ad93725-8a83-4696-90bc-8cf2d6eeb6cf/configs' -i -X POST \
-H 'Content-Type: application/json; charset=UTF-8' \
-d '[ "581efb50-9b00-4d60-8c13-7b344295b2a6", "bf67a9f5-ca05-4a24-bc4a-cea901d3192f" ]'
HTTPie
$ echo '[ "581efb50-9b00-4d60-8c13-7b344295b2a6", "bf67a9f5-ca05-4a24-bc4a-cea901d3192f" ]' | http POST 'https://genie.example.com/api/v3/applications/371f6168-22f9-4de1-a67e-922cb1b3cbc1.8ad93725-8a83-4696-90bc-8cf2d6eeb6cf/configs' \
'Content-Type:application/json; charset=UTF-8'
HTTP Messages
Request
POST /api/v3/applications/371f6168-22f9-4de1-a67e-922cb1b3cbc1.8ad93725-8a83-4696-90bc-8cf2d6eeb6cf/configs HTTP/1.1
Content-Type: application/json; charset=UTF-8
Host: genie.example.com
Content-Length: 82
[ "581efb50-9b00-4d60-8c13-7b344295b2a6", "bf67a9f5-ca05-4a24-bc4a-cea901d3192f" ]
Response
HTTP/1.1 204 No Content
Date: Fri, 05 Mar 2021 22:55:53 GMT
Keep-Alive: timeout=60
Connection: keep-alive
7.10. Update Configs for an Application
7.10.1. Description
Update the configuration file locations for an existing application. Stored as a set so duplicates are ignored.
7.10.2. Endpoint
PUT /api/v3/applications/{id}/configs
7.10.3. API Docs
Request Documentation
Headers
Name | Description |
---|---|
|
application/json |
Path Parameters
Parameter | Description |
---|---|
|
The resource id |
Query Parameters
None
Payload Fields
Path | Type | Description | Constraints | Optional |
---|---|---|---|---|
[] |
Array |
Array of configuration file locations |
false |
Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/applications/371f6168-22f9-4de1-a67e-922cb1b3cbc1.8ad93725-8a83-4696-90bc-8cf2d6eeb6cf/configs' -i -X PUT \
-H 'Content-Type: application/json; charset=UTF-8' \
-d '[ "c4ea9739-7a0e-46c7-a8fc-8140861630ff" ]'
HTTPie
$ echo '[ "c4ea9739-7a0e-46c7-a8fc-8140861630ff" ]' | http PUT 'https://genie.example.com/api/v3/applications/371f6168-22f9-4de1-a67e-922cb1b3cbc1.8ad93725-8a83-4696-90bc-8cf2d6eeb6cf/configs' \
'Content-Type:application/json; charset=UTF-8'
HTTP Messages
Request
PUT /api/v3/applications/371f6168-22f9-4de1-a67e-922cb1b3cbc1.8ad93725-8a83-4696-90bc-8cf2d6eeb6cf/configs HTTP/1.1
Content-Type: application/json; charset=UTF-8
Host: genie.example.com
Content-Length: 42
[ "c4ea9739-7a0e-46c7-a8fc-8140861630ff" ]
Response
HTTP/1.1 204 No Content
Date: Fri, 05 Mar 2021 22:55:52 GMT
Keep-Alive: timeout=60
Connection: keep-alive
7.11. Remove All Configs From an Application
7.11.1. Description
Remove all the configuration file locations for an existing application.
7.11.2. Endpoint
DELETE /api/v3/applications/{id}/configs
7.11.3. API Docs
Request Documentation
Headers
None
Path Parameters
Parameter | Description |
---|---|
|
The resource id |
Query Parameters
None
Payload Fields
None
Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/applications/371f6168-22f9-4de1-a67e-922cb1b3cbc1.8ad93725-8a83-4696-90bc-8cf2d6eeb6cf/configs' -i -X DELETE
HTTPie
$ http DELETE 'https://genie.example.com/api/v3/applications/371f6168-22f9-4de1-a67e-922cb1b3cbc1.8ad93725-8a83-4696-90bc-8cf2d6eeb6cf/configs'
HTTP Messages
Request
DELETE /api/v3/applications/371f6168-22f9-4de1-a67e-922cb1b3cbc1.8ad93725-8a83-4696-90bc-8cf2d6eeb6cf/configs HTTP/1.1
Host: genie.example.com
Response
HTTP/1.1 204 No Content
Date: Fri, 05 Mar 2021 22:55:52 GMT
Keep-Alive: timeout=60
Connection: keep-alive
7.12. Get Dependencies For an Application
7.12.1. Description
Get the dependency file locations for an application.
7.12.2. Endpoint
GET /api/v3/applications/{id}/dependencies
7.12.3. API Docs
Request Documentation
Headers
None
Path Parameters
Parameter | Description |
---|---|
|
The resource id |
Query Parameters
None
Payload Fields
None
Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/applications/371f6168-22f9-4de1-a67e-922cb1b3cbc1.8ad93725-8a83-4696-90bc-8cf2d6eeb6cf/dependencies' -i -X GET
HTTPie
$ http GET 'https://genie.example.com/api/v3/applications/371f6168-22f9-4de1-a67e-922cb1b3cbc1.8ad93725-8a83-4696-90bc-8cf2d6eeb6cf/dependencies'
Response Documentation
Headers
Name | Description |
---|---|
|
application/json |
Payload Fields
Path | Type | Description | Constraints | Optional |
---|---|---|---|---|
[] |
Array |
Array of dependency file locations |
false |
HATEOAS Links
None
HTTP Messages
Request
GET /api/v3/applications/371f6168-22f9-4de1-a67e-922cb1b3cbc1.8ad93725-8a83-4696-90bc-8cf2d6eeb6cf/dependencies HTTP/1.1
Host: genie.example.com
Response
HTTP/1.1 200 OK
Content-Type: application/json;charset=UTF-8
Transfer-Encoding: chunked
Date: Fri, 05 Mar 2021 22:55:51 GMT
Keep-Alive: timeout=60
Connection: keep-alive
Content-Length: 82
[ "db0aaa18-db09-42e0-bb6a-a1cd13f8e7b7", "faeae5b5-096e-4878-9fa8-0bcd61db7c2f" ]
7.13. Add Dependencies to Application
7.13.1. Description
Add dependency file locations to an existing application. Stored as a set so all duplicates are ignored.
7.13.2. Endpoint
POST /api/v3/applications/{id}/dependencies
7.13.3. API Docs
Request Documentation
Headers
Name | Description |
---|---|
|
application/json |
Path Parameters
Parameter | Description |
---|---|
|
The resource id |
Query Parameters
None
Payload Fields
Path | Type | Description | Constraints | Optional |
---|---|---|---|---|
[] |
Array |
Array of dependency file locations |
false |
Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/applications/371f6168-22f9-4de1-a67e-922cb1b3cbc1.8ad93725-8a83-4696-90bc-8cf2d6eeb6cf/dependencies' -i -X POST \
-H 'Content-Type: application/json; charset=UTF-8' \
-d '[ "faeae5b5-096e-4878-9fa8-0bcd61db7c2f", "db0aaa18-db09-42e0-bb6a-a1cd13f8e7b7" ]'
HTTPie
$ echo '[ "faeae5b5-096e-4878-9fa8-0bcd61db7c2f", "db0aaa18-db09-42e0-bb6a-a1cd13f8e7b7" ]' | http POST 'https://genie.example.com/api/v3/applications/371f6168-22f9-4de1-a67e-922cb1b3cbc1.8ad93725-8a83-4696-90bc-8cf2d6eeb6cf/dependencies' \
'Content-Type:application/json; charset=UTF-8'
HTTP Messages
Request
POST /api/v3/applications/371f6168-22f9-4de1-a67e-922cb1b3cbc1.8ad93725-8a83-4696-90bc-8cf2d6eeb6cf/dependencies HTTP/1.1
Content-Type: application/json; charset=UTF-8
Host: genie.example.com
Content-Length: 82
[ "faeae5b5-096e-4878-9fa8-0bcd61db7c2f", "db0aaa18-db09-42e0-bb6a-a1cd13f8e7b7" ]
Response
HTTP/1.1 204 No Content
Date: Fri, 05 Mar 2021 22:55:51 GMT
Keep-Alive: timeout=60
Connection: keep-alive
7.14. Update Dependencies for an Application
7.14.1. Description
Update the dependency file locations for an existing application
7.14.2. Endpoint
PUT /api/v3/applications/{id}/dependencies
7.14.3. API Docs
Request Documentation
Headers
Name | Description |
---|---|
|
application/json |
Path Parameters
Parameter | Description |
---|---|
|
The resource id |
Query Parameters
None
Payload Fields
Path | Type | Description | Constraints | Optional |
---|---|---|---|---|
[] |
Array |
Array of dependency file locations |
false |
Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/applications/371f6168-22f9-4de1-a67e-922cb1b3cbc1.8ad93725-8a83-4696-90bc-8cf2d6eeb6cf/dependencies' -i -X PUT \
-H 'Content-Type: application/json; charset=UTF-8' \
-d '[ "075b93f5-6e57-4ea9-b28c-436753a7d5a4" ]'
HTTPie
$ echo '[ "075b93f5-6e57-4ea9-b28c-436753a7d5a4" ]' | http PUT 'https://genie.example.com/api/v3/applications/371f6168-22f9-4de1-a67e-922cb1b3cbc1.8ad93725-8a83-4696-90bc-8cf2d6eeb6cf/dependencies' \
'Content-Type:application/json; charset=UTF-8'
HTTP Messages
Request
PUT /api/v3/applications/371f6168-22f9-4de1-a67e-922cb1b3cbc1.8ad93725-8a83-4696-90bc-8cf2d6eeb6cf/dependencies HTTP/1.1
Content-Type: application/json; charset=UTF-8
Host: genie.example.com
Content-Length: 42
[ "075b93f5-6e57-4ea9-b28c-436753a7d5a4" ]
Response
HTTP/1.1 204 No Content
Date: Fri, 05 Mar 2021 22:55:53 GMT
Keep-Alive: timeout=60
Connection: keep-alive
7.15. Remove All Dependencies From an Application
7.15.1. Description
Remove all the dependency file locations for an existing application.
7.15.2. Endpoint
DELETE /api/v3/applications/{id}/dependencies
7.15.3. API Docs
Request Documentation
Headers
None
Path Parameters
Parameter | Description |
---|---|
|
The resource id |
Query Parameters
None
Payload Fields
None
Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/applications/371f6168-22f9-4de1-a67e-922cb1b3cbc1.8ad93725-8a83-4696-90bc-8cf2d6eeb6cf/dependencies' -i -X DELETE
HTTPie
$ http DELETE 'https://genie.example.com/api/v3/applications/371f6168-22f9-4de1-a67e-922cb1b3cbc1.8ad93725-8a83-4696-90bc-8cf2d6eeb6cf/dependencies'
HTTP Messages
Request
DELETE /api/v3/applications/371f6168-22f9-4de1-a67e-922cb1b3cbc1.8ad93725-8a83-4696-90bc-8cf2d6eeb6cf/dependencies HTTP/1.1
Host: genie.example.com
Response
HTTP/1.1 204 No Content
Date: Fri, 05 Mar 2021 22:55:52 GMT
Keep-Alive: timeout=60
Connection: keep-alive
7.16. Get Tags For an Application
7.16.1. Description
Get the tags for an application.
7.16.2. Endpoint
GET /api/v3/applications/{id}/tags
7.16.3. API Docs
Request Documentation
Headers
None
Path Parameters
Parameter | Description |
---|---|
|
The resource id |
Query Parameters
None
Payload Fields
None
Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/applications/371f6168-22f9-4de1-a67e-922cb1b3cbc1.8ad93725-8a83-4696-90bc-8cf2d6eeb6cf/tags' -i -X GET
HTTPie
$ http GET 'https://genie.example.com/api/v3/applications/371f6168-22f9-4de1-a67e-922cb1b3cbc1.8ad93725-8a83-4696-90bc-8cf2d6eeb6cf/tags'
Response Documentation
Headers
Name | Description |
---|---|
|
application/json |
Payload Fields
Path | Type | Description | Constraints | Optional |
---|---|---|---|---|
[] |
Array |
Array of tags |
false |
HATEOAS Links
None
HTTP Messages
Request
GET /api/v3/applications/371f6168-22f9-4de1-a67e-922cb1b3cbc1.8ad93725-8a83-4696-90bc-8cf2d6eeb6cf/tags HTTP/1.1
Host: genie.example.com
Response
HTTP/1.1 200 OK
Content-Type: application/json;charset=UTF-8
Transfer-Encoding: chunked
Date: Fri, 05 Mar 2021 22:55:52 GMT
Keep-Alive: timeout=60
Connection: keep-alive
Content-Length: 188
[ "f227e08d-1d5c-46d2-ad99-e72b94d88fd8", "fd6ecdbd-d817-4eb7-899b-f245cc3d0b74", "genie.id:371f6168-22f9-4de1-a67e-922cb1b3cbc1.8ad93725-8a83-4696-90bc-8cf2d6eeb6cf", "genie.name:spark" ]
7.17. Add Tags to Application
7.17.1. Description
Add tags to an existing application. Stored as a set so all duplicates are ignored.
genie.id:{id} and genie.name:{name} tags are automatically added by the service.
|
7.17.2. Endpoint
POST /api/v3/applications/{id}/tags
7.17.3. API Docs
Request Documentation
Headers
Name | Description |
---|---|
|
application/json |
Path Parameters
Parameter | Description |
---|---|
|
The resource id |
Query Parameters
None
Payload Fields
Path | Type | Description | Constraints | Optional |
---|---|---|---|---|
[] |
Array |
Array of tags |
false |
Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/applications/371f6168-22f9-4de1-a67e-922cb1b3cbc1.8ad93725-8a83-4696-90bc-8cf2d6eeb6cf/tags' -i -X POST \
-H 'Content-Type: application/json; charset=UTF-8' \
-d '[ "f227e08d-1d5c-46d2-ad99-e72b94d88fd8", "fd6ecdbd-d817-4eb7-899b-f245cc3d0b74" ]'
HTTPie
$ echo '[ "f227e08d-1d5c-46d2-ad99-e72b94d88fd8", "fd6ecdbd-d817-4eb7-899b-f245cc3d0b74" ]' | http POST 'https://genie.example.com/api/v3/applications/371f6168-22f9-4de1-a67e-922cb1b3cbc1.8ad93725-8a83-4696-90bc-8cf2d6eeb6cf/tags' \
'Content-Type:application/json; charset=UTF-8'
HTTP Messages
Request
POST /api/v3/applications/371f6168-22f9-4de1-a67e-922cb1b3cbc1.8ad93725-8a83-4696-90bc-8cf2d6eeb6cf/tags HTTP/1.1
Content-Type: application/json; charset=UTF-8
Host: genie.example.com
Content-Length: 82
[ "f227e08d-1d5c-46d2-ad99-e72b94d88fd8", "fd6ecdbd-d817-4eb7-899b-f245cc3d0b74" ]
Response
HTTP/1.1 204 No Content
Date: Fri, 05 Mar 2021 22:55:52 GMT
Keep-Alive: timeout=60
Connection: keep-alive
7.18. Update Tags for an Application
7.18.1. Description
Update the tags for an existing application.
The genie.id:{id} and genie.name:{name} tags can’t be removed. They will automatically be added back
by the system.
|
7.18.2. Endpoint
PUT /api/v3/applications/{id}/tags
7.18.3. API Docs
Request Documentation
Headers
Name | Description |
---|---|
|
application/json |
Path Parameters
Parameter | Description |
---|---|
|
The resource id |
Query Parameters
None
Payload Fields
Path | Type | Description | Constraints | Optional |
---|---|---|---|---|
[] |
Array |
Array of tags |
false |
Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/applications/371f6168-22f9-4de1-a67e-922cb1b3cbc1.8ad93725-8a83-4696-90bc-8cf2d6eeb6cf/tags' -i -X PUT \
-H 'Content-Type: application/json; charset=UTF-8' \
-d '[ "e83a7931-434d-456f-bd3e-d003bcdeb30f" ]'
HTTPie
$ echo '[ "e83a7931-434d-456f-bd3e-d003bcdeb30f" ]' | http PUT 'https://genie.example.com/api/v3/applications/371f6168-22f9-4de1-a67e-922cb1b3cbc1.8ad93725-8a83-4696-90bc-8cf2d6eeb6cf/tags' \
'Content-Type:application/json; charset=UTF-8'
HTTP Messages
Request
PUT /api/v3/applications/371f6168-22f9-4de1-a67e-922cb1b3cbc1.8ad93725-8a83-4696-90bc-8cf2d6eeb6cf/tags HTTP/1.1
Content-Type: application/json; charset=UTF-8
Host: genie.example.com
Content-Length: 42
[ "e83a7931-434d-456f-bd3e-d003bcdeb30f" ]
Response
HTTP/1.1 204 No Content
Date: Fri, 05 Mar 2021 22:55:51 GMT
Keep-Alive: timeout=60
Connection: keep-alive
7.19. Remove All Tags From Application
7.19.1. Description
Remove all the tags for an existing application
The genie.id:{id} and genie.name:{name} tags will NOT be removed by this operation
|
7.19.2. Endpoint
DELETE /api/v3/applications/{id}/tags
7.19.3. API Docs
Request Documentation
Headers
None
Path Parameters
Parameter | Description |
---|---|
|
The resource id |
Query Parameters
None
Payload Fields
None
Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/applications/371f6168-22f9-4de1-a67e-922cb1b3cbc1.8ad93725-8a83-4696-90bc-8cf2d6eeb6cf/tags' -i -X DELETE
HTTPie
$ http DELETE 'https://genie.example.com/api/v3/applications/371f6168-22f9-4de1-a67e-922cb1b3cbc1.8ad93725-8a83-4696-90bc-8cf2d6eeb6cf/tags'
HTTP Messages
Request
DELETE /api/v3/applications/371f6168-22f9-4de1-a67e-922cb1b3cbc1.8ad93725-8a83-4696-90bc-8cf2d6eeb6cf/tags HTTP/1.1
Host: genie.example.com
Response
HTTP/1.1 204 No Content
Date: Fri, 05 Mar 2021 22:55:53 GMT
Keep-Alive: timeout=60
Connection: keep-alive
7.20. Remove Tag From Application
7.20.1. Description
Remove a tag from an existing application.
You can’t remove the genie.id:{id} and genie.name:{name} tags. They will just be added back by the system
|
7.20.2. Endpoint
DELETE /api/v3/applications/{id}/tags/{tag}
7.20.3. API Docs
Request Documentation
Headers
None
Path Parameters
Parameter | Description |
---|---|
|
The resource id |
|
The tag to remove |
Query Parameters
None
Payload Fields
None
Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/applications/371f6168-22f9-4de1-a67e-922cb1b3cbc1.8ad93725-8a83-4696-90bc-8cf2d6eeb6cf/tags/94580a97-b0e3-4b54-91e7-fb1b523d37a9' -i -X DELETE
HTTPie
$ http DELETE 'https://genie.example.com/api/v3/applications/371f6168-22f9-4de1-a67e-922cb1b3cbc1.8ad93725-8a83-4696-90bc-8cf2d6eeb6cf/tags/94580a97-b0e3-4b54-91e7-fb1b523d37a9'
HTTP Messages
Request
DELETE /api/v3/applications/371f6168-22f9-4de1-a67e-922cb1b3cbc1.8ad93725-8a83-4696-90bc-8cf2d6eeb6cf/tags/94580a97-b0e3-4b54-91e7-fb1b523d37a9 HTTP/1.1
Host: genie.example.com
Response
HTTP/1.1 204 No Content
Date: Fri, 05 Mar 2021 22:55:51 GMT
Keep-Alive: timeout=60
Connection: keep-alive
7.21. Get the Commands that Use an Application
7.21.1. Description
Search the commands that use the given application.
7.21.2. Endpoint
GET /api/v3/applications/{id}/commands
7.21.3. API Docs
Request Documentation
Headers
None
Path Parameters
Parameter | Description |
---|---|
|
The resource id |
Query Parameters
Parameter | Description |
---|---|
|
The status of commands to search for |
Payload Fields
None
Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/applications/371f6168-22f9-4de1-a67e-922cb1b3cbc1.8ad93725-8a83-4696-90bc-8cf2d6eeb6cf/commands?status=ACTIVE&status=INACTIVE&status=%5BACTIVE%2C+INACTIVE%5D' -i -X GET
HTTPie
$ http GET 'https://genie.example.com/api/v3/applications/371f6168-22f9-4de1-a67e-922cb1b3cbc1.8ad93725-8a83-4696-90bc-8cf2d6eeb6cf/commands?status=ACTIVE&status=INACTIVE&status=%5BACTIVE%2C+INACTIVE%5D'
Response Documentation
Headers
Name | Description |
---|---|
|
application/hal+json |
Payload Fields
Path | Type | Description | Constraints | Optional |
---|---|---|---|---|
[] |
Array |
The list of commands found |
false |
HATEOAS Links
None
HTTP Messages
Request
GET /api/v3/applications/371f6168-22f9-4de1-a67e-922cb1b3cbc1.8ad93725-8a83-4696-90bc-8cf2d6eeb6cf/commands?status=ACTIVE&status=INACTIVE&status=%5BACTIVE%2C+INACTIVE%5D HTTP/1.1
Host: genie.example.com
Response
HTTP/1.1 200 OK
Content-Type: application/hal+json;charset=UTF-8
Transfer-Encoding: chunked
Date: Fri, 05 Mar 2021 22:55:52 GMT
Keep-Alive: timeout=60
Connection: keep-alive
Content-Length: 1100
[ {
"id" : "e4b0cd97-b6d8-4074-b651-2e4ccc382e93",
"created" : "2021-03-05T22:55:52.716Z",
"updated" : "2021-03-05T22:55:52.768Z",
"version" : "15e86d1c-b1a4-4979-b657-4f29d3d80057",
"user" : "15e86d1c-b1a4-4979-b657-4f29d3d80057",
"name" : "15e86d1c-b1a4-4979-b657-4f29d3d80057",
"description" : null,
"metadata" : null,
"tags" : [ "genie.id:e4b0cd97-b6d8-4074-b651-2e4ccc382e93", "genie.name:15e86d1c-b1a4-4979-b657-4f29d3d80057" ],
"configs" : [ ],
"dependencies" : [ ],
"setupFile" : null,
"status" : "ACTIVE",
"executable" : "bash",
"executableAndArguments" : [ "bash" ],
"checkDelay" : 1000,
"memory" : null,
"clusterCriteria" : [ ],
"links" : [ {
"rel" : "self",
"href" : "https://genie.example.com/api/v3/commands/e4b0cd97-b6d8-4074-b651-2e4ccc382e93"
}, {
"rel" : "applications",
"href" : "https://genie.example.com/api/v3/commands/e4b0cd97-b6d8-4074-b651-2e4ccc382e93/applications"
}, {
"rel" : "clusters",
"href" : "https://genie.example.com/api/v3/commands/e4b0cd97-b6d8-4074-b651-2e4ccc382e93/clusters{?status}"
} ]
} ]
8. Clusters API
8.1. Create a Cluster
8.1.1. Description
Create a new cluster in the system.
8.1.2. Endpoint
POST /api/v3/clusters
The id in this example is optional. If you include one Genie will use it. If not it will provide one. If you provide one it must be unique. |
8.1.3. API Docs
Request Documentation
Headers
Name | Description |
---|---|
|
application/json |
Path Parameters
None
Query Parameters
None
Payload Fields
Path | Type | Description | Constraints | Optional |
---|---|---|---|---|
id |
String |
The id. If not set the system will set one. |
Size must be between 0 and 255 inclusive |
true |
created |
String |
The UTC time of creation. Set by system. ISO8601 format including milliseconds. |
true |
|
updated |
String |
The UTC time of last update. Set by system. ISO8601 format including milliseconds. |
true |
|
name |
String |
The name |
Must not be empty. Size must be between 0 and 255 inclusive |
false |
user |
String |
The user |
Must not be empty. Size must be between 0 and 255 inclusive |
false |
version |
String |
The version |
Must not be empty. Size must be between 0 and 255 inclusive |
false |
description |
String |
Any description |
Size must be between 0 and 1000 inclusive |
true |
metadata |
Object |
Any semi-structured metadata. Must be valid JSON |
true |
|
tags |
Array |
The tags |
true |
|
setupFile |
String |
A location for any setup that needs to be done when installing |
Size must be between 0 and 1024 inclusive |
true |
configs |
Array |
Any configuration files needed for the resource |
true |
|
status |
String |
The status of the cluster. Options: [UP, OUT_OF_SERVICE, TERMINATED] |
Must not be null |
false |
dependencies |
Array |
The dependencies for the cluster |
true |
Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/clusters' -i -X POST \
-H 'Content-Type: application/json; charset=UTF-8' \
-d '{
"id" : null,
"created" : null,
"updated" : null,
"version" : "2.7.1",
"user" : "genie",
"name" : "h2prod",
"description" : null,
"metadata" : null,
"tags" : [ ],
"configs" : [ ],
"dependencies" : [ ],
"setupFile" : null,
"status" : "UP"
}'
HTTPie
$ echo '{
"id" : null,
"created" : null,
"updated" : null,
"version" : "2.7.1",
"user" : "genie",
"name" : "h2prod",
"description" : null,
"metadata" : null,
"tags" : [ ],
"configs" : [ ],
"dependencies" : [ ],
"setupFile" : null,
"status" : "UP"
}' | http POST 'https://genie.example.com/api/v3/clusters' \
'Content-Type:application/json; charset=UTF-8'
Response Documentation
Headers
Name | Description |
---|---|
|
The URI |
Payload Fields
None
HATEOAS Links
None
HTTP Messages
Request
POST /api/v3/clusters HTTP/1.1
Content-Type: application/json; charset=UTF-8
Host: genie.example.com
Content-Length: 266
{
"id" : null,
"created" : null,
"updated" : null,
"version" : "2.7.1",
"user" : "genie",
"name" : "h2prod",
"description" : null,
"metadata" : null,
"tags" : [ ],
"configs" : [ ],
"dependencies" : [ ],
"setupFile" : null,
"status" : "UP"
}
Response
HTTP/1.1 201 Created
Location: https://genie.example.com/api/v3/clusters/f5d4ef93-66ac-44e6-ba19-536b1652fdc3
Date: Fri, 05 Mar 2021 22:55:32 GMT
Keep-Alive: timeout=60
Connection: keep-alive
8.2. Get a Cluster
8.2.1. Description
Get the metadata about a cluster in the system.
8.2.2. Endpoint
GET /api/v3/clusters/{id}
8.2.3. API Docs
Request Documentation
Headers
None
Path Parameters
Parameter | Description |
---|---|
|
The resource id |
Query Parameters
None
Payload Fields
None
Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/clusters/f5d4ef93-66ac-44e6-ba19-536b1652fdc3' -i -X GET
HTTPie
$ http GET 'https://genie.example.com/api/v3/clusters/f5d4ef93-66ac-44e6-ba19-536b1652fdc3'
Response Documentation
Headers
Name | Description |
---|---|
|
application/hal+json |
Payload Fields
Path | Type | Description | Constraints | Optional |
---|---|---|---|---|
id |
String |
The id. If not set the system will set one. |
Size must be between 0 and 255 inclusive |
true |
created |
String |
The UTC time of creation. Set by system. ISO8601 format including milliseconds. |
true |
|
updated |
String |
The UTC time of last update. Set by system. ISO8601 format including milliseconds. |
true |
|
name |
String |
The name |
Must not be empty. Size must be between 0 and 255 inclusive |
false |
user |
String |
The user |
Must not be empty. Size must be between 0 and 255 inclusive |
false |
version |
String |
The version |
Must not be empty. Size must be between 0 and 255 inclusive |
false |
description |
String |
Any description |
Size must be between 0 and 1000 inclusive |
true |
metadata |
Object |
Any semi-structured metadata. Must be valid JSON |
true |
|
tags |
Array |
The tags |
true |
|
setupFile |
String |
A location for any setup that needs to be done when installing |
Size must be between 0 and 1024 inclusive |
true |
configs |
Array |
Any configuration files needed for the resource |
true |
|
status |
String |
The status of the cluster. Options: [UP, OUT_OF_SERVICE, TERMINATED] |
Must not be null |
false |
dependencies |
Array |
The dependencies for the cluster |
true |
HATEOAS Links
Relation | Description |
---|---|
|
URI for this cluster |
|
Get all the commands this cluster can use |
HTTP Messages
Request
GET /api/v3/clusters/f5d4ef93-66ac-44e6-ba19-536b1652fdc3 HTTP/1.1
Host: genie.example.com
Response
HTTP/1.1 200 OK
Content-Type: application/hal+json;charset=UTF-8
Transfer-Encoding: chunked
Date: Fri, 05 Mar 2021 22:55:32 GMT
Keep-Alive: timeout=60
Connection: keep-alive
Content-Length: 716
{
"id" : "f5d4ef93-66ac-44e6-ba19-536b1652fdc3",
"created" : "2021-03-05T22:55:33.095Z",
"updated" : "2021-03-05T22:55:33.095Z",
"version" : "2.7.1",
"user" : "genie",
"name" : "h2prod",
"description" : null,
"metadata" : null,
"tags" : [ "genie.id:f5d4ef93-66ac-44e6-ba19-536b1652fdc3", "genie.name:h2prod" ],
"configs" : [ ],
"dependencies" : [ ],
"setupFile" : null,
"status" : "UP",
"_links" : {
"self" : {
"href" : "https://genie.example.com/api/v3/clusters/f5d4ef93-66ac-44e6-ba19-536b1652fdc3"
},
"commands" : {
"href" : "https://genie.example.com/api/v3/clusters/f5d4ef93-66ac-44e6-ba19-536b1652fdc3/commands{?status}",
"templated" : true
}
}
}
8.3. Find Clusters
8.3.1. Description
Find clusters using various query parameters.
8.3.2. Endpoint
GET /api/v3/clusters
8.3.3. API Docs
Request Documentation
Headers
None
Path Parameters
None
Query Parameters
Parameter | Description |
---|---|
|
The page number to get. Default to 0. |
|
The size of the page to get. Default to 64. |
|
The fields to sort the results by. Defaults to 'updated,desc'. |
|
The name of the clusters to find. Use % to perform a regex like query |
|
The status(es) of the clusters to find. Can have multiple. Options: [UP, OUT_OF_SERVICE, TERMINATED] |
|
The tag(s) of the clusters to find. Can have multiple. |
|
The minimum time (in milliseconds from epoch UTC) that the cluster(s) were updated at. |
|
The maximum time (in milliseconds from epoch UTC) that the cluster(s) were updated at. |
Payload Fields
None
Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/clusters?tag=genie.id%3A163b2a1b-3344-4b76-ad76-a01e7b34ddd6' -i -X GET
HTTPie
$ http GET 'https://genie.example.com/api/v3/clusters?tag=genie.id%3A163b2a1b-3344-4b76-ad76-a01e7b34ddd6'
Response Documentation
Headers
Name | Description |
---|---|
|
application/hal+json |
Payload Fields
Path | Type | Description | Constraints | Optional |
---|---|---|---|---|
_links |
Object |
Links to other resources. |
false |
|
page |
Object |
The result page information. |
false |
|
page.size |
Number |
The number of elements in this page result. |
false |
|
page.totalElements |
Number |
The total number of elements this search result could return. |
false |
|
page.totalPages |
Number |
The total number of pages there could be at the current page size. |
false |
|
page.number |
Number |
The current page number. |
false |
|
_embedded.clusterList |
Array |
The found clusters. |
false |
HATEOAS Links
Relation | Description |
---|---|
|
The current search |
|
The first page for this search |
|
The previous page for this search |
|
The next page for this search |
|
The last page for this search |
HTTP Messages
Request
GET /api/v3/clusters?tag=genie.id%3A163b2a1b-3344-4b76-ad76-a01e7b34ddd6 HTTP/1.1
Host: genie.example.com
Response
HTTP/1.1 200 OK
Content-Type: application/hal+json;charset=UTF-8
Transfer-Encoding: chunked
Date: Fri, 05 Mar 2021 22:55:39 GMT
Keep-Alive: timeout=60
Connection: keep-alive
Content-Length: 1296
{
"_embedded" : {
"clusterList" : [ {
"id" : "163b2a1b-3344-4b76-ad76-a01e7b34ddd6",
"created" : "2021-03-05T22:55:37.221Z",
"updated" : "2021-03-05T22:55:37.221Z",
"version" : "805eb065-1285-4e04-94ea-ad571812c2da",
"user" : "2d70e652-d486-4a65-b03e-7dcfbf80e97e",
"name" : "0af1f26c-fdfe-4546-ad0e-2e12e75d23ae",
"description" : null,
"metadata" : null,
"tags" : [ "genie.name:0af1f26c-fdfe-4546-ad0e-2e12e75d23ae", "genie.id:163b2a1b-3344-4b76-ad76-a01e7b34ddd6" ],
"configs" : [ ],
"dependencies" : [ ],
"setupFile" : null,
"status" : "UP",
"_links" : {
"self" : {
"href" : "https://genie.example.com/api/v3/clusters/163b2a1b-3344-4b76-ad76-a01e7b34ddd6"
},
"commands" : {
"href" : "https://genie.example.com/api/v3/clusters/163b2a1b-3344-4b76-ad76-a01e7b34ddd6/commands{?status}",
"templated" : true
}
}
} ]
},
"_links" : {
"self" : {
"href" : "https://genie.example.com/api/v3/clusters?tag=genie.id:163b2a1b-3344-4b76-ad76-a01e7b34ddd6{&name,status,minUpdateTime,maxUpdateTime}",
"templated" : true
}
},
"page" : {
"size" : 1,
"totalElements" : 1,
"totalPages" : 1,
"number" : 0
}
}
8.4. Update an Entire Cluster
8.4.1. Description
Update the metadata about a cluster. This method does a complete replace of the resource. Usual flow is to call to get the most recent state then update what you want and call this API with the result.
For more fine grained control call the PATCH API. |
8.4.2. Endpoint
PUT /api/v3/clusters/{id}
8.4.3. API Docs
Request Documentation
Headers
Name | Description |
---|---|
|
application/json |
Path Parameters
Parameter | Description |
---|---|
|
The resource id |
Query Parameters
None
Payload Fields
Path | Type | Description | Constraints | Optional |
---|---|---|---|---|
id |
String |
The id. If not set the system will set one. |
Size must be between 0 and 255 inclusive |
true |
created |
String |
The UTC time of creation. Set by system. ISO8601 format including milliseconds. |
true |
|
updated |
String |
The UTC time of last update. Set by system. ISO8601 format including milliseconds. |
true |
|
name |
String |
The name |
Must not be empty. Size must be between 0 and 255 inclusive |
false |
user |
String |
The user |
Must not be empty. Size must be between 0 and 255 inclusive |
false |
version |
String |
The version |
Must not be empty. Size must be between 0 and 255 inclusive |
false |
description |
String |
Any description |
Size must be between 0 and 1000 inclusive |
true |
metadata |
Object |
Any semi-structured metadata. Must be valid JSON |
true |
|
tags |
Array |
The tags |
true |
|
setupFile |
String |
A location for any setup that needs to be done when installing |
Size must be between 0 and 1024 inclusive |
true |
configs |
Array |
Any configuration files needed for the resource |
true |
|
status |
String |
The status of the cluster. Options: [UP, OUT_OF_SERVICE, TERMINATED] |
Must not be null |
false |
dependencies |
Array |
The dependencies for the cluster |
true |
Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/clusters/264c546c-f0d9-414d-8874-789fb77502c3' -i -X PUT \
-H 'Content-Type: application/json; charset=UTF-8' \
-d '{
"id" : "264c546c-f0d9-414d-8874-789fb77502c3",
"created" : "2021-03-05T22:55:40.322Z",
"updated" : "2021-03-05T22:55:40.322Z",
"version" : "2.7.1",
"user" : "genie",
"name" : "h2prod",
"description" : null,
"metadata" : null,
"tags" : [ "genie.name:h2prod", "genie.id:264c546c-f0d9-414d-8874-789fb77502c3" ],
"configs" : [ ],
"dependencies" : [ ],
"setupFile" : null,
"status" : "OUT_OF_SERVICE"
}'
HTTPie
$ echo '{
"id" : "264c546c-f0d9-414d-8874-789fb77502c3",
"created" : "2021-03-05T22:55:40.322Z",
"updated" : "2021-03-05T22:55:40.322Z",
"version" : "2.7.1",
"user" : "genie",
"name" : "h2prod",
"description" : null,
"metadata" : null,
"tags" : [ "genie.name:h2prod", "genie.id:264c546c-f0d9-414d-8874-789fb77502c3" ],
"configs" : [ ],
"dependencies" : [ ],
"setupFile" : null,
"status" : "OUT_OF_SERVICE"
}' | http PUT 'https://genie.example.com/api/v3/clusters/264c546c-f0d9-414d-8874-789fb77502c3' \
'Content-Type:application/json; charset=UTF-8'
HTTP Messages
Request
PUT /api/v3/clusters/264c546c-f0d9-414d-8874-789fb77502c3 HTTP/1.1
Content-Type: application/json; charset=UTF-8
Host: genie.example.com
Content-Length: 425
{
"id" : "264c546c-f0d9-414d-8874-789fb77502c3",
"created" : "2021-03-05T22:55:40.322Z",
"updated" : "2021-03-05T22:55:40.322Z",
"version" : "2.7.1",
"user" : "genie",
"name" : "h2prod",
"description" : null,
"metadata" : null,
"tags" : [ "genie.name:h2prod", "genie.id:264c546c-f0d9-414d-8874-789fb77502c3" ],
"configs" : [ ],
"dependencies" : [ ],
"setupFile" : null,
"status" : "OUT_OF_SERVICE"
}
Response
HTTP/1.1 204 No Content
Date: Fri, 05 Mar 2021 22:55:40 GMT
Keep-Alive: timeout=60
Connection: keep-alive
8.5. Update Parts of a Cluster
8.5.1. Description
Update the metadata about a cluster using JSON Patch. This will ONLY update the fields you request be changed.
For more information about JSON Patch RFC see the website. |
8.5.2. Endpoint
PATCH /api/v3/clusters/{id}
8.5.3. API Docs
Request Documentation
Headers
Name | Description |
---|---|
|
application/json |
Path Parameters
Parameter | Description |
---|---|
|
The resource id |
Query Parameters
None
Payload Fields
Path | Type | Description | Constraints | Optional |
---|---|---|---|---|
[] |
Array |
Array of patches to apply |
false |
|
[].op |
String |
Patch operation to perform. |
add, remove, replace, copy, move, test |
false |
[].path |
String |
The json path to operate on. e.g. /user |
false |
|
[].from |
String |
The json path to move or copy from. e.g. /user |
true |
|
[].value |
String |
The json value to put at the path for an add, replace or test |
true |
Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/clusters/264c546c-f0d9-414d-8874-789fb77502c3' -i -X PATCH \
-H 'Content-Type: application/json; charset=UTF-8' \
-d '[ {
"op" : "replace",
"path" : "/name",
"value" : "412a0534-253a-4ee0-90e8-70bd9134f82c"
} ]'
HTTPie
$ echo '[ {
"op" : "replace",
"path" : "/name",
"value" : "412a0534-253a-4ee0-90e8-70bd9134f82c"
} ]' | http PATCH 'https://genie.example.com/api/v3/clusters/264c546c-f0d9-414d-8874-789fb77502c3' \
'Content-Type:application/json; charset=UTF-8'
HTTP Messages
Request
PATCH /api/v3/clusters/264c546c-f0d9-414d-8874-789fb77502c3 HTTP/1.1
Content-Type: application/json; charset=UTF-8
Host: genie.example.com
Content-Length: 98
[ {
"op" : "replace",
"path" : "/name",
"value" : "412a0534-253a-4ee0-90e8-70bd9134f82c"
} ]
Response
HTTP/1.1 204 No Content
Date: Fri, 05 Mar 2021 22:55:40 GMT
Keep-Alive: timeout=60
Connection: keep-alive
8.6. Delete All Clusters
8.6.1. Description
Delete all the clusters currently stored in the system.
You won’t be able to delete any cluster that has run any job that is still in the system to maintain the ability for users to look up information about their job (where it ran, etc) |
8.6.2. Endpoint
DELETE /api/v3/clusters
8.6.3. API Docs
Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/clusters' -i -X DELETE
HTTPie
$ http DELETE 'https://genie.example.com/api/v3/clusters'
HTTP Messages
Request
DELETE /api/v3/clusters HTTP/1.1
Host: genie.example.com
Response
HTTP/1.1 204 No Content
Date: Fri, 05 Mar 2021 22:55:39 GMT
Keep-Alive: timeout=60
Connection: keep-alive
8.7. Delete a Cluster
8.7.1. Description
Delete a cluster currently configured in the system.
You won’t be able to delete a cluster that has run any job that is still in the system to maintain the ability for users to look up information about their job (where it ran, etc) |
8.7.2. Endpoint
DELETE /api/v3/clusters/{id}
8.7.3. API Docs
Request Documentation
Headers
None
Path Parameters
Parameter | Description |
---|---|
|
The resource id |
Query Parameters
None
Payload Fields
None
Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/clusters/1f2f766f-5a20-436d-96fa-e06978601100' -i -X DELETE
HTTPie
$ http DELETE 'https://genie.example.com/api/v3/clusters/1f2f766f-5a20-436d-96fa-e06978601100'
HTTP Messages
Request
DELETE /api/v3/clusters/1f2f766f-5a20-436d-96fa-e06978601100 HTTP/1.1
Host: genie.example.com
Response
HTTP/1.1 204 No Content
Date: Fri, 05 Mar 2021 22:55:32 GMT
Keep-Alive: timeout=60
Connection: keep-alive
8.8. Get Configs for Cluster
8.8.1. Description
Get the configuration file locations for a cluster.
8.8.2. Endpoint
GET /api/v3/clusters/{id}/configs
8.8.3. API Docs
Request Documentation
Headers
None
Path Parameters
Parameter | Description |
---|---|
|
The resource id |
Query Parameters
None
Payload Fields
None
Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/clusters/264c546c-f0d9-414d-8874-789fb77502c3/configs' -i -X GET
HTTPie
$ http GET 'https://genie.example.com/api/v3/clusters/264c546c-f0d9-414d-8874-789fb77502c3/configs'
Response Documentation
Headers
Name | Description |
---|---|
|
application/json |
Payload Fields
Path | Type | Description | Constraints | Optional |
---|---|---|---|---|
[] |
Array |
Array of configuration file locations |
false |
HATEOAS Links
None
HTTP Messages
Request
GET /api/v3/clusters/264c546c-f0d9-414d-8874-789fb77502c3/configs HTTP/1.1
Host: genie.example.com
Response
HTTP/1.1 200 OK
Content-Type: application/json;charset=UTF-8
Transfer-Encoding: chunked
Date: Fri, 05 Mar 2021 22:55:34 GMT
Keep-Alive: timeout=60
Connection: keep-alive
Content-Length: 82
[ "cef1fe7c-0d77-406a-bbdc-3bed81555728", "dd9adf8a-da57-416d-a47b-e170a0e935af" ]
8.9. Add Configs to Cluster
8.9.1. Description
Add configuration file locations to an existing cluster.
Configurations are stored as a set so any duplicates will be ignored. |
8.9.2. Endpoint
POST /api/v3/clusters/{id}/configs
8.9.3. API Docs
Request Documentation
Headers
Name | Description |
---|---|
|
application/json |
Path Parameters
Parameter | Description |
---|---|
|
The resource id |
Query Parameters
None
Payload Fields
Path | Type | Description | Constraints | Optional |
---|---|---|---|---|
[] |
Array |
Array of configuration file locations |
false |
Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/clusters/264c546c-f0d9-414d-8874-789fb77502c3/configs' -i -X POST \
-H 'Content-Type: application/json; charset=UTF-8' \
-d '[ "cef1fe7c-0d77-406a-bbdc-3bed81555728", "dd9adf8a-da57-416d-a47b-e170a0e935af" ]'
HTTPie
$ echo '[ "cef1fe7c-0d77-406a-bbdc-3bed81555728", "dd9adf8a-da57-416d-a47b-e170a0e935af" ]' | http POST 'https://genie.example.com/api/v3/clusters/264c546c-f0d9-414d-8874-789fb77502c3/configs' \
'Content-Type:application/json; charset=UTF-8'
HTTP Messages
Request
POST /api/v3/clusters/264c546c-f0d9-414d-8874-789fb77502c3/configs HTTP/1.1
Content-Type: application/json; charset=UTF-8
Host: genie.example.com
Content-Length: 82
[ "cef1fe7c-0d77-406a-bbdc-3bed81555728", "dd9adf8a-da57-416d-a47b-e170a0e935af" ]
Response
HTTP/1.1 204 No Content
Date: Fri, 05 Mar 2021 22:55:34 GMT
Keep-Alive: timeout=60
Connection: keep-alive
8.10. Update Configs for a Cluster
8.10.1. Description
Update the configuration file locations for an existing cluster. Stored as a set so duplicates are ignored.
8.10.2. Endpoint
PUT /api/v3/clusters/{id}/configs
8.10.3. API Docs
Request Documentation
Headers
Name | Description |
---|---|
|
application/json |
Path Parameters
Parameter | Description |
---|---|
|
The resource id |
Query Parameters
None
Payload Fields
Path | Type | Description | Constraints | Optional |
---|---|---|---|---|
[] |
Array |
Array of configuration file locations |
false |
Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/clusters/264c546c-f0d9-414d-8874-789fb77502c3/configs' -i -X PUT \
-H 'Content-Type: application/json; charset=UTF-8' \
-d '[ "fd6ae8b2-6162-4c02-a4ea-ff7f0a41c742" ]'
HTTPie
$ echo '[ "fd6ae8b2-6162-4c02-a4ea-ff7f0a41c742" ]' | http PUT 'https://genie.example.com/api/v3/clusters/264c546c-f0d9-414d-8874-789fb77502c3/configs' \
'Content-Type:application/json; charset=UTF-8'
HTTP Messages
Request
PUT /api/v3/clusters/264c546c-f0d9-414d-8874-789fb77502c3/configs HTTP/1.1
Content-Type: application/json; charset=UTF-8
Host: genie.example.com
Content-Length: 42
[ "fd6ae8b2-6162-4c02-a4ea-ff7f0a41c742" ]
Response
HTTP/1.1 204 No Content
Date: Fri, 05 Mar 2021 22:55:39 GMT
Keep-Alive: timeout=60
Connection: keep-alive
8.11. Remove All Configs From a Cluster
8.11.1. Description
Remove all the configuration file locations for an existing cluster.
8.11.2. Endpoint
DELETE /api/v3/clusters/{id}/configs
8.11.3. API Docs
Request Documentation
Headers
None
Path Parameters
Parameter | Description |
---|---|
|
The resource id |
Query Parameters
None
Payload Fields
None
Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/clusters/264c546c-f0d9-414d-8874-789fb77502c3/configs' -i -X DELETE
HTTPie
$ http DELETE 'https://genie.example.com/api/v3/clusters/264c546c-f0d9-414d-8874-789fb77502c3/configs'
HTTP Messages
Request
DELETE /api/v3/clusters/264c546c-f0d9-414d-8874-789fb77502c3/configs HTTP/1.1
Host: genie.example.com
Response
HTTP/1.1 204 No Content
Date: Fri, 05 Mar 2021 22:55:32 GMT
Keep-Alive: timeout=60
Connection: keep-alive
8.12. Get Dependencies For an Cluster
8.12.1. Description
Get the dependency file locations for a cluster.
8.12.2. Endpoint
GET /api/v3/clusters/{id}/dependencies
8.12.3. API Docs
Request Documentation
Headers
None
Path Parameters
Parameter | Description |
---|---|
|
The resource id |
Query Parameters
None
Payload Fields
None
Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/clusters/264c546c-f0d9-414d-8874-789fb77502c3/dependencies' -i -X GET
HTTPie
$ http GET 'https://genie.example.com/api/v3/clusters/264c546c-f0d9-414d-8874-789fb77502c3/dependencies'
Response Documentation
Headers
Name | Description |
---|---|
|
application/json |
Payload Fields
Path | Type | Description | Constraints | Optional |
---|---|---|---|---|
[] |
Array |
Array of dependency file locations |
false |
HATEOAS Links
None
HTTP Messages
Request
GET /api/v3/clusters/264c546c-f0d9-414d-8874-789fb77502c3/dependencies HTTP/1.1
Host: genie.example.com
Response
HTTP/1.1 200 OK
Content-Type: application/json;charset=UTF-8
Transfer-Encoding: chunked
Date: Fri, 05 Mar 2021 22:55:34 GMT
Keep-Alive: timeout=60
Connection: keep-alive
Content-Length: 82
[ "a504a26f-7a1b-4624-ab58-c372aab8ca4e", "00d9ad33-4723-4cb4-a435-996cf0c7752f" ]
8.13. Add Dependencies to Cluster
8.13.1. Description
Add dependency file locations to an existing cluster. Stored as a set so all duplicates are ignored.
8.13.2. Endpoint
POST /api/v3/clusters/{id}/dependencies
8.13.3. API Docs
Request Documentation
Headers
Name | Description |
---|---|
|
application/json |
Path Parameters
Parameter | Description |
---|---|
|
The resource id |
Query Parameters
None
Payload Fields
Path | Type | Description | Constraints | Optional |
---|---|---|---|---|
[] |
Array |
Array of dependency file locations |
false |
Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/clusters/264c546c-f0d9-414d-8874-789fb77502c3/dependencies' -i -X POST \
-H 'Content-Type: application/json; charset=UTF-8' \
-d '[ "a504a26f-7a1b-4624-ab58-c372aab8ca4e", "00d9ad33-4723-4cb4-a435-996cf0c7752f" ]'
HTTPie
$ echo '[ "a504a26f-7a1b-4624-ab58-c372aab8ca4e", "00d9ad33-4723-4cb4-a435-996cf0c7752f" ]' | http POST 'https://genie.example.com/api/v3/clusters/264c546c-f0d9-414d-8874-789fb77502c3/dependencies' \
'Content-Type:application/json; charset=UTF-8'
HTTP Messages
Request
POST /api/v3/clusters/264c546c-f0d9-414d-8874-789fb77502c3/dependencies HTTP/1.1
Content-Type: application/json; charset=UTF-8
Host: genie.example.com
Content-Length: 82
[ "a504a26f-7a1b-4624-ab58-c372aab8ca4e", "00d9ad33-4723-4cb4-a435-996cf0c7752f" ]
Response
HTTP/1.1 204 No Content
Date: Fri, 05 Mar 2021 22:55:34 GMT
Keep-Alive: timeout=60
Connection: keep-alive
8.14. Update Dependencies for an Cluster
8.14.1. Description
Update the dependency file locations for an existing cluster
8.14.2. Endpoint
PUT /api/v3/clusters/{id}/dependencies
8.14.3. API Docs
Request Documentation
Headers
Name | Description |
---|---|
|
application/json |
Path Parameters
Parameter | Description |
---|---|
|
The resource id |
Query Parameters
None
Payload Fields
Path | Type | Description | Constraints | Optional |
---|---|---|---|---|
[] |
Array |
Array of dependency file locations |
false |
Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/clusters/264c546c-f0d9-414d-8874-789fb77502c3/configs' -i -X PUT \
-H 'Content-Type: application/json; charset=UTF-8' \
-d '[ "99cee5b1-0814-4a6f-b44a-fc75fb62a6df" ]'
HTTPie
$ echo '[ "99cee5b1-0814-4a6f-b44a-fc75fb62a6df" ]' | http PUT 'https://genie.example.com/api/v3/clusters/264c546c-f0d9-414d-8874-789fb77502c3/configs' \
'Content-Type:application/json; charset=UTF-8'
HTTP Messages
Request
PUT /api/v3/clusters/264c546c-f0d9-414d-8874-789fb77502c3/configs HTTP/1.1
Content-Type: application/json; charset=UTF-8
Host: genie.example.com
Content-Length: 42
[ "99cee5b1-0814-4a6f-b44a-fc75fb62a6df" ]
Response
HTTP/1.1 204 No Content
Date: Fri, 05 Mar 2021 22:55:39 GMT
Keep-Alive: timeout=60
Connection: keep-alive
8.15. Remove All Dependencies From an Cluster
8.15.1. Description
Remove all the dependency file locations for an existing cluster.
8.15.2. Endpoint
DELETE /api/v3/clusters/{id}/dependencies
8.15.3. API Docs
Request Documentation
Headers
None
Path Parameters
Parameter | Description |
---|---|
|
The resource id |
Query Parameters
None
Payload Fields
None
Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/clusters/264c546c-f0d9-414d-8874-789fb77502c3/dependencies' -i -X DELETE
HTTPie
$ http DELETE 'https://genie.example.com/api/v3/clusters/264c546c-f0d9-414d-8874-789fb77502c3/dependencies'
HTTP Messages
Request
DELETE /api/v3/clusters/264c546c-f0d9-414d-8874-789fb77502c3/dependencies HTTP/1.1
Host: genie.example.com
Response
HTTP/1.1 204 No Content
Date: Fri, 05 Mar 2021 22:55:34 GMT
Keep-Alive: timeout=60
Connection: keep-alive
8.16. Get Tags For a Cluster
8.16.1. Description
Get the tags for a cluster.
8.16.2. Endpoint
GET /api/v3/clusters/{id}/tags
8.16.3. API Docs
Request Documentation
Headers
None
Path Parameters
Parameter | Description |
---|---|
|
The resource id |
Query Parameters
None
Payload Fields
None
Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/clusters/264c546c-f0d9-414d-8874-789fb77502c3/tags' -i -X GET
HTTPie
$ http GET 'https://genie.example.com/api/v3/clusters/264c546c-f0d9-414d-8874-789fb77502c3/tags'
Response Documentation
Headers
Name | Description |
---|---|
|
application/json |
Payload Fields
Path | Type | Description | Constraints | Optional |
---|---|---|---|---|
[] |
Array |
Array of tags |
false |
HATEOAS Links
None
HTTP Messages
Request
GET /api/v3/clusters/264c546c-f0d9-414d-8874-789fb77502c3/tags HTTP/1.1
Host: genie.example.com
Response
HTTP/1.1 200 OK
Content-Type: application/json;charset=UTF-8
Transfer-Encoding: chunked
Date: Fri, 05 Mar 2021 22:55:40 GMT
Keep-Alive: timeout=60
Connection: keep-alive
Content-Length: 152
[ "genie.name:h2prod", "21254699-1fd8-4431-8e2a-173c763e8576", "genie.id:264c546c-f0d9-414d-8874-789fb77502c3", "3295da79-40c7-41c5-8e93-c4352e71c2ea" ]
8.17. Add Tags to Cluster
8.17.1. Description
Add tags to an existing cluster. Stored as a set so all duplicates are ignored.
genie.id:{id} and genie.name:{name} tags are automatically added by the service.
|
8.17.2. Endpoint
POST /api/v3/clusters/{id}/tags
8.17.3. API Docs
Request Documentation
Headers
Name | Description |
---|---|
|
application/json |
Path Parameters
Parameter | Description |
---|---|
|
The resource id |
Query Parameters
None
Payload Fields
Path | Type | Description | Constraints | Optional |
---|---|---|---|---|
[] |
Array |
Array of tags |
false |
Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/clusters/264c546c-f0d9-414d-8874-789fb77502c3/tags' -i -X POST \
-H 'Content-Type: application/json; charset=UTF-8' \
-d '[ "3295da79-40c7-41c5-8e93-c4352e71c2ea", "21254699-1fd8-4431-8e2a-173c763e8576" ]'
HTTPie
$ echo '[ "3295da79-40c7-41c5-8e93-c4352e71c2ea", "21254699-1fd8-4431-8e2a-173c763e8576" ]' | http POST 'https://genie.example.com/api/v3/clusters/264c546c-f0d9-414d-8874-789fb77502c3/tags' \
'Content-Type:application/json; charset=UTF-8'
HTTP Messages
Request
POST /api/v3/clusters/264c546c-f0d9-414d-8874-789fb77502c3/tags HTTP/1.1
Content-Type: application/json; charset=UTF-8
Host: genie.example.com
Content-Length: 82
[ "3295da79-40c7-41c5-8e93-c4352e71c2ea", "21254699-1fd8-4431-8e2a-173c763e8576" ]
Response
HTTP/1.1 204 No Content
Date: Fri, 05 Mar 2021 22:55:40 GMT
Keep-Alive: timeout=60
Connection: keep-alive
8.18. Update Tags for a Cluster
8.18.1. Description
Update the tags for an existing cluster.
The genie.id:{id} and genie.name:{name} tags can’t be removed. They will automatically be added back
by the system.
|
8.18.2. Endpoint
PUT /api/v3/clusters/{id}/tags
8.18.3. API Docs
Request Documentation
Headers
Name | Description |
---|---|
|
application/json |
Path Parameters
Parameter | Description |
---|---|
|
The resource id |
Query Parameters
None
Payload Fields
Path | Type | Description | Constraints | Optional |
---|---|---|---|---|
[] |
Array |
Array of tags |
false |
Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/clusters/264c546c-f0d9-414d-8874-789fb77502c3/tags' -i -X PUT \
-H 'Content-Type: application/json; charset=UTF-8' \
-d '[ "32fd553e-b3c3-48a5-a0f9-0a635061a72d" ]'
HTTPie
$ echo '[ "32fd553e-b3c3-48a5-a0f9-0a635061a72d" ]' | http PUT 'https://genie.example.com/api/v3/clusters/264c546c-f0d9-414d-8874-789fb77502c3/tags' \
'Content-Type:application/json; charset=UTF-8'
HTTP Messages
Request
PUT /api/v3/clusters/264c546c-f0d9-414d-8874-789fb77502c3/tags HTTP/1.1
Content-Type: application/json; charset=UTF-8
Host: genie.example.com
Content-Length: 42
[ "32fd553e-b3c3-48a5-a0f9-0a635061a72d" ]
Response
HTTP/1.1 204 No Content
Date: Fri, 05 Mar 2021 22:55:40 GMT
Keep-Alive: timeout=60
Connection: keep-alive
8.19. Remove All Tags From Cluster
8.19.1. Description
Remove all the tags for an existing cluster
The genie.id:{id} and genie.name:{name} tags will NOT be removed by this operation
|
8.19.2. Endpoint
DELETE /api/v3/clusters/{id}/tags
8.19.3. API Docs
Request Documentation
Headers
None
Path Parameters
Parameter | Description |
---|---|
|
The resource id |
Query Parameters
None
Payload Fields
None
Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/clusters/264c546c-f0d9-414d-8874-789fb77502c3/tags' -i -X DELETE
HTTPie
$ http DELETE 'https://genie.example.com/api/v3/clusters/264c546c-f0d9-414d-8874-789fb77502c3/tags'
HTTP Messages
Request
DELETE /api/v3/clusters/264c546c-f0d9-414d-8874-789fb77502c3/tags HTTP/1.1
Host: genie.example.com
Response
HTTP/1.1 204 No Content
Date: Fri, 05 Mar 2021 22:55:32 GMT
Keep-Alive: timeout=60
Connection: keep-alive
8.20. Remove Tag From Cluster
8.20.1. Description
Remove a tag from an existing cluster.
You can’t remove the genie.id:{id} and genie.name:{name} tags. They will just be added back by the system
|
8.20.2. Endpoint
DELETE /api/v3/clusters/{id}/tags/{tag}
8.20.3. API Docs
Request Documentation
Headers
None
Path Parameters
Parameter | Description |
---|---|
|
The resource id |
|
The tag to remove |
Query Parameters
None
Payload Fields
None
Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/clusters/264c546c-f0d9-414d-8874-789fb77502c3/tags/898cb026-2d2c-4be5-bafd-8be698890fba' -i -X DELETE
HTTPie
$ http DELETE 'https://genie.example.com/api/v3/clusters/264c546c-f0d9-414d-8874-789fb77502c3/tags/898cb026-2d2c-4be5-bafd-8be698890fba'
HTTP Messages
Request
DELETE /api/v3/clusters/264c546c-f0d9-414d-8874-789fb77502c3/tags/898cb026-2d2c-4be5-bafd-8be698890fba HTTP/1.1
Host: genie.example.com
Response
HTTP/1.1 204 No Content
Date: Fri, 05 Mar 2021 22:55:40 GMT
Keep-Alive: timeout=60
Connection: keep-alive
8.21. Add Commands to a Cluster
Deprecated |
As of Genie 4.0.0 commands are no longer hard linked to clusters, instead they are dynamically linked by
resolving a command’s cluster criteria against the current set of UP clusters. This API is now a no-op.
|
8.21.1. Endpoint
POST /api/v3/clusters/{id}/commands
8.21.2. API Docs
Request Documentation
Headers
Name | Description |
---|---|
|
application/json |
Path Parameters
Parameter | Description |
---|---|
|
The resource id |
Query Parameters
None
Payload Fields
Path | Type | Description | Constraints | Optional |
---|---|---|---|---|
[] |
Array |
Array of command ids (in preferred order) to append to the existing list of commands |
false |
Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/clusters/264c546c-f0d9-414d-8874-789fb77502c3/commands' -i -X POST \
-H 'Content-Type: application/json; charset=UTF-8' \
-d '[ "aca267fb-b0f8-411a-b272-43719ae3e63c", "dfe6b2ad-750c-4b7a-9504-f4e66996c505" ]'
HTTPie
$ echo '[ "aca267fb-b0f8-411a-b272-43719ae3e63c", "dfe6b2ad-750c-4b7a-9504-f4e66996c505" ]' | http POST 'https://genie.example.com/api/v3/clusters/264c546c-f0d9-414d-8874-789fb77502c3/commands' \
'Content-Type:application/json; charset=UTF-8'
HTTP Messages
Request
POST /api/v3/clusters/264c546c-f0d9-414d-8874-789fb77502c3/commands HTTP/1.1
Content-Type: application/json; charset=UTF-8
Host: genie.example.com
Content-Length: 82
[ "aca267fb-b0f8-411a-b272-43719ae3e63c", "dfe6b2ad-750c-4b7a-9504-f4e66996c505" ]
Response
HTTP/1.1 204 No Content
Date: Fri, 05 Mar 2021 22:55:34 GMT
Keep-Alive: timeout=60
Connection: keep-alive
8.22. Get the Commands for a Cluster
Deprecated |
As of Genie 4.0.0 commands are no longer hard linked to clusters, instead they are dynamically linked by
resolving a command’s cluster criteria against the current set of UP clusters. This API is now a no-op.
|
8.22.1. Endpoint
GET /api/v3/clusters/{id}/commands
8.22.2. API Docs
Request Documentation
Headers
None
Path Parameters
Parameter | Description |
---|---|
|
The resource id |
Query Parameters
Parameter | Description |
---|---|
|
The status of commands to search for |
Payload Fields
None
Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/clusters/264c546c-f0d9-414d-8874-789fb77502c3/commands?status=ACTIVE' -i -X GET
HTTPie
$ http GET 'https://genie.example.com/api/v3/clusters/264c546c-f0d9-414d-8874-789fb77502c3/commands?status=ACTIVE'
HTTP Messages
Request
GET /api/v3/clusters/264c546c-f0d9-414d-8874-789fb77502c3/commands?status=ACTIVE HTTP/1.1
Host: genie.example.com
Response
HTTP/1.1 200 OK
Content-Type: application/hal+json;charset=UTF-8
Transfer-Encoding: chunked
Date: Fri, 05 Mar 2021 22:55:34 GMT
Keep-Alive: timeout=60
Connection: keep-alive
Content-Length: 3
[ ]
8.23. Set Commands for a Cluster
Deprecated |
As of Genie 4.0.0 commands are no longer hard linked to clusters, instead they are dynamically linked by
resolving a command’s cluster criteria against the current set of UP clusters. This API is now a no-op.
|
8.23.1. Endpoint
PUT /api/v3/clusters/{id}/commands
8.23.2. API Docs
Request Documentation
Headers
Name | Description |
---|---|
|
application/json |
Path Parameters
Parameter | Description |
---|---|
|
The resource id |
Query Parameters
None
Payload Fields
Path | Type | Description | Constraints | Optional |
---|---|---|---|---|
[] |
Array |
Array of command ids (in preferred order) to replace the existing list of commands |
false |
Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/clusters/264c546c-f0d9-414d-8874-789fb77502c3/commands' -i -X PUT \
-H 'Content-Type: application/json; charset=UTF-8' \
-d '[ "c0916b03-9caf-4193-8776-df99235ce2c1", "855ea5e0-e411-4773-ab74-bb1cf8b979c2" ]'
HTTPie
$ echo '[ "c0916b03-9caf-4193-8776-df99235ce2c1", "855ea5e0-e411-4773-ab74-bb1cf8b979c2" ]' | http PUT 'https://genie.example.com/api/v3/clusters/264c546c-f0d9-414d-8874-789fb77502c3/commands' \
'Content-Type:application/json; charset=UTF-8'
HTTP Messages
Request
PUT /api/v3/clusters/264c546c-f0d9-414d-8874-789fb77502c3/commands HTTP/1.1
Content-Type: application/json; charset=UTF-8
Host: genie.example.com
Content-Length: 82
[ "c0916b03-9caf-4193-8776-df99235ce2c1", "855ea5e0-e411-4773-ab74-bb1cf8b979c2" ]
Response
HTTP/1.1 204 No Content
Date: Fri, 05 Mar 2021 22:55:34 GMT
Keep-Alive: timeout=60
Connection: keep-alive
8.24. Remove All Commands From a Cluster
Deprecated |
As of Genie 4.0.0 commands are no longer hard linked to clusters, instead they are dynamically linked by
resolving a command’s cluster criteria against the current set of UP clusters. This API is now a no-op.
|
8.24.1. Endpoint
DELETE /api/v3/clusters/{id}/commands
8.24.2. API Docs
Request Documentation
Headers
None
Path Parameters
Parameter | Description |
---|---|
|
The resource id |
Query Parameters
None
Payload Fields
None
Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/clusters/264c546c-f0d9-414d-8874-789fb77502c3/commands' -i -X DELETE
HTTPie
$ http DELETE 'https://genie.example.com/api/v3/clusters/264c546c-f0d9-414d-8874-789fb77502c3/commands'
HTTP Messages
Request
DELETE /api/v3/clusters/264c546c-f0d9-414d-8874-789fb77502c3/commands HTTP/1.1
Host: genie.example.com
Response
HTTP/1.1 204 No Content
Date: Fri, 05 Mar 2021 22:55:34 GMT
Keep-Alive: timeout=60
Connection: keep-alive
8.25. Remove A Single Command From a Cluster
Deprecated |
As of Genie 4.0.0 commands are no longer hard linked to clusters, instead they are dynamically linked by
resolving a command’s cluster criteria against the current set of UP clusters. This API is now a no-op.
|
8.25.1. Endpoint
DELETE /api/v3/clusters/{id}/commands/{commandId}
8.25.2. API Docs
Request Documentation
Headers
None
Path Parameters
Parameter | Description |
---|---|
|
The resource id |
|
The id of the command to remove |
Query Parameters
None
Payload Fields
None
Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/clusters/264c546c-f0d9-414d-8874-789fb77502c3/commands/7889c140-e3ad-420f-ba2c-f3fc6086041f' -i -X DELETE
HTTPie
$ http DELETE 'https://genie.example.com/api/v3/clusters/264c546c-f0d9-414d-8874-789fb77502c3/commands/7889c140-e3ad-420f-ba2c-f3fc6086041f'
HTTP Messages
Request
DELETE /api/v3/clusters/264c546c-f0d9-414d-8874-789fb77502c3/commands/7889c140-e3ad-420f-ba2c-f3fc6086041f HTTP/1.1
Host: genie.example.com
Response
HTTP/1.1 204 No Content
Date: Fri, 05 Mar 2021 22:55:34 GMT
Keep-Alive: timeout=60
Connection: keep-alive
9. Commands API
9.1. Create a Command
9.1.1. Description
Create a new command in the system.
9.1.2. Endpoint
POST /api/v3/commands
The id in this example is optional. If you include one Genie will use it. If not it will provide one. If you provide one it must be unique. |
9.1.3. API Docs
Request Documentation
Headers
Name | Description |
---|---|
|
application/json |
Path Parameters
None
Query Parameters
None
Payload Fields
Path | Type | Description | Constraints | Optional |
---|---|---|---|---|
id |
String |
The id. If not set the system will set one. |
Size must be between 0 and 255 inclusive |
true |
created |
String |
The UTC time of creation. Set by system. ISO8601 format including milliseconds. |
true |
|
updated |
String |
The UTC time of last update. Set by system. ISO8601 format including milliseconds. |
true |
|
name |
String |
The name |
Must not be empty. Size must be between 0 and 255 inclusive |
false |
user |
String |
The user |
Must not be empty. Size must be between 0 and 255 inclusive |
false |
version |
String |
The version |
Must not be empty. Size must be between 0 and 255 inclusive |
false |
description |
String |
Any description |
Size must be between 0 and 1000 inclusive |
true |
metadata |
Object |
Any semi-structured metadata. Must be valid JSON |
true |
|
tags |
Array |
The tags |
true |
|
setupFile |
String |
A location for any setup that needs to be done when installing |
Size must be between 0 and 1024 inclusive |
true |
configs |
Array |
Any configuration files needed for the resource |
true |
|
status |
String |
The status of the command. Options: [ACTIVE, DEPRECATED, INACTIVE] |
Must not be null |
false |
executable |
String |
The executable to run on the Genie node when this command is used. e.g. /usr/bin/hadoop |
Must not be empty. Size must be between 0 and 1024 inclusive |
false |
executableAndArguments |
Array |
The executable and arguments to run on the Genie node when this command is used. e.g. /usr/bin/hadoop |
Must not be empty |
false |
checkDelay |
Number |
The amount of time (in milliseconds) to delay between checks of the jobs using this command |
Must be at least 1 |
false |
memory |
Number |
The default amount of memory (in MB) that should be allocated for instances of this command client |
Must be at least 1 |
true |
dependencies |
Array |
The dependencies for the command |
true |
|
clusterCriteria |
Array |
The priority ordered list of criteria to resolve clusters that this command can run jobs on |
true |
Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/commands' -i -X POST \
-H 'Content-Type: application/json; charset=UTF-8' \
-d '{
"id" : null,
"created" : null,
"updated" : null,
"version" : "1.0.0",
"user" : "genie",
"name" : "hive",
"description" : "Hive command v1.0.0",
"metadata" : null,
"tags" : [ "tag:bar", "tag:foo" ],
"configs" : [ "s3:///path/to/config-foo", "s3:///path/to/config-bar" ],
"dependencies" : [ "/path/to/file/foo", "/path/to/file/bar" ],
"setupFile" : null,
"status" : "ACTIVE",
"executable" : "/apps/hive/bin/hive",
"executableAndArguments" : [ "/apps/hive/bin/hive" ],
"checkDelay" : 10000,
"memory" : 1024,
"clusterCriteria" : [ {
"id" : "09cbf144-2267-4c50-bdde-46cf4aa02965",
"name" : null,
"version" : null,
"status" : null,
"tags" : [ "db4e763e-0dcb-4f06-934a-31710052f5c3", "2e5328d2-9cc5-4989-adff-b7fc3bfea80d" ]
}, {
"id" : "3df9dd7c-6662-420a-a23e-b2f16bb7e899",
"name" : "prod",
"version" : "1.0.0",
"status" : "UP",
"tags" : [ "ef8e574a-ebaf-4b35-a3d2-f69fffb20dab", "e01009f1-ffac-40cf-ab56-03e008118be8", "3b2c40d3-fe8e-4a43-8318-9ad2c1317a04" ]
} ]
}'
HTTPie
$ echo '{
"id" : null,
"created" : null,
"updated" : null,
"version" : "1.0.0",
"user" : "genie",
"name" : "hive",
"description" : "Hive command v1.0.0",
"metadata" : null,
"tags" : [ "tag:bar", "tag:foo" ],
"configs" : [ "s3:///path/to/config-foo", "s3:///path/to/config-bar" ],
"dependencies" : [ "/path/to/file/foo", "/path/to/file/bar" ],
"setupFile" : null,
"status" : "ACTIVE",
"executable" : "/apps/hive/bin/hive",
"executableAndArguments" : [ "/apps/hive/bin/hive" ],
"checkDelay" : 10000,
"memory" : 1024,
"clusterCriteria" : [ {
"id" : "09cbf144-2267-4c50-bdde-46cf4aa02965",
"name" : null,
"version" : null,
"status" : null,
"tags" : [ "db4e763e-0dcb-4f06-934a-31710052f5c3", "2e5328d2-9cc5-4989-adff-b7fc3bfea80d" ]
}, {
"id" : "3df9dd7c-6662-420a-a23e-b2f16bb7e899",
"name" : "prod",
"version" : "1.0.0",
"status" : "UP",
"tags" : [ "ef8e574a-ebaf-4b35-a3d2-f69fffb20dab", "e01009f1-ffac-40cf-ab56-03e008118be8", "3b2c40d3-fe8e-4a43-8318-9ad2c1317a04" ]
} ]
}' | http POST 'https://genie.example.com/api/v3/commands' \
'Content-Type:application/json; charset=UTF-8'
Response Documentation
Headers
Name | Description |
---|---|
|
The URI |
Payload Fields
None
HATEOAS Links
None
HTTP Messages
Request
POST /api/v3/commands HTTP/1.1
Content-Type: application/json; charset=UTF-8
Host: genie.example.com
Content-Length: 1044
{
"id" : null,
"created" : null,
"updated" : null,
"version" : "1.0.0",
"user" : "genie",
"name" : "hive",
"description" : "Hive command v1.0.0",
"metadata" : null,
"tags" : [ "tag:bar", "tag:foo" ],
"configs" : [ "s3:///path/to/config-foo", "s3:///path/to/config-bar" ],
"dependencies" : [ "/path/to/file/foo", "/path/to/file/bar" ],
"setupFile" : null,
"status" : "ACTIVE",
"executable" : "/apps/hive/bin/hive",
"executableAndArguments" : [ "/apps/hive/bin/hive" ],
"checkDelay" : 10000,
"memory" : 1024,
"clusterCriteria" : [ {
"id" : "09cbf144-2267-4c50-bdde-46cf4aa02965",
"name" : null,
"version" : null,
"status" : null,
"tags" : [ "db4e763e-0dcb-4f06-934a-31710052f5c3", "2e5328d2-9cc5-4989-adff-b7fc3bfea80d" ]
}, {
"id" : "3df9dd7c-6662-420a-a23e-b2f16bb7e899",
"name" : "prod",
"version" : "1.0.0",
"status" : "UP",
"tags" : [ "ef8e574a-ebaf-4b35-a3d2-f69fffb20dab", "e01009f1-ffac-40cf-ab56-03e008118be8", "3b2c40d3-fe8e-4a43-8318-9ad2c1317a04" ]
} ]
}
Response
HTTP/1.1 201 Created
Location: https://genie.example.com/api/v3/commands/69680cba-7374-4429-99f3-a1cfdaa9cd64
Date: Fri, 05 Mar 2021 22:55:46 GMT
Keep-Alive: timeout=60
Connection: keep-alive
9.2. Get a Command
9.2.1. Description
Get the metadata about a command in the system.
9.2.2. Endpoint
GET /api/v3/commands/{id}
9.2.3. API Docs
Request Documentation
Headers
None
Path Parameters
Parameter | Description |
---|---|
|
The resource id |
Query Parameters
None
Payload Fields
None
Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/commands/69680cba-7374-4429-99f3-a1cfdaa9cd64' -i -X GET
HTTPie
$ http GET 'https://genie.example.com/api/v3/commands/69680cba-7374-4429-99f3-a1cfdaa9cd64'
Response Documentation
Headers
Name | Description |
---|---|
|
application/hal+json |
Payload Fields
Path | Type | Description | Constraints | Optional |
---|---|---|---|---|
id |
String |
The id. If not set the system will set one. |
Size must be between 0 and 255 inclusive |
true |
created |
String |
The UTC time of creation. Set by system. ISO8601 format including milliseconds. |
true |
|
updated |
String |
The UTC time of last update. Set by system. ISO8601 format including milliseconds. |
true |
|
name |
String |
The name |
Must not be empty. Size must be between 0 and 255 inclusive |
false |
user |
String |
The user |
Must not be empty. Size must be between 0 and 255 inclusive |
false |
version |
String |
The version |
Must not be empty. Size must be between 0 and 255 inclusive |
false |
description |
String |
Any description |
Size must be between 0 and 1000 inclusive |
true |
metadata |
Object |
Any semi-structured metadata. Must be valid JSON |
true |
|
tags |
Array |
The tags |
true |
|
setupFile |
String |
A location for any setup that needs to be done when installing |
Size must be between 0 and 1024 inclusive |
true |
configs |
Array |
Any configuration files needed for the resource |
true |
|
status |
String |
The status of the command. Options: [ACTIVE, DEPRECATED, INACTIVE] |
Must not be null |
false |
executable |
String |
The executable to run on the Genie node when this command is used. e.g. /usr/bin/hadoop |
Must not be empty. Size must be between 0 and 1024 inclusive |
false |
executableAndArguments |
Array |
The executable and arguments to run on the Genie node when this command is used. e.g. /usr/bin/hadoop |
Must not be empty |
false |
checkDelay |
Number |
The amount of time (in milliseconds) to delay between checks of the jobs using this command |
Must be at least 1 |
false |
memory |
Number |
The default amount of memory (in MB) that should be allocated for instances of this command client |
Must be at least 1 |
true |
dependencies |
Array |
The dependencies for the command |
true |
|
clusterCriteria |
Array |
The priority ordered list of criteria to resolve clusters that this command can run jobs on |
true |
HATEOAS Links
Relation | Description |
---|---|
|
URI for this command |
|
Get all the applications this command depends on |
|
Get all clusters this command is available on |
HTTP Messages
Request
GET /api/v3/commands/69680cba-7374-4429-99f3-a1cfdaa9cd64 HTTP/1.1
Host: genie.example.com
Response
HTTP/1.1 200 OK
Content-Type: application/hal+json;charset=UTF-8
Transfer-Encoding: chunked
Date: Fri, 05 Mar 2021 22:55:46 GMT
Keep-Alive: timeout=60
Connection: keep-alive
Content-Length: 1632
{
"id" : "69680cba-7374-4429-99f3-a1cfdaa9cd64",
"created" : "2021-03-05T22:55:47.219Z",
"updated" : "2021-03-05T22:55:47.219Z",
"version" : "1.0.0",
"user" : "genie",
"name" : "hive",
"description" : "Hive command v1.0.0",
"metadata" : null,
"tags" : [ "tag:bar", "genie.id:69680cba-7374-4429-99f3-a1cfdaa9cd64", "tag:foo", "genie.name:hive" ],
"configs" : [ "s3:///path/to/config-foo", "s3:///path/to/config-bar" ],
"dependencies" : [ "/path/to/file/foo", "/path/to/file/bar" ],
"setupFile" : null,
"status" : "ACTIVE",
"executable" : "/apps/hive/bin/hive",
"executableAndArguments" : [ "/apps/hive/bin/hive" ],
"checkDelay" : 10000,
"memory" : 1024,
"clusterCriteria" : [ {
"id" : "09cbf144-2267-4c50-bdde-46cf4aa02965",
"name" : null,
"version" : null,
"status" : null,
"tags" : [ "db4e763e-0dcb-4f06-934a-31710052f5c3", "2e5328d2-9cc5-4989-adff-b7fc3bfea80d" ]
}, {
"id" : "3df9dd7c-6662-420a-a23e-b2f16bb7e899",
"name" : "prod",
"version" : "1.0.0",
"status" : "UP",
"tags" : [ "ef8e574a-ebaf-4b35-a3d2-f69fffb20dab", "e01009f1-ffac-40cf-ab56-03e008118be8", "3b2c40d3-fe8e-4a43-8318-9ad2c1317a04" ]
} ],
"_links" : {
"self" : {
"href" : "https://genie.example.com/api/v3/commands/69680cba-7374-4429-99f3-a1cfdaa9cd64"
},
"applications" : {
"href" : "https://genie.example.com/api/v3/commands/69680cba-7374-4429-99f3-a1cfdaa9cd64/applications"
},
"clusters" : {
"href" : "https://genie.example.com/api/v3/commands/69680cba-7374-4429-99f3-a1cfdaa9cd64/clusters{?status}",
"templated" : true
}
}
}
9.3. Find Commands
9.3.1. Description
Find commands using various query parameters.
9.3.2. Endpoint
GET /api/v3/commands
9.3.3. API Docs
Request Documentation
Headers
None
Path Parameters
None
Query Parameters
Parameter | Description |
---|---|
|
The page number to get. Default to 0. |
|
The size of the page to get. Default to 64. |
|
The fields to sort the results by. Defaults to 'updated,desc'. |
|
The name of the commands to find. Use % to perform a regex like query |
|
The user of the commands to find. Use % to perform a regex like query |
|
The status(es) of the commands to find. Can have multiple. Options: [ACTIVE, DEPRECATED, INACTIVE] |
|
The tag(s) of the commands to find. Can have multiple. |
Payload Fields
None
Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/commands?status=ACTIVE&status=INACTIVE&status=%5BACTIVE%2C+INACTIVE%5D' -i -X GET
HTTPie
$ http GET 'https://genie.example.com/api/v3/commands?status=ACTIVE&status=INACTIVE&status=%5BACTIVE%2C+INACTIVE%5D'
Response Documentation
Headers
Name | Description |
---|---|
|
application/hal+json |
Payload Fields
Path | Type | Description | Constraints | Optional |
---|---|---|---|---|
_links |
Object |
Links to other resources. |
false |
|
page |
Object |
The result page information. |
false |
|
page.size |
Number |
The number of elements in this page result. |
false |
|
page.totalElements |
Number |
The total number of elements this search result could return. |
false |
|
page.totalPages |
Number |
The total number of pages there could be at the current page size. |
false |
|
page.number |
Number |
The current page number. |
false |
|
_embedded.commandList |
Array |
The found commands. |
false |
HATEOAS Links
Relation | Description |
---|---|
|
The current search |
|
The first page for this search |
|
The previous page for this search |
|
The next page for this search |
|
The last page for this search |
HTTP Messages
Request
GET /api/v3/commands?status=ACTIVE&status=INACTIVE&status=%5BACTIVE%2C+INACTIVE%5D HTTP/1.1
Host: genie.example.com
Response
HTTP/1.1 200 OK
Content-Type: application/hal+json;charset=UTF-8
Transfer-Encoding: chunked
Date: Fri, 05 Mar 2021 22:55:43 GMT
Keep-Alive: timeout=60
Connection: keep-alive
Content-Length: 2867
{
"_embedded" : {
"commandList" : [ {
"id" : "d9c00ffe-0eeb-4a93-96b6-bec830739477",
"created" : "2021-03-05T22:55:43.807Z",
"updated" : "2021-03-05T22:55:43.807Z",
"version" : "7b8fefeb-d459-474f-baf8-8e8eed537504",
"user" : "4a9c6b7b-992b-4834-894b-6bda6c119c94",
"name" : "cfaa62cb-1be3-48ac-b051-c3f3302f4b68",
"description" : null,
"metadata" : null,
"tags" : [ "genie.id:d9c00ffe-0eeb-4a93-96b6-bec830739477", "genie.name:cfaa62cb-1be3-48ac-b051-c3f3302f4b68" ],
"configs" : [ ],
"dependencies" : [ ],
"setupFile" : null,
"status" : "INACTIVE",
"executable" : "/apps/hive/bin/hive",
"executableAndArguments" : [ "/apps/hive/bin/hive" ],
"checkDelay" : 10000,
"memory" : null,
"clusterCriteria" : [ ],
"_links" : {
"self" : {
"href" : "https://genie.example.com/api/v3/commands/d9c00ffe-0eeb-4a93-96b6-bec830739477"
},
"applications" : {
"href" : "https://genie.example.com/api/v3/commands/d9c00ffe-0eeb-4a93-96b6-bec830739477/applications"
},
"clusters" : {
"href" : "https://genie.example.com/api/v3/commands/d9c00ffe-0eeb-4a93-96b6-bec830739477/clusters{?status}",
"templated" : true
}
}
}, {
"id" : "9df8a002-834d-45ec-97e3-258ca6493556",
"created" : "2021-03-05T22:55:41.768Z",
"updated" : "2021-03-05T22:55:41.768Z",
"version" : "a088616e-6c9c-4596-8bde-d21c8b779b79",
"user" : "08f46db3-ee15-4b30-b118-e4faff3bf27e",
"name" : "53e016c6-3233-4469-91f9-5d74febc28f1",
"description" : null,
"metadata" : null,
"tags" : [ "genie.name:53e016c6-3233-4469-91f9-5d74febc28f1", "genie.id:9df8a002-834d-45ec-97e3-258ca6493556" ],
"configs" : [ ],
"dependencies" : [ ],
"setupFile" : null,
"status" : "ACTIVE",
"executable" : "/apps/hive/bin/hive",
"executableAndArguments" : [ "/apps/hive/bin/hive" ],
"checkDelay" : 10000,
"memory" : null,
"clusterCriteria" : [ ],
"_links" : {
"self" : {
"href" : "https://genie.example.com/api/v3/commands/9df8a002-834d-45ec-97e3-258ca6493556"
},
"applications" : {
"href" : "https://genie.example.com/api/v3/commands/9df8a002-834d-45ec-97e3-258ca6493556/applications"
},
"clusters" : {
"href" : "https://genie.example.com/api/v3/commands/9df8a002-834d-45ec-97e3-258ca6493556/clusters{?status}",
"templated" : true
}
}
} ]
},
"_links" : {
"self" : {
"href" : "https://genie.example.com/api/v3/commands?status=ACTIVE&status=INACTIVE{&name,user,tag}",
"templated" : true
}
},
"page" : {
"size" : 64,
"totalElements" : 2,
"totalPages" : 1,
"number" : 0
}
}
9.4. Update an Entire Command
9.4.1. Description
Update the metadata about a command. This method does a complete replace of the resource. Usual flow is to call to get the most recent state then update what you want and call this API with the result.
For more fine grained control call the PATCH API. |
9.4.2. Endpoint
PUT /api/v3/commands/{id}
9.4.3. API Docs
Request Documentation
Headers
Name | Description |
---|---|
|
application/json |
Path Parameters
Parameter | Description |
---|---|
|
The resource id |
Query Parameters
None
Payload Fields
Path | Type | Description | Constraints | Optional |
---|---|---|---|---|
id |
String |
The id. If not set the system will set one. |
Size must be between 0 and 255 inclusive |
true |
created |
String |
The UTC time of creation. Set by system. ISO8601 format including milliseconds. |
true |
|
updated |
String |
The UTC time of last update. Set by system. ISO8601 format including milliseconds. |
true |
|
name |
String |
The name |
Must not be empty. Size must be between 0 and 255 inclusive |
false |
user |
String |
The user |
Must not be empty. Size must be between 0 and 255 inclusive |
false |
version |
String |
The version |
Must not be empty. Size must be between 0 and 255 inclusive |
false |
description |
String |
Any description |
Size must be between 0 and 1000 inclusive |
true |
metadata |
Object |
Any semi-structured metadata. Must be valid JSON |
true |
|
tags |
Array |
The tags |
true |
|
setupFile |
String |
A location for any setup that needs to be done when installing |
Size must be between 0 and 1024 inclusive |
true |
configs |
Array |
Any configuration files needed for the resource |
true |
|
status |
String |
The status of the command. Options: [ACTIVE, DEPRECATED, INACTIVE] |
Must not be null |
false |
executable |
String |
The executable to run on the Genie node when this command is used. e.g. /usr/bin/hadoop |
Must not be empty. Size must be between 0 and 1024 inclusive |
false |
executableAndArguments |
Array |
The executable and arguments to run on the Genie node when this command is used. e.g. /usr/bin/hadoop |
Must not be empty |
false |
checkDelay |
Number |
The amount of time (in milliseconds) to delay between checks of the jobs using this command |
Must be at least 1 |
false |
memory |
Number |
The default amount of memory (in MB) that should be allocated for instances of this command client |
Must be at least 1 |
true |
dependencies |
Array |
The dependencies for the command |
true |
|
clusterCriteria |
Array |
The priority ordered list of criteria to resolve clusters that this command can run jobs on |
true |
Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/commands/007f1aab-d752-4237-b2ef-8f8e06312672' -i -X PUT \
-H 'Content-Type: application/json; charset=UTF-8' \
-d '{
"id" : "007f1aab-d752-4237-b2ef-8f8e06312672",
"created" : "2021-03-05T22:55:48.743Z",
"updated" : "2021-03-05T22:55:48.743Z",
"version" : "1.0.0",
"user" : "genie",
"name" : "hive",
"description" : null,
"metadata" : null,
"tags" : [ "genie.id:007f1aab-d752-4237-b2ef-8f8e06312672", "genie.name:hive" ],
"configs" : [ ],
"dependencies" : [ ],
"setupFile" : null,
"status" : "INACTIVE",
"executable" : "/apps/hive/bin/hive",
"executableAndArguments" : [ "/apps/hive/bin/hive" ],
"checkDelay" : 10000,
"memory" : null,
"clusterCriteria" : [ ]
}'
HTTPie
$ echo '{
"id" : "007f1aab-d752-4237-b2ef-8f8e06312672",
"created" : "2021-03-05T22:55:48.743Z",
"updated" : "2021-03-05T22:55:48.743Z",
"version" : "1.0.0",
"user" : "genie",
"name" : "hive",
"description" : null,
"metadata" : null,
"tags" : [ "genie.id:007f1aab-d752-4237-b2ef-8f8e06312672", "genie.name:hive" ],
"configs" : [ ],
"dependencies" : [ ],
"setupFile" : null,
"status" : "INACTIVE",
"executable" : "/apps/hive/bin/hive",
"executableAndArguments" : [ "/apps/hive/bin/hive" ],
"checkDelay" : 10000,
"memory" : null,
"clusterCriteria" : [ ]
}' | http PUT 'https://genie.example.com/api/v3/commands/007f1aab-d752-4237-b2ef-8f8e06312672' \
'Content-Type:application/json; charset=UTF-8'
HTTP Messages
Request
PUT /api/v3/commands/007f1aab-d752-4237-b2ef-8f8e06312672 HTTP/1.1
Content-Type: application/json; charset=UTF-8
Host: genie.example.com
Content-Length: 581
{
"id" : "007f1aab-d752-4237-b2ef-8f8e06312672",
"created" : "2021-03-05T22:55:48.743Z",
"updated" : "2021-03-05T22:55:48.743Z",
"version" : "1.0.0",
"user" : "genie",
"name" : "hive",
"description" : null,
"metadata" : null,
"tags" : [ "genie.id:007f1aab-d752-4237-b2ef-8f8e06312672", "genie.name:hive" ],
"configs" : [ ],
"dependencies" : [ ],
"setupFile" : null,
"status" : "INACTIVE",
"executable" : "/apps/hive/bin/hive",
"executableAndArguments" : [ "/apps/hive/bin/hive" ],
"checkDelay" : 10000,
"memory" : null,
"clusterCriteria" : [ ]
}
Response
HTTP/1.1 204 No Content
Date: Fri, 05 Mar 2021 22:55:47 GMT
Keep-Alive: timeout=60
Connection: keep-alive
9.5. Update Parts of a Command
9.5.1. Description
Update the metadata about a command using JSON Patch. This will ONLY update the fields you request be changed.
For more information about JSON Patch RFC see the website. |
9.5.2. Endpoint
PATCH /api/v3/commands/{id}
9.5.3. API Docs
Request Documentation
Headers
Name | Description |
---|---|
|
application/json |
Path Parameters
Parameter | Description |
---|---|
|
The resource id |
Query Parameters
None
Payload Fields
Path | Type | Description | Constraints | Optional |
---|---|---|---|---|
[] |
Array |
Array of patches to apply |
false |
|
[].op |
String |
Patch operation to perform. |
add, remove, replace, copy, move, test |
false |
[].path |
String |
The json path to operate on. e.g. /user |
false |
|
[].from |
String |
The json path to move or copy from. e.g. /user |
true |
|
[].value |
String |
The json value to put at the path for an add, replace or test |
true |
Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/commands/007f1aab-d752-4237-b2ef-8f8e06312672' -i -X PATCH \
-H 'Content-Type: application/json; charset=UTF-8' \
-d '[ {
"op" : "replace",
"path" : "/name",
"value" : "6f1e021a-c01f-473d-ac4c-69e77b970015"
} ]'
HTTPie
$ echo '[ {
"op" : "replace",
"path" : "/name",
"value" : "6f1e021a-c01f-473d-ac4c-69e77b970015"
} ]' | http PATCH 'https://genie.example.com/api/v3/commands/007f1aab-d752-4237-b2ef-8f8e06312672' \
'Content-Type:application/json; charset=UTF-8'
HTTP Messages
Request
PATCH /api/v3/commands/007f1aab-d752-4237-b2ef-8f8e06312672 HTTP/1.1
Content-Type: application/json; charset=UTF-8
Host: genie.example.com
Content-Length: 98
[ {
"op" : "replace",
"path" : "/name",
"value" : "6f1e021a-c01f-473d-ac4c-69e77b970015"
} ]
Response
HTTP/1.1 204 No Content
Date: Fri, 05 Mar 2021 22:55:48 GMT
Keep-Alive: timeout=60
Connection: keep-alive
9.6. Delete All Commands
9.6.1. Description
Delete all the commands currently stored in the system.
You won’t be able to delete any command that has been used by any job that is still in the system to maintain the ability for users to look up information about their job (where it ran, what it ran, etc) |
9.6.2. Endpoint
DELETE /api/v3/commands
9.6.3. API Docs
Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/commands' -i -X DELETE
HTTPie
$ http DELETE 'https://genie.example.com/api/v3/commands'
HTTP Messages
Request
DELETE /api/v3/commands HTTP/1.1
Host: genie.example.com
Response
HTTP/1.1 204 No Content
Date: Fri, 05 Mar 2021 22:55:44 GMT
Keep-Alive: timeout=60
Connection: keep-alive
9.7. Delete a Command
9.7.1. Description
Delete a command currently configured in the system.
You won’t be able to delete a command that has been used by any job that is still in the system to maintain the ability for users to look up information about their job (where it ran, what it ran, etc) |
9.7.2. Endpoint
DELETE /api/v3/commands/{id}
9.7.3. API Docs
Request Documentation
Headers
None
Path Parameters
Parameter | Description |
---|---|
|
The resource id |
Query Parameters
None
Payload Fields
None
Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/commands/79aecf01-e862-4924-a081-a2120f224b36' -i -X DELETE
HTTPie
$ http DELETE 'https://genie.example.com/api/v3/commands/79aecf01-e862-4924-a081-a2120f224b36'
HTTP Messages
Request
DELETE /api/v3/commands/79aecf01-e862-4924-a081-a2120f224b36 HTTP/1.1
Host: genie.example.com
Response
HTTP/1.1 204 No Content
Date: Fri, 05 Mar 2021 22:55:41 GMT
Keep-Alive: timeout=60
Connection: keep-alive
9.8. Get Configs for Command
9.8.1. Description
Get the configuration file locations for a command.
9.8.2. Endpoint
GET /api/v3/commands/{id}/configs
9.8.3. API Docs
Request Documentation
Headers
None
Path Parameters
Parameter | Description |
---|---|
|
The resource id |
Query Parameters
None
Payload Fields
None
Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/commands/007f1aab-d752-4237-b2ef-8f8e06312672/configs' -i -X GET
HTTPie
$ http GET 'https://genie.example.com/api/v3/commands/007f1aab-d752-4237-b2ef-8f8e06312672/configs'
Response Documentation
Headers
Name | Description |
---|---|
|
application/json |
Payload Fields
Path | Type | Description | Constraints | Optional |
---|---|---|---|---|
[] |
Array |
Array of configuration file locations |
false |
HATEOAS Links
None
HTTP Messages
Request
GET /api/v3/commands/007f1aab-d752-4237-b2ef-8f8e06312672/configs HTTP/1.1
Host: genie.example.com
Response
HTTP/1.1 200 OK
Content-Type: application/json;charset=UTF-8
Transfer-Encoding: chunked
Date: Fri, 05 Mar 2021 22:55:45 GMT
Keep-Alive: timeout=60
Connection: keep-alive
Content-Length: 82
[ "08b846b3-5f91-4d79-ac86-f75a6e71bfdd", "04e9f051-0a68-4c0b-94c3-12f804799c41" ]
9.9. Add Configs to Command
9.9.1. Description
Add configuration file locations to an existing command.
Configurations are stored as a set so any duplicates will be ignored. |
9.9.2. Endpoint
POST /api/v3/commands/{id}/configs
9.9.3. API Docs
Request Documentation
Headers
Name | Description |
---|---|
|
application/json |
Path Parameters
Parameter | Description |
---|---|
|
The resource id |
Query Parameters
None
Payload Fields
Path | Type | Description | Constraints | Optional |
---|---|---|---|---|
[] |
Array |
Array of configuration file locations |
false |
Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/commands/007f1aab-d752-4237-b2ef-8f8e06312672/configs' -i -X POST \
-H 'Content-Type: application/json; charset=UTF-8' \
-d '[ "04e9f051-0a68-4c0b-94c3-12f804799c41", "08b846b3-5f91-4d79-ac86-f75a6e71bfdd" ]'
HTTPie
$ echo '[ "04e9f051-0a68-4c0b-94c3-12f804799c41", "08b846b3-5f91-4d79-ac86-f75a6e71bfdd" ]' | http POST 'https://genie.example.com/api/v3/commands/007f1aab-d752-4237-b2ef-8f8e06312672/configs' \
'Content-Type:application/json; charset=UTF-8'
HTTP Messages
Request
POST /api/v3/commands/007f1aab-d752-4237-b2ef-8f8e06312672/configs HTTP/1.1
Content-Type: application/json; charset=UTF-8
Host: genie.example.com
Content-Length: 82
[ "04e9f051-0a68-4c0b-94c3-12f804799c41", "08b846b3-5f91-4d79-ac86-f75a6e71bfdd" ]
Response
HTTP/1.1 204 No Content
Date: Fri, 05 Mar 2021 22:55:45 GMT
Keep-Alive: timeout=60
Connection: keep-alive
9.10. Update Configs for a Command
9.10.1. Description
Update the configuration file locations for an existing command. Stored as a set so duplicates are ignored.
9.10.2. Endpoint
PUT /api/v3/commands/{id}/configs
9.10.3. API Docs
Request Documentation
Headers
Name | Description |
---|---|
|
application/json |
Path Parameters
Parameter | Description |
---|---|
|
The resource id |
Query Parameters
None
Payload Fields
Path | Type | Description | Constraints | Optional |
---|---|---|---|---|
[] |
Array |
Array of configuration file locations |
false |
Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/commands/007f1aab-d752-4237-b2ef-8f8e06312672/configs' -i -X PUT \
-H 'Content-Type: application/json; charset=UTF-8' \
-d '[ "fc0c0254-8fee-408e-b0c1-7e4d320fa6a5" ]'
HTTPie
$ echo '[ "fc0c0254-8fee-408e-b0c1-7e4d320fa6a5" ]' | http PUT 'https://genie.example.com/api/v3/commands/007f1aab-d752-4237-b2ef-8f8e06312672/configs' \
'Content-Type:application/json; charset=UTF-8'
HTTP Messages
Request
PUT /api/v3/commands/007f1aab-d752-4237-b2ef-8f8e06312672/configs HTTP/1.1
Content-Type: application/json; charset=UTF-8
Host: genie.example.com
Content-Length: 42
[ "fc0c0254-8fee-408e-b0c1-7e4d320fa6a5" ]
Response
HTTP/1.1 204 No Content
Date: Fri, 05 Mar 2021 22:55:47 GMT
Keep-Alive: timeout=60
Connection: keep-alive
9.11. Remove All Configs From a Command
9.11.1. Description
Remove all the configuration file locations for an existing command.
9.11.2. Endpoint
DELETE /api/v3/commands/{id}/configs
9.11.3. API Docs
Request Documentation
Headers
None
Path Parameters
Parameter | Description |
---|---|
|
The resource id |
Query Parameters
None
Payload Fields
None
Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/commands/007f1aab-d752-4237-b2ef-8f8e06312672/configs' -i -X DELETE
HTTPie
$ http DELETE 'https://genie.example.com/api/v3/commands/007f1aab-d752-4237-b2ef-8f8e06312672/configs'
HTTP Messages
Request
DELETE /api/v3/commands/007f1aab-d752-4237-b2ef-8f8e06312672/configs HTTP/1.1
Host: genie.example.com
Response
HTTP/1.1 204 No Content
Date: Fri, 05 Mar 2021 22:55:41 GMT
Keep-Alive: timeout=60
Connection: keep-alive
9.12. Get Dependencies For an Command
9.12.1. Description
Get the dependency file locations for an command.
9.12.2. Endpoint
GET /api/v3/commands/{id}/dependencies
9.12.3. API Docs
Request Documentation
Headers
None
Path Parameters
Parameter | Description |
---|---|
|
The resource id |
Query Parameters
None
Payload Fields
None
Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/commands/007f1aab-d752-4237-b2ef-8f8e06312672/dependencies' -i -X GET
HTTPie
$ http GET 'https://genie.example.com/api/v3/commands/007f1aab-d752-4237-b2ef-8f8e06312672/dependencies'
Response Documentation
Headers
Name | Description |
---|---|
|
application/json |
Payload Fields
Path | Type | Description | Constraints | Optional |
---|---|---|---|---|
[] |
Array |
Array of dependency file locations |
false |
HATEOAS Links
None
HTTP Messages
Request
GET /api/v3/commands/007f1aab-d752-4237-b2ef-8f8e06312672/dependencies HTTP/1.1
Host: genie.example.com
Response
HTTP/1.1 200 OK
Content-Type: application/json;charset=UTF-8
Transfer-Encoding: chunked
Date: Fri, 05 Mar 2021 22:55:45 GMT
Keep-Alive: timeout=60
Connection: keep-alive
Content-Length: 82
[ "379290e9-d528-42e5-9d7f-f20cec849f37", "8acae164-d7f3-42b6-93ec-f1f8959b4a5e" ]
9.13. Add Dependencies to Command
9.13.1. Description
Add dependency file locations to an existing command. Stored as a set so all duplicates are ignored.
9.13.2. Endpoint
POST /api/v3/commands/{id}/dependencies
9.13.3. API Docs
Request Documentation
Headers
Name | Description |
---|---|
|
application/json |
Path Parameters
Parameter | Description |
---|---|
|
The resource id |
Query Parameters
None
Payload Fields
Path | Type | Description | Constraints | Optional |
---|---|---|---|---|
[] |
Array |
Array of dependency file locations |
false |
Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/commands/007f1aab-d752-4237-b2ef-8f8e06312672/dependencies' -i -X POST \
-H 'Content-Type: application/json; charset=UTF-8' \
-d '[ "379290e9-d528-42e5-9d7f-f20cec849f37", "8acae164-d7f3-42b6-93ec-f1f8959b4a5e" ]'
HTTPie
$ echo '[ "379290e9-d528-42e5-9d7f-f20cec849f37", "8acae164-d7f3-42b6-93ec-f1f8959b4a5e" ]' | http POST 'https://genie.example.com/api/v3/commands/007f1aab-d752-4237-b2ef-8f8e06312672/dependencies' \
'Content-Type:application/json; charset=UTF-8'
HTTP Messages
Request
POST /api/v3/commands/007f1aab-d752-4237-b2ef-8f8e06312672/dependencies HTTP/1.1
Content-Type: application/json; charset=UTF-8
Host: genie.example.com
Content-Length: 82
[ "379290e9-d528-42e5-9d7f-f20cec849f37", "8acae164-d7f3-42b6-93ec-f1f8959b4a5e" ]
Response
HTTP/1.1 204 No Content
Date: Fri, 05 Mar 2021 22:55:45 GMT
Keep-Alive: timeout=60
Connection: keep-alive
9.14. Update Dependencies for an Command
9.14.1. Description
Update the dependency file locations for an existing command
9.14.2. Endpoint
PUT /api/v3/commands/{id}/dependencies
9.14.3. API Docs
Request Documentation
Headers
Name | Description |
---|---|
|
application/json |
Path Parameters
Parameter | Description |
---|---|
|
The resource id |
Query Parameters
None
Payload Fields
Path | Type | Description | Constraints | Optional |
---|---|---|---|---|
[] |
Array |
Array of dependency file locations |
false |
Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/commands/007f1aab-d752-4237-b2ef-8f8e06312672/dependencies' -i -X PUT \
-H 'Content-Type: application/json; charset=UTF-8' \
-d '[ "80dad41e-3329-4d8c-a9fd-4985836d5ae6" ]'
HTTPie
$ echo '[ "80dad41e-3329-4d8c-a9fd-4985836d5ae6" ]' | http PUT 'https://genie.example.com/api/v3/commands/007f1aab-d752-4237-b2ef-8f8e06312672/dependencies' \
'Content-Type:application/json; charset=UTF-8'
HTTP Messages
Request
PUT /api/v3/commands/007f1aab-d752-4237-b2ef-8f8e06312672/dependencies HTTP/1.1
Content-Type: application/json; charset=UTF-8
Host: genie.example.com
Content-Length: 42
[ "80dad41e-3329-4d8c-a9fd-4985836d5ae6" ]
Response
HTTP/1.1 204 No Content
Date: Fri, 05 Mar 2021 22:55:46 GMT
Keep-Alive: timeout=60
Connection: keep-alive
9.15. Remove All Dependencies From an Command
9.15.1. Description
Remove all the dependency file locations for an existing command.
9.15.2. Endpoint
DELETE /api/v3/commands/{id}/dependencies
9.15.3. API Docs
Request Documentation
Headers
None
Path Parameters
Parameter | Description |
---|---|
|
The resource id |
Query Parameters
None
Payload Fields
None
Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/commands/007f1aab-d752-4237-b2ef-8f8e06312672/dependencies' -i -X DELETE
HTTPie
$ http DELETE 'https://genie.example.com/api/v3/commands/007f1aab-d752-4237-b2ef-8f8e06312672/dependencies'
HTTP Messages
Request
DELETE /api/v3/commands/007f1aab-d752-4237-b2ef-8f8e06312672/dependencies HTTP/1.1
Host: genie.example.com
Response
HTTP/1.1 204 No Content
Date: Fri, 05 Mar 2021 22:55:44 GMT
Keep-Alive: timeout=60
Connection: keep-alive
9.16. Get Tags For a Command
9.16.1. Description
Get the tags for a command.
9.16.2. Endpoint
GET /api/v3/commands/{id}/tags
9.16.3. API Docs
Request Documentation
Headers
None
Path Parameters
Parameter | Description |
---|---|
|
The resource id |
Query Parameters
None
Payload Fields
None
Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/commands/007f1aab-d752-4237-b2ef-8f8e06312672/tags' -i -X GET
HTTPie
$ http GET 'https://genie.example.com/api/v3/commands/007f1aab-d752-4237-b2ef-8f8e06312672/tags'
Response Documentation
Headers
Name | Description |
---|---|
|
application/json |
Payload Fields
Path | Type | Description | Constraints | Optional |
---|---|---|---|---|
[] |
Array |
Array of tags |
false |
HATEOAS Links
None
HTTP Messages
Request
GET /api/v3/commands/007f1aab-d752-4237-b2ef-8f8e06312672/tags HTTP/1.1
Host: genie.example.com
Response
HTTP/1.1 200 OK
Content-Type: application/json;charset=UTF-8
Transfer-Encoding: chunked
Date: Fri, 05 Mar 2021 22:55:48 GMT
Keep-Alive: timeout=60
Connection: keep-alive
Content-Length: 150
[ "genie.id:007f1aab-d752-4237-b2ef-8f8e06312672", "genie.name:hive", "3f6aefc1-76ea-4382-8dae-bf138ef66d61", "c92c5d9d-faa5-414e-bac6-21bab7ca2f38" ]
9.17. Add Tags to Command
9.17.1. Description
Add tags to an existing command. Stored as a set so all duplicates are ignored.
genie.id:{id} and genie.name:{name} tags are automatically added by the service.
|
9.17.2. Endpoint
POST /api/v3/commands/{id}/tags
9.17.3. API Docs
Request Documentation
Headers
Name | Description |
---|---|
|
application/json |
Path Parameters
Parameter | Description |
---|---|
|
The resource id |
Query Parameters
None
Payload Fields
Path | Type | Description | Constraints | Optional |
---|---|---|---|---|
[] |
Array |
Array of tags |
false |
Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/commands/007f1aab-d752-4237-b2ef-8f8e06312672/tags' -i -X POST \
-H 'Content-Type: application/json; charset=UTF-8' \
-d '[ "c92c5d9d-faa5-414e-bac6-21bab7ca2f38", "3f6aefc1-76ea-4382-8dae-bf138ef66d61" ]'
HTTPie
$ echo '[ "c92c5d9d-faa5-414e-bac6-21bab7ca2f38", "3f6aefc1-76ea-4382-8dae-bf138ef66d61" ]' | http POST 'https://genie.example.com/api/v3/commands/007f1aab-d752-4237-b2ef-8f8e06312672/tags' \
'Content-Type:application/json; charset=UTF-8'
HTTP Messages
Request
POST /api/v3/commands/007f1aab-d752-4237-b2ef-8f8e06312672/tags HTTP/1.1
Content-Type: application/json; charset=UTF-8
Host: genie.example.com
Content-Length: 82
[ "c92c5d9d-faa5-414e-bac6-21bab7ca2f38", "3f6aefc1-76ea-4382-8dae-bf138ef66d61" ]
Response
HTTP/1.1 204 No Content
Date: Fri, 05 Mar 2021 22:55:48 GMT
Keep-Alive: timeout=60
Connection: keep-alive
9.18. Update Tags for a Command
9.18.1. Description
Update the tags for an existing command.
The genie.id:{id} and genie.name:{name} tags can’t be removed. They will automatically be added back
by the system.
|
9.18.2. Endpoint
PUT /api/v3/commands/{id}/tags
9.18.3. API Docs
Request Documentation
Headers
Name | Description |
---|---|
|
application/json |
Path Parameters
Parameter | Description |
---|---|
|
The resource id |
Query Parameters
None
Payload Fields
Path | Type | Description | Constraints | Optional |
---|---|---|---|---|
[] |
Array |
Array of tags |
false |
Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/commands/007f1aab-d752-4237-b2ef-8f8e06312672/tags' -i -X PUT \
-H 'Content-Type: application/json; charset=UTF-8' \
-d '[ "d5cb1b8c-dd55-4648-895e-5af643644545" ]'
HTTPie
$ echo '[ "d5cb1b8c-dd55-4648-895e-5af643644545" ]' | http PUT 'https://genie.example.com/api/v3/commands/007f1aab-d752-4237-b2ef-8f8e06312672/tags' \
'Content-Type:application/json; charset=UTF-8'
HTTP Messages
Request
PUT /api/v3/commands/007f1aab-d752-4237-b2ef-8f8e06312672/tags HTTP/1.1
Content-Type: application/json; charset=UTF-8
Host: genie.example.com
Content-Length: 42
[ "d5cb1b8c-dd55-4648-895e-5af643644545" ]
Response
HTTP/1.1 204 No Content
Date: Fri, 05 Mar 2021 22:55:48 GMT
Keep-Alive: timeout=60
Connection: keep-alive
9.19. Remove All Tags From Command
9.19.1. Description
Remove all the tags for an existing command
The genie.id:{id} and genie.name:{name} tags will NOT be removed by this operation
|
9.19.2. Endpoint
DELETE /api/v3/commands/{id}/tags
9.19.3. API Docs
Request Documentation
Headers
None
Path Parameters
Parameter | Description |
---|---|
|
The resource id |
Query Parameters
None
Payload Fields
None
Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/commands/007f1aab-d752-4237-b2ef-8f8e06312672/tags' -i -X DELETE
HTTPie
$ http DELETE 'https://genie.example.com/api/v3/commands/007f1aab-d752-4237-b2ef-8f8e06312672/tags'
HTTP Messages
Request
DELETE /api/v3/commands/007f1aab-d752-4237-b2ef-8f8e06312672/tags HTTP/1.1
Host: genie.example.com
Response
HTTP/1.1 204 No Content
Date: Fri, 05 Mar 2021 22:55:41 GMT
Keep-Alive: timeout=60
Connection: keep-alive
9.20. Remove Tag From Command
9.20.1. Description
Remove a tag from an existing command.
You can’t remove the genie.id:{id} and genie.name:{name} tags. They will just be added back by the system
|
9.20.2. Endpoint
DELETE /api/v3/commands/{id}/tags/{tag}
9.20.3. API Docs
Request Documentation
Headers
None
Path Parameters
Parameter | Description |
---|---|
|
The resource id |
|
The tag to remove |
Query Parameters
None
Payload Fields
None
Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/commands/007f1aab-d752-4237-b2ef-8f8e06312672/tags/779b95ee-660c-4473-9895-124dad496fed' -i -X DELETE
HTTPie
$ http DELETE 'https://genie.example.com/api/v3/commands/007f1aab-d752-4237-b2ef-8f8e06312672/tags/779b95ee-660c-4473-9895-124dad496fed'
HTTP Messages
Request
DELETE /api/v3/commands/007f1aab-d752-4237-b2ef-8f8e06312672/tags/779b95ee-660c-4473-9895-124dad496fed HTTP/1.1
Host: genie.example.com
Response
HTTP/1.1 204 No Content
Date: Fri, 05 Mar 2021 22:55:47 GMT
Keep-Alive: timeout=60
Connection: keep-alive
9.21. Add Applications to a Command
9.21.1. Description
Add new applications (as array of their ID’s) to the existing set of applications the command depends on
The applications for the ID’s must already exist in the system |
9.21.2. Endpoint
POST /api/v3/commands/{id}/applications
9.21.3. API Docs
Request Documentation
Headers
Name | Description |
---|---|
|
application/json |
Path Parameters
Parameter | Description |
---|---|
|
The resource id |
Query Parameters
None
Payload Fields
Path | Type | Description | Constraints | Optional |
---|---|---|---|---|
[] |
Array |
Array of application ids to add to existing set of applications |
false |
Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/commands/007f1aab-d752-4237-b2ef-8f8e06312672/applications' -i -X POST \
-H 'Content-Type: application/json; charset=UTF-8' \
-d '[ "429d50e0-3819-47fb-b669-a4860cd1cdd1", "c8b2da65-07b6-4641-91fd-665e23f97bf4" ]'
HTTPie
$ echo '[ "429d50e0-3819-47fb-b669-a4860cd1cdd1", "c8b2da65-07b6-4641-91fd-665e23f97bf4" ]' | http POST 'https://genie.example.com/api/v3/commands/007f1aab-d752-4237-b2ef-8f8e06312672/applications' \
'Content-Type:application/json; charset=UTF-8'
HTTP Messages
Request
POST /api/v3/commands/007f1aab-d752-4237-b2ef-8f8e06312672/applications HTTP/1.1
Content-Type: application/json; charset=UTF-8
Host: genie.example.com
Content-Length: 82
[ "429d50e0-3819-47fb-b669-a4860cd1cdd1", "c8b2da65-07b6-4641-91fd-665e23f97bf4" ]
Response
HTTP/1.1 204 No Content
Date: Fri, 05 Mar 2021 22:55:44 GMT
Keep-Alive: timeout=60
Connection: keep-alive
9.22. Get the Applications for a Command
9.22.1. Description
Get the applications the command currently depends on. These are the applications that will be installed at runtime when a job is run with the given command
9.22.2. Endpoint
GET /api/v3/commands/{id}/applications
9.22.3. API Docs
Request Documentation
Headers
None
Path Parameters
Parameter | Description |
---|---|
|
The resource id |
Query Parameters
None
Payload Fields
None
Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/commands/007f1aab-d752-4237-b2ef-8f8e06312672/applications' -i -X GET
HTTPie
$ http GET 'https://genie.example.com/api/v3/commands/007f1aab-d752-4237-b2ef-8f8e06312672/applications'
Response Documentation
Headers
Name | Description |
---|---|
|
application/hal+json |
Payload Fields
Path | Type | Description | Constraints | Optional |
---|---|---|---|---|
[] |
Array |
The set of applications this command depends on |
false |
HATEOAS Links
None
HTTP Messages
Request
GET /api/v3/commands/007f1aab-d752-4237-b2ef-8f8e06312672/applications HTTP/1.1
Host: genie.example.com
Response
HTTP/1.1 200 OK
Content-Type: application/hal+json;charset=UTF-8
Transfer-Encoding: chunked
Date: Fri, 05 Mar 2021 22:55:44 GMT
Keep-Alive: timeout=60
Connection: keep-alive
Content-Length: 2540
[ {
"id" : "429d50e0-3819-47fb-b669-a4860cd1cdd1",
"created" : "2021-03-05T22:55:45.131Z",
"updated" : "2021-03-05T22:55:45.131Z",
"version" : "985a4ed8-1d36-4ac0-970b-019bb405795b",
"user" : "985a4ed8-1d36-4ac0-970b-019bb405795b",
"name" : "985a4ed8-1d36-4ac0-970b-019bb405795b",
"description" : null,
"metadata" : null,
"tags" : [ "genie.id:429d50e0-3819-47fb-b669-a4860cd1cdd1", "genie.name:985a4ed8-1d36-4ac0-970b-019bb405795b" ],
"configs" : [ ],
"dependencies" : [ ],
"setupFile" : null,
"status" : "ACTIVE",
"type" : null,
"links" : [ {
"rel" : "self",
"href" : "https://genie.example.com/api/v3/applications/429d50e0-3819-47fb-b669-a4860cd1cdd1"
}, {
"rel" : "commands",
"href" : "https://genie.example.com/api/v3/applications/429d50e0-3819-47fb-b669-a4860cd1cdd1/commands{?status}"
} ]
}, {
"id" : "c8b2da65-07b6-4641-91fd-665e23f97bf4",
"created" : "2021-03-05T22:55:45.145Z",
"updated" : "2021-03-05T22:55:45.145Z",
"version" : "985a4ed8-1d36-4ac0-970b-019bb405795b",
"user" : "985a4ed8-1d36-4ac0-970b-019bb405795b",
"name" : "985a4ed8-1d36-4ac0-970b-019bb405795b",
"description" : null,
"metadata" : null,
"tags" : [ "genie.id:c8b2da65-07b6-4641-91fd-665e23f97bf4", "genie.name:985a4ed8-1d36-4ac0-970b-019bb405795b" ],
"configs" : [ ],
"dependencies" : [ ],
"setupFile" : null,
"status" : "ACTIVE",
"type" : null,
"links" : [ {
"rel" : "self",
"href" : "https://genie.example.com/api/v3/applications/c8b2da65-07b6-4641-91fd-665e23f97bf4"
}, {
"rel" : "commands",
"href" : "https://genie.example.com/api/v3/applications/c8b2da65-07b6-4641-91fd-665e23f97bf4/commands{?status}"
} ]
}, {
"id" : "97aaf4f6-3276-46aa-8f5c-c76d7b2dc3a8",
"created" : "2021-03-05T22:55:45.361Z",
"updated" : "2021-03-05T22:55:45.361Z",
"version" : "985a4ed8-1d36-4ac0-970b-019bb405795b",
"user" : "985a4ed8-1d36-4ac0-970b-019bb405795b",
"name" : "985a4ed8-1d36-4ac0-970b-019bb405795b",
"description" : null,
"metadata" : null,
"tags" : [ "genie.id:97aaf4f6-3276-46aa-8f5c-c76d7b2dc3a8", "genie.name:985a4ed8-1d36-4ac0-970b-019bb405795b" ],
"configs" : [ ],
"dependencies" : [ ],
"setupFile" : null,
"status" : "ACTIVE",
"type" : null,
"links" : [ {
"rel" : "self",
"href" : "https://genie.example.com/api/v3/applications/97aaf4f6-3276-46aa-8f5c-c76d7b2dc3a8"
}, {
"rel" : "commands",
"href" : "https://genie.example.com/api/v3/applications/97aaf4f6-3276-46aa-8f5c-c76d7b2dc3a8/commands{?status}"
} ]
} ]
9.23. Set Applications for a Command
9.23.1. Description
Set the applications (as array of their ID’s) that are dependencies of the command.
The applications with the ID’s must already exist in the system |
9.23.2. Endpoint
PUT /api/v3/commands/{id}/applications
9.23.3. API Docs
Request Documentation
Headers
Name | Description |
---|---|
|
application/json |
Path Parameters
Parameter | Description |
---|---|
|
The resource id |
Query Parameters
None
Payload Fields
Path | Type | Description | Constraints | Optional |
---|---|---|---|---|
[] |
Array |
Array of application ids to replace the existing set of applications with |
false |
Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/commands/007f1aab-d752-4237-b2ef-8f8e06312672/applications' -i -X PUT \
-H 'Content-Type: application/json; charset=UTF-8' \
-d '[ "20c2dc5d-ec2e-4346-8aab-1b3ca0e5cd72", "b1639c38-1735-48e6-a7d0-8e0f20544b94" ]'
HTTPie
$ echo '[ "20c2dc5d-ec2e-4346-8aab-1b3ca0e5cd72", "b1639c38-1735-48e6-a7d0-8e0f20544b94" ]' | http PUT 'https://genie.example.com/api/v3/commands/007f1aab-d752-4237-b2ef-8f8e06312672/applications' \
'Content-Type:application/json; charset=UTF-8'
HTTP Messages
Request
PUT /api/v3/commands/007f1aab-d752-4237-b2ef-8f8e06312672/applications HTTP/1.1
Content-Type: application/json; charset=UTF-8
Host: genie.example.com
Content-Length: 82
[ "20c2dc5d-ec2e-4346-8aab-1b3ca0e5cd72", "b1639c38-1735-48e6-a7d0-8e0f20544b94" ]
Response
HTTP/1.1 204 No Content
Date: Fri, 05 Mar 2021 22:55:47 GMT
Keep-Alive: timeout=60
Connection: keep-alive
9.24. Remove All Applications From a Command
9.24.1. Description
Remove all the applications currently set as dependencies of the command
This does NOT delete the application(s) from the system just unlinks them |
9.24.2. Endpoint
DELETE /api/v3/commands/{id}/applications
9.24.3. API Docs
Request Documentation
Headers
None
Path Parameters
Parameter | Description |
---|---|
|
The resource id |
Query Parameters
None
Payload Fields
None
Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/commands/007f1aab-d752-4237-b2ef-8f8e06312672/applications' -i -X DELETE
HTTPie
$ http DELETE 'https://genie.example.com/api/v3/commands/007f1aab-d752-4237-b2ef-8f8e06312672/applications'
HTTP Messages
Request
DELETE /api/v3/commands/007f1aab-d752-4237-b2ef-8f8e06312672/applications HTTP/1.1
Host: genie.example.com
Response
HTTP/1.1 204 No Content
Date: Fri, 05 Mar 2021 22:55:48 GMT
Keep-Alive: timeout=60
Connection: keep-alive
9.25. Remove A Single Application From a Command
9.25.1. Description
Remove the identified application as a dependency of the command.
This does NOT delete the application from the system just un-links it |
9.25.2. Endpoint
DELETE /api/v3/commands/{id}/applications/{applicationId}
9.25.3. API Docs
Request Documentation
Headers
None
Path Parameters
Parameter | Description |
---|---|
|
The resource id |
|
The id of the application to remove |
Query Parameters
None
Payload Fields
None
Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/commands/007f1aab-d752-4237-b2ef-8f8e06312672/applications/2989b9b2-0edd-43a9-8dd1-71189079a56a' -i -X DELETE
HTTPie
$ http DELETE 'https://genie.example.com/api/v3/commands/007f1aab-d752-4237-b2ef-8f8e06312672/applications/2989b9b2-0edd-43a9-8dd1-71189079a56a'
HTTP Messages
Request
DELETE /api/v3/commands/007f1aab-d752-4237-b2ef-8f8e06312672/applications/2989b9b2-0edd-43a9-8dd1-71189079a56a HTTP/1.1
Host: genie.example.com
Response
HTTP/1.1 204 No Content
Date: Fri, 05 Mar 2021 22:55:48 GMT
Keep-Alive: timeout=60
Connection: keep-alive
9.26. Get the Clusters that Have Command Available
9.26.1. Description
Search the clusters that the given command is linked to.
9.26.2. Endpoint
GET /api/v3/commands/{id}/clusters
9.26.3. API Docs
Request Documentation
Headers
None
Path Parameters
Parameter | Description |
---|---|
|
The resource id |
Query Parameters
Parameter | Description |
---|---|
|
The status of clusters to search for |
Payload Fields
None
Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/commands/57acc8af-4983-41c7-a3d4-4debd62bb390/clusters?status=UP' -i -X GET
HTTPie
$ http GET 'https://genie.example.com/api/v3/commands/57acc8af-4983-41c7-a3d4-4debd62bb390/clusters?status=UP'
Response Documentation
Headers
Name | Description |
---|---|
|
application/hal+json |
Payload Fields
Path | Type | Description | Constraints | Optional |
---|---|---|---|---|
[] |
Array |
The list of clusters found |
false |
HATEOAS Links
None
HTTP Messages
Request
GET /api/v3/commands/57acc8af-4983-41c7-a3d4-4debd62bb390/clusters?status=UP HTTP/1.1
Host: genie.example.com
Response
HTTP/1.1 200 OK
Content-Type: application/hal+json;charset=UTF-8
Transfer-Encoding: chunked
Date: Fri, 05 Mar 2021 22:55:45 GMT
Keep-Alive: timeout=60
Connection: keep-alive
Content-Length: 819
[ {
"id" : "021d61a5-fc86-419d-8129-9e9d4978d6b6",
"created" : "2021-03-05T22:55:46.729Z",
"updated" : "2021-03-05T22:55:46.729Z",
"version" : "482d1389-f53d-4634-b3d9-9f6bf1d7a1d3",
"user" : "482d1389-f53d-4634-b3d9-9f6bf1d7a1d3",
"name" : "482d1389-f53d-4634-b3d9-9f6bf1d7a1d3",
"description" : null,
"metadata" : null,
"tags" : [ "genie.id:021d61a5-fc86-419d-8129-9e9d4978d6b6", "genie.name:482d1389-f53d-4634-b3d9-9f6bf1d7a1d3" ],
"configs" : [ ],
"dependencies" : [ ],
"setupFile" : null,
"status" : "UP",
"links" : [ {
"rel" : "self",
"href" : "https://genie.example.com/api/v3/clusters/021d61a5-fc86-419d-8129-9e9d4978d6b6"
}, {
"rel" : "commands",
"href" : "https://genie.example.com/api/v3/clusters/021d61a5-fc86-419d-8129-9e9d4978d6b6/commands{?status}"
} ]
} ]
9.27. Get the Cluster Criteria for a Command
9.27.1. Description
Get the priority ordered list of criteria associated with this command that say what attributes a cluster needs to have in order for this command to work on that cluster.
9.27.2. Endpoint
GET /api/v3/commands/{id}/clusterCriteria
9.27.3. API Docs
Request Documentation
Headers
None
Path Parameters
Parameter | Description |
---|---|
|
The resource id |
Query Parameters
None
Payload Fields
None
Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/commands/5b4e01ea-7f87-4c2b-a8d5-7d946710f999/clusterCriteria' -i -X GET
HTTPie
$ http GET 'https://genie.example.com/api/v3/commands/5b4e01ea-7f87-4c2b-a8d5-7d946710f999/clusterCriteria'
Response Documentation
Headers
Name | Description |
---|---|
|
application/json |
Payload Fields
Path | Type | Description | Constraints | Optional |
---|---|---|---|---|
[] |
Array |
A priority ordered list of criteria |
true |
|
[].id |
String |
The unique identifier a resource needs to have to match this criterion |
true |
|
[].name |
String |
The name a resource needs to have to match this criterion |
true |
|
[].version |
String |
The version a resource needs to have to match this criterion |
true |
|
[].status |
String |
The status a resource needs to have to match this criterion |
true |
|
[].tags |
Array |
The set of tags a resource needs to have to match this criterion |
true |
HATEOAS Links
None
HTTP Messages
Request
GET /api/v3/commands/5b4e01ea-7f87-4c2b-a8d5-7d946710f999/clusterCriteria HTTP/1.1
Host: genie.example.com
Response
HTTP/1.1 200 OK
Content-Type: application/json;charset=UTF-8
Transfer-Encoding: chunked
Date: Fri, 05 Mar 2021 22:55:47 GMT
Keep-Alive: timeout=60
Connection: keep-alive
Content-Length: 455
[ {
"id" : "09cbf144-2267-4c50-bdde-46cf4aa02965",
"name" : null,
"version" : null,
"status" : null,
"tags" : [ "db4e763e-0dcb-4f06-934a-31710052f5c3", "2e5328d2-9cc5-4989-adff-b7fc3bfea80d" ]
}, {
"id" : "3df9dd7c-6662-420a-a23e-b2f16bb7e899",
"name" : "prod",
"version" : "1.0.0",
"status" : "UP",
"tags" : [ "ef8e574a-ebaf-4b35-a3d2-f69fffb20dab", "e01009f1-ffac-40cf-ab56-03e008118be8", "3b2c40d3-fe8e-4a43-8318-9ad2c1317a04" ]
} ]
9.28. Remove all the Cluster Criteria From a Command
9.28.1. Description
Remove all the existing cluster criteria from a given command.
9.28.2. Endpoint
DELETE /api/v3/commands/{id}/clusterCriteria
9.28.3. API Docs
Request Documentation
Headers
None
Path Parameters
Parameter | Description |
---|---|
|
The resource id |
Query Parameters
None
Payload Fields
None
Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/commands/10808e4b-46b2-4fea-90a3-f11597bcc3b8/clusterCriteria' -i -X DELETE
HTTPie
$ http DELETE 'https://genie.example.com/api/v3/commands/10808e4b-46b2-4fea-90a3-f11597bcc3b8/clusterCriteria'
HTTP Messages
Request
DELETE /api/v3/commands/10808e4b-46b2-4fea-90a3-f11597bcc3b8/clusterCriteria HTTP/1.1
Host: genie.example.com
Response
HTTP/1.1 200 OK
Date: Fri, 05 Mar 2021 22:55:41 GMT
Keep-Alive: timeout=60
Connection: keep-alive
9.29. Add a New Cluster Criterion For Command
9.29.1. Description
Add a new cluster criterion to the existing list of cluster criterion for the given command. The new criterion will have the lowest priority of all the criterion.
9.29.2. Endpoint
POST /api/v3/commands/{id}/clusterCriteria
9.29.3. API Docs
Request Documentation
Headers
Name | Description |
---|---|
|
application/json |
Path Parameters
Parameter | Description |
---|---|
|
The resource id |
Query Parameters
None
Payload Fields
Path | Type | Description | Constraints | Optional |
---|---|---|---|---|
id |
String |
The unique identifier a resource needs to have to match this criterion |
true |
|
name |
String |
The name a resource needs to have to match this criterion |
true |
|
version |
String |
The version a resource needs to have to match this criterion |
true |
|
status |
String |
The status a resource needs to have to match this criterion |
true |
|
tags |
Array |
The set of tags a resource needs to have to match this criterion |
true |
Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/commands/92e872f2-45f9-40a7-96df-5d6245b99961/clusterCriteria' -i -X POST \
-H 'Content-Type: application/json; charset=UTF-8' \
-d '{
"id" : "eaae9511-4e24-4ebd-b3cb-5a5a78c39006",
"name" : "adhocCluster",
"version" : "3.0.0",
"status" : "UP",
"tags" : [ "sched:adhoc", "type:yarn" ]
}'
HTTPie
$ echo '{
"id" : "eaae9511-4e24-4ebd-b3cb-5a5a78c39006",
"name" : "adhocCluster",
"version" : "3.0.0",
"status" : "UP",
"tags" : [ "sched:adhoc", "type:yarn" ]
}' | http POST 'https://genie.example.com/api/v3/commands/92e872f2-45f9-40a7-96df-5d6245b99961/clusterCriteria' \
'Content-Type:application/json; charset=UTF-8'
HTTP Messages
Request
POST /api/v3/commands/92e872f2-45f9-40a7-96df-5d6245b99961/clusterCriteria HTTP/1.1
Content-Type: application/json; charset=UTF-8
Host: genie.example.com
Content-Length: 163
{
"id" : "eaae9511-4e24-4ebd-b3cb-5a5a78c39006",
"name" : "adhocCluster",
"version" : "3.0.0",
"status" : "UP",
"tags" : [ "sched:adhoc", "type:yarn" ]
}
Response
HTTP/1.1 200 OK
Date: Fri, 05 Mar 2021 22:55:48 GMT
Keep-Alive: timeout=60
Connection: keep-alive
9.30. Set Cluster Criteria For Command
9.30.1. Description
Replace the existing cluster criteria for a command with a new list. The criterion are added to the command in the same order they are passed to the service. This is the priority order they will be evaluated in.
9.30.2. Endpoint
PUT /api/v3/commands/{id}/clusterCriteria
9.30.3. API Docs
Request Documentation
Headers
Name | Description |
---|---|
|
application/json |
Path Parameters
Parameter | Description |
---|---|
|
The resource id |
Query Parameters
None
Payload Fields
Path | Type | Description | Constraints | Optional |
---|---|---|---|---|
[] |
Array |
A priority ordered list of criteria |
true |
|
[].id |
String |
The unique identifier a resource needs to have to match this criterion |
true |
|
[].name |
String |
The name a resource needs to have to match this criterion |
true |
|
[].version |
String |
The version a resource needs to have to match this criterion |
true |
|
[].status |
String |
The status a resource needs to have to match this criterion |
true |
|
[].tags |
Array |
The set of tags a resource needs to have to match this criterion |
true |
Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/commands/2bf436fa-de93-4ee8-ba5a-388783295baa/clusterCriteria' -i -X PUT \
-H 'Content-Type: application/json; charset=UTF-8' \
-d '[ {
"id" : "af4c0172-29c0-413a-bea2-c10475726d3f",
"name" : null,
"version" : null,
"status" : null,
"tags" : [ ]
}, {
"id" : null,
"name" : null,
"version" : "506ec5f2-71b6-4acb-a0ff-11afd8f14511",
"status" : null,
"tags" : [ ]
}, {
"id" : null,
"name" : "2f0d9102-3fac-4397-9158-d70f24d50b03",
"version" : null,
"status" : null,
"tags" : [ ]
} ]'
HTTPie
$ echo '[ {
"id" : "af4c0172-29c0-413a-bea2-c10475726d3f",
"name" : null,
"version" : null,
"status" : null,
"tags" : [ ]
}, {
"id" : null,
"name" : null,
"version" : "506ec5f2-71b6-4acb-a0ff-11afd8f14511",
"status" : null,
"tags" : [ ]
}, {
"id" : null,
"name" : "2f0d9102-3fac-4397-9158-d70f24d50b03",
"version" : null,
"status" : null,
"tags" : [ ]
} ]' | http PUT 'https://genie.example.com/api/v3/commands/2bf436fa-de93-4ee8-ba5a-388783295baa/clusterCriteria' \
'Content-Type:application/json; charset=UTF-8'
HTTP Messages
Request
PUT /api/v3/commands/2bf436fa-de93-4ee8-ba5a-388783295baa/clusterCriteria HTTP/1.1
Content-Type: application/json; charset=UTF-8
Host: genie.example.com
Content-Length: 377
[ {
"id" : "af4c0172-29c0-413a-bea2-c10475726d3f",
"name" : null,
"version" : null,
"status" : null,
"tags" : [ ]
}, {
"id" : null,
"name" : null,
"version" : "506ec5f2-71b6-4acb-a0ff-11afd8f14511",
"status" : null,
"tags" : [ ]
}, {
"id" : null,
"name" : "2f0d9102-3fac-4397-9158-d70f24d50b03",
"version" : null,
"status" : null,
"tags" : [ ]
} ]
Response
HTTP/1.1 200 OK
Date: Fri, 05 Mar 2021 22:55:44 GMT
Keep-Alive: timeout=60
Connection: keep-alive
9.31. Insert a New Cluster Criterion For Command
9.31.1. Description
Add a new Criterion to the existing list of cluster criteria for the command identified by id
.
The priority
is the place in the list this new criterion should be placed.
A value of 0
indicates it should be placed at the front of the list with the highest possible priority.
1
would be second in the list etc.
If priority
is >
the current size of the cluster criteria list this new criterion will be placed at the end as the lowest priority item.
Priority must be >= 0
.
9.31.2. Endpoint
PUT /api/v3/commands/{id}/clusterCriteria/{priority}
9.31.3. API Docs
Request Documentation
Headers
Name | Description |
---|---|
|
application/json |
Path Parameters
Parameter | Description |
---|---|
|
The resource id |
|
Priority of the criterion to insert |
Query Parameters
None
Payload Fields
Path | Type | Description | Constraints | Optional |
---|---|---|---|---|
id |
String |
The unique identifier a resource needs to have to match this criterion |
true |
|
name |
String |
The name a resource needs to have to match this criterion |
true |
|
version |
String |
The version a resource needs to have to match this criterion |
true |
|
status |
String |
The status a resource needs to have to match this criterion |
true |
|
tags |
Array |
The set of tags a resource needs to have to match this criterion |
true |
Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/commands/30afcbb7-74a3-4f59-bdb4-156c74d56311/clusterCriteria/1' -i -X PUT \
-H 'Content-Type: application/json; charset=UTF-8' \
-d '{
"id" : "1ab322ec-437c-42db-b23b-93537bf7c0ba",
"name" : "insightCluster",
"version" : "4.0.0",
"status" : "OUT_OF_SERVICE",
"tags" : [ "type:presto", "sched:insights" ]
}'
HTTPie
$ echo '{
"id" : "1ab322ec-437c-42db-b23b-93537bf7c0ba",
"name" : "insightCluster",
"version" : "4.0.0",
"status" : "OUT_OF_SERVICE",
"tags" : [ "type:presto", "sched:insights" ]
}' | http PUT 'https://genie.example.com/api/v3/commands/30afcbb7-74a3-4f59-bdb4-156c74d56311/clusterCriteria/1' \
'Content-Type:application/json; charset=UTF-8'
HTTP Messages
Request
PUT /api/v3/commands/30afcbb7-74a3-4f59-bdb4-156c74d56311/clusterCriteria/1 HTTP/1.1
Content-Type: application/json; charset=UTF-8
Host: genie.example.com
Content-Length: 182
{
"id" : "1ab322ec-437c-42db-b23b-93537bf7c0ba",
"name" : "insightCluster",
"version" : "4.0.0",
"status" : "OUT_OF_SERVICE",
"tags" : [ "type:presto", "sched:insights" ]
}
Response
HTTP/1.1 200 OK
Date: Fri, 05 Mar 2021 22:55:45 GMT
Keep-Alive: timeout=60
Connection: keep-alive
9.32. Remove the Cluster Criterion From a Command
9.32.1. Description
Remove the Criterion
with the given priority
from the current list of cluster criteria associated with the command identified by id
.
A value of 0
for priority
will result in the first element in the list being removed, 1
the second element and so on.
0 ⇐ priority < current criteria length
|
9.32.2. Endpoint
DELETE /api/v3/commands/{id}/clusterCriteria/{priority}
9.32.3. API Docs
Request Documentation
Headers
None
Path Parameters
Parameter | Description |
---|---|
|
The resource id |
|
Priority of the criterion to insert |
Query Parameters
None
Payload Fields
None
Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/commands/f3f5b686-e7bb-4e7c-b9f3-36d6df3a1ead/clusterCriteria/1' -i -X DELETE
HTTPie
$ http DELETE 'https://genie.example.com/api/v3/commands/f3f5b686-e7bb-4e7c-b9f3-36d6df3a1ead/clusterCriteria/1'
HTTP Messages
Request
DELETE /api/v3/commands/f3f5b686-e7bb-4e7c-b9f3-36d6df3a1ead/clusterCriteria/1 HTTP/1.1
Host: genie.example.com
Response
HTTP/1.1 200 OK
Date: Fri, 05 Mar 2021 22:55:45 GMT
Keep-Alive: timeout=60
Connection: keep-alive
9.33. Resolve Clusters for Command Cluster Criteria
9.33.1. Description
For a given Command
resolve the Clusters
which each of the Commands
clusterCriteria
would resolve
if they were evaluated against the current contents of the database.
9.33.2. Endpoint
GET /api/v3/commands/{id}/resolvedClusters
9.33.3. API Docs
Request Documentation
Headers
None
Path Parameters
Parameter | Description |
---|---|
|
The resource id |
Query Parameters
Parameter | Description |
---|---|
|
Whether the system should add the default cluster status to the criteria. Default: true |
Payload Fields
None
Request Examples
cURL
$ curl 'https://genie.example.com/api/v3/commands/f31be016-28cb-4f83-9ad6-3c4185feace1/resolvedClusters' -i -X GET
HTTPie
$ http GET 'https://genie.example.com/api/v3/commands/f31be016-28cb-4f83-9ad6-3c4185feace1/resolvedClusters'
Response Documentation
Headers
Name | Description |
---|---|
|
application/json |
Payload Fields
Path | Type | Description | Constraints | Optional |
---|---|---|---|---|
[] |
Array |
The list of criterion and associated resolved clusters |
true |
|
[].criterion |
Object |
The criterion that was evaluated to yield the resources |
false |
|
[].resources |
Array |
The resources that were resolved by evaluating the criterion |
false |
|
[].criterion.id |
String |
The unique identifier a resource needs to have to match this criterion |
true |
|
[].criterion.name |
String |
The name a resource needs to have to match this criterion |
true |
|
[].criterion.version |
String |
The version a resource needs to have to match this criterion |
true |
|
[].criterion.status |
String |
The status a resource needs to have to match this criterion |
true |
|
[].criterion.tags |
Array |
The set of tags a resource needs to have to match this criterion |
true |
|
[].resources[].id |
String |
The id. If not set the system will set one. |
Size must be between 0 and 255 inclusive |
true |
[].resources[].created |
String |
The UTC time of creation. Set by system. ISO8601 format including milliseconds. |
true |
|
[].resources[].updated |
String |
The UTC time of last update. Set by system. ISO8601 format including milliseconds. |
true |
|
[].resources[].name |
String |
The name |
Must not be empty. Size must be between 0 and 255 inclusive |
false |
[].resources[].user |
String |
The user |
Must not be empty. Size must be between 0 and 255 inclusive |
false |
[].resources[].version |
String |
The version |
Must not be empty. Size must be between 0 and 255 inclusive |
false |
[].resources[].description |
String |
Any description |
Size must be between 0 and 1000 inclusive |
true |
[].resources[].metadata |
Object |
Any semi-structured metadata. Must be valid JSON |
true |
|
[].resources[].tags |
Array |
The tags |
true |
|
[].resources[].setupFile |
String |
A location for any setup that needs to be done when installing |
Size must be between 0 and 1024 inclusive |
true |
[].resources[].configs |
Array |
Any configuration files needed for the resource |
true |
|
[].resources[].status |
String |
The status of the cluster. Options: [UP, OUT_OF_SERVICE, TERMINATED] |
Must not be null |
false |
[].resources[].dependencies |
Array |
The dependencies for the cluster |
true |
HATEOAS Links
None
HTTP Messages
Request
GET /api/v3/commands/f31be016-28cb-4f83-9ad6-3c4185feace1/resolvedClusters HTTP/1.1
Host: genie.example.com
Response
HTTP/1.1 200 OK
Content-Type: application/json;charset=UTF-8
Transfer-Encoding: chunked
Date: Fri, 05 Mar 2021 22:55:47 GMT
Keep-Alive: timeout=60
Connection: keep-alive
Content-Length: 4132
[ {
"criterion" : {
"id" : "0bf51731-c109-467a-b86d-64029dbe4ec9",
"name" : null,
"version" : null,
"status" : null,
"tags" : [ ]
},
"resources" : [ {
"id" : "0bf51731-c109-467a-b86d-64029dbe4ec9",
"created" : "2021-03-05T22:55:48.557Z",
"updated" : "2021-03-05T22:55:48.557Z",
"version" : "c81a11d6-0634-47f2-be68-0bb47d65ba7c",
"user" : "b1fdacc8-3ddb-4ee8-b4d4-9dccefc89cdc",
"name" : "d83b00c3-4ba1-4ec5-bfdc-2fbe57715ec3",
"description" : null,
"metadata" : null,
"tags" : [ "0bf5ce52-81b7-4034-9004-58afe941adb7", "genie.name:d83b00c3-4ba1-4ec5-bfdc-2fbe57715ec3", "8c181425-cd69-4c34-bdeb-d977c0cc3d02", "genie.id:0bf51731-c109-467a-b86d-64029dbe4ec9" ],
"configs" : [ ],
"dependencies" : [ ],
"setupFile" : null,
"status" : "UP"
} ]
}, {
"criterion" : {
"id" : null,
"name" : "d83b00c3-4ba1-4ec5-bfdc-2fbe57715ec3",
"version" : null,
"status" : null,
"tags" : [ ]
},
"resources" : [ {
"id" : "0bf51731-c109-467a-b86d-64029dbe4ec9",
"created" : "2021-03-05T22:55:48.557Z",
"updated" : "2021-03-05T22:55:48.557Z",
"version" : "c81a11d6-0634-47f2-be68-0bb47d65ba7c",
"user" : "b1fdacc8-3ddb-4ee8-b4d4-9dccefc89cdc",
"name" : "d83b00c3-4ba1-4ec5-bfdc-2fbe57715ec3",
"description" : null,
"metadata" : null,
"tags" : [ "0bf5ce52-81b7-4034-9004-58afe941adb7", "genie.name:d83b00c3-4ba1-4ec5-bfdc-2fbe57715ec3", "8c181425-cd69-4c34-bdeb-d977c0cc3d02", "genie.id:0bf51731-c109-467a-b86d-64029dbe4ec9" ],
"configs" : [ ],
"dependencies" : [ ],
"setupFile" : null,
"status" : "UP"
}, {
"id" : "75483d73-1448-47e8-84c5-c9c1a11516de",
"created" : "2021-03-05T22:55:48.569Z",
"updated" : "2021-03-05T22:55:48.569Z",
"version" : "c81a11d6-0634-47f2-be68-0bb47d65ba7c",
"user" : "b1fdacc8-3ddb-4ee8-b4d4-9dccefc89cdc",
"name" : "d83b00c3-4ba1-4ec5-bfdc-2fbe57715ec3",
"description" : null,
"metadata" : null,
"tags" : [ "0bf5ce52-81b7-4034-9004-58afe941adb7", "genie.name:d83b00c3-4ba1-4ec5-bfdc-2fbe57715ec3", "8c181425-cd69-4c34-bdeb-d977c0cc3d02", "genie.id:75483d73-1448-47e8-84c5-c9c1a11516de" ],
"configs" : [ ],
"dependencies" : [ ],
"setupFile" : null,
"status" : "UP"
} ]
}, {
"criterion" : {
"id" : null,
"name" : null,
"version" : "40b58000-062f-45c1-b364-302d41ce645a",
"status" : null,
"tags" : [ ]
},
"resources" : [ {
"id" : "122bc459-b07f-4657-a472-179d72e42e2f",
"created" : "2021-03-05T22:55:48.588Z",
"updated" : "2021-03-05T22:55:48.588Z",
"version" : "40b58000-062f-45c1-b364-302d41ce645a",
"user" : "c5b0a3f3-e7d2-453d-a6a2-83857a44665c",
"name" : "89528c38-fd6a-4673-9ae8-d9f3cd43f42c",
"description" : null,
"metadata" : null,
"tags" : [ "genie.name:89528c38-fd6a-4673-9ae8-d9f3cd43f42c", "1d9abf37-2a22-47d9-9e71-f005837d1ef6", "b2210d76-c82a-4af5-9490-63f6e20721ad", "genie.id:122bc459-b07f-4657-a472-179d72e42e2f" ],
"configs" : [ ],
"dependencies" : [ ],
"setupFile" : null,
"status" : "UP"
} ]
}, {
"criterion" : {
"id" : null,
"name" : null,
"version" : null,
"status" : "TERMINATED",
"tags" : [ ]
},
"resources" : [ ]
}, {
"criterion" : {
"id" : null,
"name" : null,
"version" : null,
"status" : null,
"tags" : [ "1d9abf37-2a22-47d9-9e71-f005837d1ef6", "b2210d76-c82a-4af5-9490-63f6e20721ad" ]
},
"resources" : [ {
"id" : "122bc459-b07f-4657-a472-179d72e42e2f",
"created" : "2021-03-05T22:55:48.588Z",
"updated" : "2021-03-05T22:55:48.588Z",
"version" : "40b58000-062f-45c1-b364-302d41ce645a",
"user" : "c5b0a3f3-e7d2-453d-a6a2-83857a44665c",
"name" : "89528c38-fd6a-4673-9ae8-d9f3cd43f42c",
"description" : null,
"metadata" : null,
"tags" : [ "genie.name:89528c38-fd6a-4673-9ae8-d9f3cd43f42c", "1d9abf37-2a22-47d9-9e71-f005837d1ef6", "b2210d76-c82a-4af5-9490-63f6e20721ad", "genie.id:122bc459-b07f-4657-a472-179d72e42e2f" ],
"configs" : [ ],
"dependencies" : [ ],
"setupFile" : null,
"status" : "UP"
} ]
} ]