ApiYarnApplicationResponse Data Model

The response contains a list of applications and warnings.

Properties
name data type description
applications array of ApiYarnApplication The list of applications for this response.
warnings array of string This list of warnings for this response.

Example

{
  "applications" : [ {
    "allocatedMB" : 12345,
    "allocatedVCores" : 12345,
    "runningContainers" : 12345,
    "applicationTags" : [ "...", "..." ],
    "allocatedMemorySeconds" : 12345,
    "allocatedVcoreSeconds" : 12345,
    "applicationId" : "...",
    "name" : "...",
    "startTime" : "...",
    "endTime" : "...",
    "user" : "...",
    "pool" : "...",
    "progress" : 12345.0,
    "attributes" : {
      "property1" : "...",
      "property2" : "..."
    },
    "mr2AppInformation" : {
      "jobState" : "..."
    },
    "state" : "...",
    "containerUsedMemorySeconds" : 12345.0,
    "containerUsedMemoryMax" : 12345.0,
    "containerUsedCpuSeconds" : 12345.0,
    "containerUsedVcoreSeconds" : 12345.0,
    "containerAllocatedMemorySeconds" : 12345.0,
    "containerAllocatedVcoreSeconds" : 12345.0
  }, {
    "allocatedMB" : 12345,
    "allocatedVCores" : 12345,
    "runningContainers" : 12345,
    "applicationTags" : [ "...", "..." ],
    "allocatedMemorySeconds" : 12345,
    "allocatedVcoreSeconds" : 12345,
    "applicationId" : "...",
    "name" : "...",
    "startTime" : "...",
    "endTime" : "...",
    "user" : "...",
    "pool" : "...",
    "progress" : 12345.0,
    "attributes" : {
      "property1" : "...",
      "property2" : "..."
    },
    "mr2AppInformation" : {
      "jobState" : "..."
    },
    "state" : "...",
    "containerUsedMemorySeconds" : 12345.0,
    "containerUsedMemoryMax" : 12345.0,
    "containerUsedCpuSeconds" : 12345.0,
    "containerUsedVcoreSeconds" : 12345.0,
    "containerAllocatedMemorySeconds" : 12345.0,
    "containerAllocatedVcoreSeconds" : 12345.0
  } ],
  "warnings" : [ "...", "..." ]
}