Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
titleResponse Example
{
    /** This group only contains directly blocked task managers */
    "blockedTaskManagers": [
      {
          "idcontainer1":{
 : "container1",
          "action" : "MARK_BLOCKED",
            "startTimestamp" : "1652313600000",
            "endTimestamp" : "1652317200000",
            "cause" : "Hot machine"
        },
      {
          "idcontainer2":{
 : "container2",
          "action" : "MARK_BLOCKED_AND_EVACUATE_TASKS",
            "startTimestamp" : "1652315400000",
            "endTimestamp" : "1652319000000",
            "cause" : "No space left on device"
        },
 
       ...
  ]  },
    "blockedNodes": [
      {
          "idnode1":{
 : "node1",
          "action" : "MARK_BLOCKED",
            "startTimestamp" : "1652313600000",
            "endTimestamp" : "1652317200000",
            "cause" : "Hot machine",
            /** The task managers on this blocked node */
            "taskManagers" : [:[
                "container3",
                "container4"
            ]
        },
        ...
   ] }
} 

Field meanings in responses:

...