YARN-11608. Fix QueueCapacityVectorInfo NPE when accessible labels config is used. (#6250)
Co-authored-by: Benjamin Teke <bteke@cloudera.com>
This commit is contained in:
parent
4ef2322b6d
commit
077263d9f3
@ -27,6 +27,7 @@
|
||||
import org.apache.hadoop.yarn.server.resourcemanager.scheduler.QueueResourceQuotas;
|
||||
import org.apache.hadoop.yarn.server.resourcemanager.scheduler.capacity.CSQueue;
|
||||
import org.apache.hadoop.yarn.server.resourcemanager.scheduler.capacity.QueueCapacities;
|
||||
import org.apache.hadoop.yarn.server.resourcemanager.scheduler.capacity.QueueCapacityVector;
|
||||
|
||||
/**
|
||||
* DAO which wraps PartitionQueueCapacitiesInfo applicable for a queue
|
||||
@ -57,8 +58,10 @@ public QueueCapacitiesInfo(CSQueue queue, boolean considerAMUsage) {
|
||||
float weight;
|
||||
float normalizedWeight;
|
||||
for (String partitionName : capacities.getExistingNodeLabels()) {
|
||||
queueCapacityVectorInfo = new QueueCapacityVectorInfo(
|
||||
queue.getConfiguredCapacityVector(partitionName));
|
||||
QueueCapacityVector queueCapacityVector = queue.getConfiguredCapacityVector(partitionName);
|
||||
queueCapacityVectorInfo = queueCapacityVector == null ?
|
||||
new QueueCapacityVectorInfo(new QueueCapacityVector()) :
|
||||
new QueueCapacityVectorInfo(queue.getConfiguredCapacityVector(partitionName));
|
||||
usedCapacity = capacities.getUsedCapacity(partitionName) * 100;
|
||||
capacity = capacities.getCapacity(partitionName) * 100;
|
||||
maxCapacity = capacities.getMaximumCapacity(partitionName);
|
||||
|
@ -150,6 +150,7 @@ private Configuration createConfig() {
|
||||
conf.set("yarn.scheduler.capacity.legacy-queue-mode.enabled", String.valueOf(legacyQueueMode));
|
||||
conf.set("yarn.scheduler.capacity.root.queues", "a, b, c");
|
||||
conf.set("yarn.scheduler.capacity.root.a.capacity", "12.5");
|
||||
conf.set("yarn.scheduler.capacity.root.a.accessible-node-labels", "root-a-default-label");
|
||||
conf.set("yarn.scheduler.capacity.root.a.maximum-capacity", "50");
|
||||
conf.set("yarn.scheduler.capacity.root.a.max-parallel-app", "42");
|
||||
conf.set("yarn.scheduler.capacity.root.b.capacity", "50");
|
||||
|
@ -61,7 +61,7 @@
|
||||
</resourceInformations>
|
||||
</resourcesUsed>
|
||||
<hideReservationQueues>false</hideReservationQueues>
|
||||
<nodeLabels>*</nodeLabels>
|
||||
<nodeLabels>root-a-default-label</nodeLabels>
|
||||
<allocatedContainers>0</allocatedContainers>
|
||||
<reservedContainers>0</reservedContainers>
|
||||
<pendingContainers>0</pendingContainers>
|
||||
@ -185,6 +185,117 @@
|
||||
</resourceInformations>
|
||||
</effectiveMaxResource>
|
||||
</queueCapacitiesByPartition>
|
||||
<queueCapacitiesByPartition>
|
||||
<partitionName>root-a-default-label</partitionName>
|
||||
<queueCapacityVectorInfo>
|
||||
<configuredCapacityVector>[]</configuredCapacityVector>
|
||||
</queueCapacityVectorInfo>
|
||||
<capacity>0.0</capacity>
|
||||
<usedCapacity>0.0</usedCapacity>
|
||||
<maxCapacity>100.0</maxCapacity>
|
||||
<absoluteCapacity>0.0</absoluteCapacity>
|
||||
<absoluteUsedCapacity>0.0</absoluteUsedCapacity>
|
||||
<absoluteMaxCapacity>0.0</absoluteMaxCapacity>
|
||||
<maxAMLimitPercentage>0.0</maxAMLimitPercentage>
|
||||
<weight>-1.0</weight>
|
||||
<normalizedWeight>0.0</normalizedWeight>
|
||||
<configuredMinResource>
|
||||
<memory>0</memory>
|
||||
<vCores>0</vCores>
|
||||
<resourceInformations>
|
||||
<resourceInformation>
|
||||
<attributes/>
|
||||
<maximumAllocation>8192</maximumAllocation>
|
||||
<minimumAllocation>1024</minimumAllocation>
|
||||
<name>memory-mb</name>
|
||||
<resourceType>COUNTABLE</resourceType>
|
||||
<units>Mi</units>
|
||||
<value>0</value>
|
||||
</resourceInformation>
|
||||
<resourceInformation>
|
||||
<attributes/>
|
||||
<maximumAllocation>4</maximumAllocation>
|
||||
<minimumAllocation>1</minimumAllocation>
|
||||
<name>vcores</name>
|
||||
<resourceType>COUNTABLE</resourceType>
|
||||
<units/>
|
||||
<value>0</value>
|
||||
</resourceInformation>
|
||||
</resourceInformations>
|
||||
</configuredMinResource>
|
||||
<configuredMaxResource>
|
||||
<memory>0</memory>
|
||||
<vCores>0</vCores>
|
||||
<resourceInformations>
|
||||
<resourceInformation>
|
||||
<attributes/>
|
||||
<maximumAllocation>8192</maximumAllocation>
|
||||
<minimumAllocation>1024</minimumAllocation>
|
||||
<name>memory-mb</name>
|
||||
<resourceType>COUNTABLE</resourceType>
|
||||
<units>Mi</units>
|
||||
<value>0</value>
|
||||
</resourceInformation>
|
||||
<resourceInformation>
|
||||
<attributes/>
|
||||
<maximumAllocation>4</maximumAllocation>
|
||||
<minimumAllocation>1</minimumAllocation>
|
||||
<name>vcores</name>
|
||||
<resourceType>COUNTABLE</resourceType>
|
||||
<units/>
|
||||
<value>0</value>
|
||||
</resourceInformation>
|
||||
</resourceInformations>
|
||||
</configuredMaxResource>
|
||||
<effectiveMinResource>
|
||||
<memory>0</memory>
|
||||
<vCores>0</vCores>
|
||||
<resourceInformations>
|
||||
<resourceInformation>
|
||||
<attributes/>
|
||||
<maximumAllocation>8192</maximumAllocation>
|
||||
<minimumAllocation>1024</minimumAllocation>
|
||||
<name>memory-mb</name>
|
||||
<resourceType>COUNTABLE</resourceType>
|
||||
<units>Mi</units>
|
||||
<value>0</value>
|
||||
</resourceInformation>
|
||||
<resourceInformation>
|
||||
<attributes/>
|
||||
<maximumAllocation>4</maximumAllocation>
|
||||
<minimumAllocation>1</minimumAllocation>
|
||||
<name>vcores</name>
|
||||
<resourceType>COUNTABLE</resourceType>
|
||||
<units/>
|
||||
<value>0</value>
|
||||
</resourceInformation>
|
||||
</resourceInformations>
|
||||
</effectiveMinResource>
|
||||
<effectiveMaxResource>
|
||||
<memory>0</memory>
|
||||
<vCores>0</vCores>
|
||||
<resourceInformations>
|
||||
<resourceInformation>
|
||||
<attributes/>
|
||||
<maximumAllocation>8192</maximumAllocation>
|
||||
<minimumAllocation>1024</minimumAllocation>
|
||||
<name>memory-mb</name>
|
||||
<resourceType>COUNTABLE</resourceType>
|
||||
<units>Mi</units>
|
||||
<value>0</value>
|
||||
</resourceInformation>
|
||||
<resourceInformation>
|
||||
<attributes/>
|
||||
<maximumAllocation>4</maximumAllocation>
|
||||
<minimumAllocation>1</minimumAllocation>
|
||||
<name>vcores</name>
|
||||
<resourceType>COUNTABLE</resourceType>
|
||||
<units/>
|
||||
<value>0</value>
|
||||
</resourceInformation>
|
||||
</resourceInformations>
|
||||
</effectiveMaxResource>
|
||||
</queueCapacitiesByPartition>
|
||||
</capacities>
|
||||
<resources>
|
||||
<resourceUsagesByPartition>
|
||||
@ -334,6 +445,153 @@
|
||||
</resourceInformations>
|
||||
</userAmLimit>
|
||||
</resourceUsagesByPartition>
|
||||
<resourceUsagesByPartition>
|
||||
<partitionName>root-a-default-label</partitionName>
|
||||
<used>
|
||||
<memory>0</memory>
|
||||
<vCores>0</vCores>
|
||||
<resourceInformations>
|
||||
<resourceInformation>
|
||||
<attributes/>
|
||||
<maximumAllocation>9223372036854775807</maximumAllocation>
|
||||
<minimumAllocation>0</minimumAllocation>
|
||||
<name>memory-mb</name>
|
||||
<resourceType>COUNTABLE</resourceType>
|
||||
<units>Mi</units>
|
||||
<value>0</value>
|
||||
</resourceInformation>
|
||||
<resourceInformation>
|
||||
<attributes/>
|
||||
<maximumAllocation>9223372036854775807</maximumAllocation>
|
||||
<minimumAllocation>0</minimumAllocation>
|
||||
<name>vcores</name>
|
||||
<resourceType>COUNTABLE</resourceType>
|
||||
<units/>
|
||||
<value>0</value>
|
||||
</resourceInformation>
|
||||
</resourceInformations>
|
||||
</used>
|
||||
<reserved>
|
||||
<memory>0</memory>
|
||||
<vCores>0</vCores>
|
||||
<resourceInformations>
|
||||
<resourceInformation>
|
||||
<attributes/>
|
||||
<maximumAllocation>9223372036854775807</maximumAllocation>
|
||||
<minimumAllocation>0</minimumAllocation>
|
||||
<name>memory-mb</name>
|
||||
<resourceType>COUNTABLE</resourceType>
|
||||
<units>Mi</units>
|
||||
<value>0</value>
|
||||
</resourceInformation>
|
||||
<resourceInformation>
|
||||
<attributes/>
|
||||
<maximumAllocation>9223372036854775807</maximumAllocation>
|
||||
<minimumAllocation>0</minimumAllocation>
|
||||
<name>vcores</name>
|
||||
<resourceType>COUNTABLE</resourceType>
|
||||
<units/>
|
||||
<value>0</value>
|
||||
</resourceInformation>
|
||||
</resourceInformations>
|
||||
</reserved>
|
||||
<pending>
|
||||
<memory>0</memory>
|
||||
<vCores>0</vCores>
|
||||
<resourceInformations>
|
||||
<resourceInformation>
|
||||
<attributes/>
|
||||
<maximumAllocation>9223372036854775807</maximumAllocation>
|
||||
<minimumAllocation>0</minimumAllocation>
|
||||
<name>memory-mb</name>
|
||||
<resourceType>COUNTABLE</resourceType>
|
||||
<units>Mi</units>
|
||||
<value>0</value>
|
||||
</resourceInformation>
|
||||
<resourceInformation>
|
||||
<attributes/>
|
||||
<maximumAllocation>9223372036854775807</maximumAllocation>
|
||||
<minimumAllocation>0</minimumAllocation>
|
||||
<name>vcores</name>
|
||||
<resourceType>COUNTABLE</resourceType>
|
||||
<units/>
|
||||
<value>0</value>
|
||||
</resourceInformation>
|
||||
</resourceInformations>
|
||||
</pending>
|
||||
<amUsed>
|
||||
<memory>0</memory>
|
||||
<vCores>0</vCores>
|
||||
<resourceInformations>
|
||||
<resourceInformation>
|
||||
<attributes/>
|
||||
<maximumAllocation>9223372036854775807</maximumAllocation>
|
||||
<minimumAllocation>0</minimumAllocation>
|
||||
<name>memory-mb</name>
|
||||
<resourceType>COUNTABLE</resourceType>
|
||||
<units>Mi</units>
|
||||
<value>0</value>
|
||||
</resourceInformation>
|
||||
<resourceInformation>
|
||||
<attributes/>
|
||||
<maximumAllocation>9223372036854775807</maximumAllocation>
|
||||
<minimumAllocation>0</minimumAllocation>
|
||||
<name>vcores</name>
|
||||
<resourceType>COUNTABLE</resourceType>
|
||||
<units/>
|
||||
<value>0</value>
|
||||
</resourceInformation>
|
||||
</resourceInformations>
|
||||
</amUsed>
|
||||
<amLimit>
|
||||
<memory>0</memory>
|
||||
<vCores>0</vCores>
|
||||
<resourceInformations>
|
||||
<resourceInformation>
|
||||
<attributes/>
|
||||
<maximumAllocation>9223372036854775807</maximumAllocation>
|
||||
<minimumAllocation>0</minimumAllocation>
|
||||
<name>memory-mb</name>
|
||||
<resourceType>COUNTABLE</resourceType>
|
||||
<units>Mi</units>
|
||||
<value>0</value>
|
||||
</resourceInformation>
|
||||
<resourceInformation>
|
||||
<attributes/>
|
||||
<maximumAllocation>9223372036854775807</maximumAllocation>
|
||||
<minimumAllocation>0</minimumAllocation>
|
||||
<name>vcores</name>
|
||||
<resourceType>COUNTABLE</resourceType>
|
||||
<units/>
|
||||
<value>0</value>
|
||||
</resourceInformation>
|
||||
</resourceInformations>
|
||||
</amLimit>
|
||||
<userAmLimit>
|
||||
<memory>0</memory>
|
||||
<vCores>0</vCores>
|
||||
<resourceInformations>
|
||||
<resourceInformation>
|
||||
<attributes/>
|
||||
<maximumAllocation>9223372036854775807</maximumAllocation>
|
||||
<minimumAllocation>0</minimumAllocation>
|
||||
<name>memory-mb</name>
|
||||
<resourceType>COUNTABLE</resourceType>
|
||||
<units>Mi</units>
|
||||
<value>0</value>
|
||||
</resourceInformation>
|
||||
<resourceInformation>
|
||||
<attributes/>
|
||||
<maximumAllocation>9223372036854775807</maximumAllocation>
|
||||
<minimumAllocation>0</minimumAllocation>
|
||||
<name>vcores</name>
|
||||
<resourceType>COUNTABLE</resourceType>
|
||||
<units/>
|
||||
<value>0</value>
|
||||
</resourceInformation>
|
||||
</resourceInformations>
|
||||
</userAmLimit>
|
||||
</resourceUsagesByPartition>
|
||||
</resources>
|
||||
<minEffectiveCapacity>
|
||||
<memory>4096</memory>
|
||||
|
@ -62,7 +62,7 @@
|
||||
}
|
||||
},
|
||||
"hideReservationQueues" : false,
|
||||
"nodeLabels" : [ "*" ],
|
||||
"nodeLabels" : [ "root-a-default-label" ],
|
||||
"allocatedContainers" : 0,
|
||||
"reservedContainers" : 0,
|
||||
"pendingContainers" : 1,
|
||||
@ -180,6 +180,112 @@
|
||||
} ]
|
||||
}
|
||||
}
|
||||
}, {
|
||||
"partitionName" : "root-a-default-label",
|
||||
"queueCapacityVectorInfo" : {
|
||||
"configuredCapacityVector" : "[]"
|
||||
},
|
||||
"capacity" : 0,
|
||||
"usedCapacity" : 0,
|
||||
"maxCapacity" : 100,
|
||||
"absoluteCapacity" : 0,
|
||||
"absoluteUsedCapacity" : 0,
|
||||
"absoluteMaxCapacity" : 0,
|
||||
"maxAMLimitPercentage" : 0,
|
||||
"weight" : -1,
|
||||
"normalizedWeight" : 0,
|
||||
"configuredMinResource" : {
|
||||
"memory" : 0,
|
||||
"vCores" : 0,
|
||||
"resourceInformations" : {
|
||||
"resourceInformation" : [ {
|
||||
"attributes" : { },
|
||||
"maximumAllocation" : 8192,
|
||||
"minimumAllocation" : 1024,
|
||||
"name" : "memory-mb",
|
||||
"resourceType" : "COUNTABLE",
|
||||
"units" : "Mi",
|
||||
"value" : 0
|
||||
}, {
|
||||
"attributes" : { },
|
||||
"maximumAllocation" : 4,
|
||||
"minimumAllocation" : 1,
|
||||
"name" : "vcores",
|
||||
"resourceType" : "COUNTABLE",
|
||||
"units" : "",
|
||||
"value" : 0
|
||||
} ]
|
||||
}
|
||||
},
|
||||
"configuredMaxResource" : {
|
||||
"memory" : 0,
|
||||
"vCores" : 0,
|
||||
"resourceInformations" : {
|
||||
"resourceInformation" : [ {
|
||||
"attributes" : { },
|
||||
"maximumAllocation" : 8192,
|
||||
"minimumAllocation" : 1024,
|
||||
"name" : "memory-mb",
|
||||
"resourceType" : "COUNTABLE",
|
||||
"units" : "Mi",
|
||||
"value" : 0
|
||||
}, {
|
||||
"attributes" : { },
|
||||
"maximumAllocation" : 4,
|
||||
"minimumAllocation" : 1,
|
||||
"name" : "vcores",
|
||||
"resourceType" : "COUNTABLE",
|
||||
"units" : "",
|
||||
"value" : 0
|
||||
} ]
|
||||
}
|
||||
},
|
||||
"effectiveMinResource" : {
|
||||
"memory" : 0,
|
||||
"vCores" : 0,
|
||||
"resourceInformations" : {
|
||||
"resourceInformation" : [ {
|
||||
"attributes" : { },
|
||||
"maximumAllocation" : 8192,
|
||||
"minimumAllocation" : 1024,
|
||||
"name" : "memory-mb",
|
||||
"resourceType" : "COUNTABLE",
|
||||
"units" : "Mi",
|
||||
"value" : 0
|
||||
}, {
|
||||
"attributes" : { },
|
||||
"maximumAllocation" : 4,
|
||||
"minimumAllocation" : 1,
|
||||
"name" : "vcores",
|
||||
"resourceType" : "COUNTABLE",
|
||||
"units" : "",
|
||||
"value" : 0
|
||||
} ]
|
||||
}
|
||||
},
|
||||
"effectiveMaxResource" : {
|
||||
"memory" : 0,
|
||||
"vCores" : 0,
|
||||
"resourceInformations" : {
|
||||
"resourceInformation" : [ {
|
||||
"attributes" : { },
|
||||
"maximumAllocation" : 8192,
|
||||
"minimumAllocation" : 1024,
|
||||
"name" : "memory-mb",
|
||||
"resourceType" : "COUNTABLE",
|
||||
"units" : "Mi",
|
||||
"value" : 0
|
||||
}, {
|
||||
"attributes" : { },
|
||||
"maximumAllocation" : 4,
|
||||
"minimumAllocation" : 1,
|
||||
"name" : "vcores",
|
||||
"resourceType" : "COUNTABLE",
|
||||
"units" : "",
|
||||
"value" : 0
|
||||
} ]
|
||||
}
|
||||
}
|
||||
} ]
|
||||
},
|
||||
"resources" : {
|
||||
@ -323,6 +429,146 @@
|
||||
} ]
|
||||
}
|
||||
}
|
||||
}, {
|
||||
"partitionName" : "root-a-default-label",
|
||||
"used" : {
|
||||
"memory" : 0,
|
||||
"vCores" : 0,
|
||||
"resourceInformations" : {
|
||||
"resourceInformation" : [ {
|
||||
"attributes" : { },
|
||||
"maximumAllocation" : 9223372036854775807,
|
||||
"minimumAllocation" : 0,
|
||||
"name" : "memory-mb",
|
||||
"resourceType" : "COUNTABLE",
|
||||
"units" : "Mi",
|
||||
"value" : 0
|
||||
}, {
|
||||
"attributes" : { },
|
||||
"maximumAllocation" : 9223372036854775807,
|
||||
"minimumAllocation" : 0,
|
||||
"name" : "vcores",
|
||||
"resourceType" : "COUNTABLE",
|
||||
"units" : "",
|
||||
"value" : 0
|
||||
} ]
|
||||
}
|
||||
},
|
||||
"reserved" : {
|
||||
"memory" : 0,
|
||||
"vCores" : 0,
|
||||
"resourceInformations" : {
|
||||
"resourceInformation" : [ {
|
||||
"attributes" : { },
|
||||
"maximumAllocation" : 9223372036854775807,
|
||||
"minimumAllocation" : 0,
|
||||
"name" : "memory-mb",
|
||||
"resourceType" : "COUNTABLE",
|
||||
"units" : "Mi",
|
||||
"value" : 0
|
||||
}, {
|
||||
"attributes" : { },
|
||||
"maximumAllocation" : 9223372036854775807,
|
||||
"minimumAllocation" : 0,
|
||||
"name" : "vcores",
|
||||
"resourceType" : "COUNTABLE",
|
||||
"units" : "",
|
||||
"value" : 0
|
||||
} ]
|
||||
}
|
||||
},
|
||||
"pending" : {
|
||||
"memory" : 0,
|
||||
"vCores" : 0,
|
||||
"resourceInformations" : {
|
||||
"resourceInformation" : [ {
|
||||
"attributes" : { },
|
||||
"maximumAllocation" : 9223372036854775807,
|
||||
"minimumAllocation" : 0,
|
||||
"name" : "memory-mb",
|
||||
"resourceType" : "COUNTABLE",
|
||||
"units" : "Mi",
|
||||
"value" : 0
|
||||
}, {
|
||||
"attributes" : { },
|
||||
"maximumAllocation" : 9223372036854775807,
|
||||
"minimumAllocation" : 0,
|
||||
"name" : "vcores",
|
||||
"resourceType" : "COUNTABLE",
|
||||
"units" : "",
|
||||
"value" : 0
|
||||
} ]
|
||||
}
|
||||
},
|
||||
"amUsed" : {
|
||||
"memory" : 0,
|
||||
"vCores" : 0,
|
||||
"resourceInformations" : {
|
||||
"resourceInformation" : [ {
|
||||
"attributes" : { },
|
||||
"maximumAllocation" : 9223372036854775807,
|
||||
"minimumAllocation" : 0,
|
||||
"name" : "memory-mb",
|
||||
"resourceType" : "COUNTABLE",
|
||||
"units" : "Mi",
|
||||
"value" : 0
|
||||
}, {
|
||||
"attributes" : { },
|
||||
"maximumAllocation" : 9223372036854775807,
|
||||
"minimumAllocation" : 0,
|
||||
"name" : "vcores",
|
||||
"resourceType" : "COUNTABLE",
|
||||
"units" : "",
|
||||
"value" : 0
|
||||
} ]
|
||||
}
|
||||
},
|
||||
"amLimit" : {
|
||||
"memory" : 0,
|
||||
"vCores" : 0,
|
||||
"resourceInformations" : {
|
||||
"resourceInformation" : [ {
|
||||
"attributes" : { },
|
||||
"maximumAllocation" : 9223372036854775807,
|
||||
"minimumAllocation" : 0,
|
||||
"name" : "memory-mb",
|
||||
"resourceType" : "COUNTABLE",
|
||||
"units" : "Mi",
|
||||
"value" : 0
|
||||
}, {
|
||||
"attributes" : { },
|
||||
"maximumAllocation" : 9223372036854775807,
|
||||
"minimumAllocation" : 0,
|
||||
"name" : "vcores",
|
||||
"resourceType" : "COUNTABLE",
|
||||
"units" : "",
|
||||
"value" : 0
|
||||
} ]
|
||||
}
|
||||
},
|
||||
"userAmLimit" : {
|
||||
"memory" : 0,
|
||||
"vCores" : 0,
|
||||
"resourceInformations" : {
|
||||
"resourceInformation" : [ {
|
||||
"attributes" : { },
|
||||
"maximumAllocation" : 9223372036854775807,
|
||||
"minimumAllocation" : 0,
|
||||
"name" : "memory-mb",
|
||||
"resourceType" : "COUNTABLE",
|
||||
"units" : "Mi",
|
||||
"value" : 0
|
||||
}, {
|
||||
"attributes" : { },
|
||||
"maximumAllocation" : 9223372036854775807,
|
||||
"minimumAllocation" : 0,
|
||||
"name" : "vcores",
|
||||
"resourceType" : "COUNTABLE",
|
||||
"units" : "",
|
||||
"value" : 0
|
||||
} ]
|
||||
}
|
||||
}
|
||||
} ]
|
||||
},
|
||||
"minEffectiveCapacity" : {
|
||||
|
@ -61,7 +61,7 @@
|
||||
</resourceInformations>
|
||||
</resourcesUsed>
|
||||
<hideReservationQueues>false</hideReservationQueues>
|
||||
<nodeLabels>*</nodeLabels>
|
||||
<nodeLabels>root-a-default-label</nodeLabels>
|
||||
<allocatedContainers>0</allocatedContainers>
|
||||
<reservedContainers>0</reservedContainers>
|
||||
<pendingContainers>1</pendingContainers>
|
||||
@ -185,6 +185,117 @@
|
||||
</resourceInformations>
|
||||
</effectiveMaxResource>
|
||||
</queueCapacitiesByPartition>
|
||||
<queueCapacitiesByPartition>
|
||||
<partitionName>root-a-default-label</partitionName>
|
||||
<queueCapacityVectorInfo>
|
||||
<configuredCapacityVector>[]</configuredCapacityVector>
|
||||
</queueCapacityVectorInfo>
|
||||
<capacity>0.0</capacity>
|
||||
<usedCapacity>0.0</usedCapacity>
|
||||
<maxCapacity>100.0</maxCapacity>
|
||||
<absoluteCapacity>0.0</absoluteCapacity>
|
||||
<absoluteUsedCapacity>0.0</absoluteUsedCapacity>
|
||||
<absoluteMaxCapacity>0.0</absoluteMaxCapacity>
|
||||
<maxAMLimitPercentage>0.0</maxAMLimitPercentage>
|
||||
<weight>-1.0</weight>
|
||||
<normalizedWeight>0.0</normalizedWeight>
|
||||
<configuredMinResource>
|
||||
<memory>0</memory>
|
||||
<vCores>0</vCores>
|
||||
<resourceInformations>
|
||||
<resourceInformation>
|
||||
<attributes/>
|
||||
<maximumAllocation>8192</maximumAllocation>
|
||||
<minimumAllocation>1024</minimumAllocation>
|
||||
<name>memory-mb</name>
|
||||
<resourceType>COUNTABLE</resourceType>
|
||||
<units>Mi</units>
|
||||
<value>0</value>
|
||||
</resourceInformation>
|
||||
<resourceInformation>
|
||||
<attributes/>
|
||||
<maximumAllocation>4</maximumAllocation>
|
||||
<minimumAllocation>1</minimumAllocation>
|
||||
<name>vcores</name>
|
||||
<resourceType>COUNTABLE</resourceType>
|
||||
<units/>
|
||||
<value>0</value>
|
||||
</resourceInformation>
|
||||
</resourceInformations>
|
||||
</configuredMinResource>
|
||||
<configuredMaxResource>
|
||||
<memory>0</memory>
|
||||
<vCores>0</vCores>
|
||||
<resourceInformations>
|
||||
<resourceInformation>
|
||||
<attributes/>
|
||||
<maximumAllocation>8192</maximumAllocation>
|
||||
<minimumAllocation>1024</minimumAllocation>
|
||||
<name>memory-mb</name>
|
||||
<resourceType>COUNTABLE</resourceType>
|
||||
<units>Mi</units>
|
||||
<value>0</value>
|
||||
</resourceInformation>
|
||||
<resourceInformation>
|
||||
<attributes/>
|
||||
<maximumAllocation>4</maximumAllocation>
|
||||
<minimumAllocation>1</minimumAllocation>
|
||||
<name>vcores</name>
|
||||
<resourceType>COUNTABLE</resourceType>
|
||||
<units/>
|
||||
<value>0</value>
|
||||
</resourceInformation>
|
||||
</resourceInformations>
|
||||
</configuredMaxResource>
|
||||
<effectiveMinResource>
|
||||
<memory>0</memory>
|
||||
<vCores>0</vCores>
|
||||
<resourceInformations>
|
||||
<resourceInformation>
|
||||
<attributes/>
|
||||
<maximumAllocation>8192</maximumAllocation>
|
||||
<minimumAllocation>1024</minimumAllocation>
|
||||
<name>memory-mb</name>
|
||||
<resourceType>COUNTABLE</resourceType>
|
||||
<units>Mi</units>
|
||||
<value>0</value>
|
||||
</resourceInformation>
|
||||
<resourceInformation>
|
||||
<attributes/>
|
||||
<maximumAllocation>4</maximumAllocation>
|
||||
<minimumAllocation>1</minimumAllocation>
|
||||
<name>vcores</name>
|
||||
<resourceType>COUNTABLE</resourceType>
|
||||
<units/>
|
||||
<value>0</value>
|
||||
</resourceInformation>
|
||||
</resourceInformations>
|
||||
</effectiveMinResource>
|
||||
<effectiveMaxResource>
|
||||
<memory>0</memory>
|
||||
<vCores>0</vCores>
|
||||
<resourceInformations>
|
||||
<resourceInformation>
|
||||
<attributes/>
|
||||
<maximumAllocation>8192</maximumAllocation>
|
||||
<minimumAllocation>1024</minimumAllocation>
|
||||
<name>memory-mb</name>
|
||||
<resourceType>COUNTABLE</resourceType>
|
||||
<units>Mi</units>
|
||||
<value>0</value>
|
||||
</resourceInformation>
|
||||
<resourceInformation>
|
||||
<attributes/>
|
||||
<maximumAllocation>4</maximumAllocation>
|
||||
<minimumAllocation>1</minimumAllocation>
|
||||
<name>vcores</name>
|
||||
<resourceType>COUNTABLE</resourceType>
|
||||
<units/>
|
||||
<value>0</value>
|
||||
</resourceInformation>
|
||||
</resourceInformations>
|
||||
</effectiveMaxResource>
|
||||
</queueCapacitiesByPartition>
|
||||
</capacities>
|
||||
<resources>
|
||||
<resourceUsagesByPartition>
|
||||
@ -334,6 +445,153 @@
|
||||
</resourceInformations>
|
||||
</userAmLimit>
|
||||
</resourceUsagesByPartition>
|
||||
<resourceUsagesByPartition>
|
||||
<partitionName>root-a-default-label</partitionName>
|
||||
<used>
|
||||
<memory>0</memory>
|
||||
<vCores>0</vCores>
|
||||
<resourceInformations>
|
||||
<resourceInformation>
|
||||
<attributes/>
|
||||
<maximumAllocation>9223372036854775807</maximumAllocation>
|
||||
<minimumAllocation>0</minimumAllocation>
|
||||
<name>memory-mb</name>
|
||||
<resourceType>COUNTABLE</resourceType>
|
||||
<units>Mi</units>
|
||||
<value>0</value>
|
||||
</resourceInformation>
|
||||
<resourceInformation>
|
||||
<attributes/>
|
||||
<maximumAllocation>9223372036854775807</maximumAllocation>
|
||||
<minimumAllocation>0</minimumAllocation>
|
||||
<name>vcores</name>
|
||||
<resourceType>COUNTABLE</resourceType>
|
||||
<units/>
|
||||
<value>0</value>
|
||||
</resourceInformation>
|
||||
</resourceInformations>
|
||||
</used>
|
||||
<reserved>
|
||||
<memory>0</memory>
|
||||
<vCores>0</vCores>
|
||||
<resourceInformations>
|
||||
<resourceInformation>
|
||||
<attributes/>
|
||||
<maximumAllocation>9223372036854775807</maximumAllocation>
|
||||
<minimumAllocation>0</minimumAllocation>
|
||||
<name>memory-mb</name>
|
||||
<resourceType>COUNTABLE</resourceType>
|
||||
<units>Mi</units>
|
||||
<value>0</value>
|
||||
</resourceInformation>
|
||||
<resourceInformation>
|
||||
<attributes/>
|
||||
<maximumAllocation>9223372036854775807</maximumAllocation>
|
||||
<minimumAllocation>0</minimumAllocation>
|
||||
<name>vcores</name>
|
||||
<resourceType>COUNTABLE</resourceType>
|
||||
<units/>
|
||||
<value>0</value>
|
||||
</resourceInformation>
|
||||
</resourceInformations>
|
||||
</reserved>
|
||||
<pending>
|
||||
<memory>0</memory>
|
||||
<vCores>0</vCores>
|
||||
<resourceInformations>
|
||||
<resourceInformation>
|
||||
<attributes/>
|
||||
<maximumAllocation>9223372036854775807</maximumAllocation>
|
||||
<minimumAllocation>0</minimumAllocation>
|
||||
<name>memory-mb</name>
|
||||
<resourceType>COUNTABLE</resourceType>
|
||||
<units>Mi</units>
|
||||
<value>0</value>
|
||||
</resourceInformation>
|
||||
<resourceInformation>
|
||||
<attributes/>
|
||||
<maximumAllocation>9223372036854775807</maximumAllocation>
|
||||
<minimumAllocation>0</minimumAllocation>
|
||||
<name>vcores</name>
|
||||
<resourceType>COUNTABLE</resourceType>
|
||||
<units/>
|
||||
<value>0</value>
|
||||
</resourceInformation>
|
||||
</resourceInformations>
|
||||
</pending>
|
||||
<amUsed>
|
||||
<memory>0</memory>
|
||||
<vCores>0</vCores>
|
||||
<resourceInformations>
|
||||
<resourceInformation>
|
||||
<attributes/>
|
||||
<maximumAllocation>9223372036854775807</maximumAllocation>
|
||||
<minimumAllocation>0</minimumAllocation>
|
||||
<name>memory-mb</name>
|
||||
<resourceType>COUNTABLE</resourceType>
|
||||
<units>Mi</units>
|
||||
<value>0</value>
|
||||
</resourceInformation>
|
||||
<resourceInformation>
|
||||
<attributes/>
|
||||
<maximumAllocation>9223372036854775807</maximumAllocation>
|
||||
<minimumAllocation>0</minimumAllocation>
|
||||
<name>vcores</name>
|
||||
<resourceType>COUNTABLE</resourceType>
|
||||
<units/>
|
||||
<value>0</value>
|
||||
</resourceInformation>
|
||||
</resourceInformations>
|
||||
</amUsed>
|
||||
<amLimit>
|
||||
<memory>0</memory>
|
||||
<vCores>0</vCores>
|
||||
<resourceInformations>
|
||||
<resourceInformation>
|
||||
<attributes/>
|
||||
<maximumAllocation>9223372036854775807</maximumAllocation>
|
||||
<minimumAllocation>0</minimumAllocation>
|
||||
<name>memory-mb</name>
|
||||
<resourceType>COUNTABLE</resourceType>
|
||||
<units>Mi</units>
|
||||
<value>0</value>
|
||||
</resourceInformation>
|
||||
<resourceInformation>
|
||||
<attributes/>
|
||||
<maximumAllocation>9223372036854775807</maximumAllocation>
|
||||
<minimumAllocation>0</minimumAllocation>
|
||||
<name>vcores</name>
|
||||
<resourceType>COUNTABLE</resourceType>
|
||||
<units/>
|
||||
<value>0</value>
|
||||
</resourceInformation>
|
||||
</resourceInformations>
|
||||
</amLimit>
|
||||
<userAmLimit>
|
||||
<memory>0</memory>
|
||||
<vCores>0</vCores>
|
||||
<resourceInformations>
|
||||
<resourceInformation>
|
||||
<attributes/>
|
||||
<maximumAllocation>9223372036854775807</maximumAllocation>
|
||||
<minimumAllocation>0</minimumAllocation>
|
||||
<name>memory-mb</name>
|
||||
<resourceType>COUNTABLE</resourceType>
|
||||
<units>Mi</units>
|
||||
<value>0</value>
|
||||
</resourceInformation>
|
||||
<resourceInformation>
|
||||
<attributes/>
|
||||
<maximumAllocation>9223372036854775807</maximumAllocation>
|
||||
<minimumAllocation>0</minimumAllocation>
|
||||
<name>vcores</name>
|
||||
<resourceType>COUNTABLE</resourceType>
|
||||
<units/>
|
||||
<value>0</value>
|
||||
</resourceInformation>
|
||||
</resourceInformations>
|
||||
</userAmLimit>
|
||||
</resourceUsagesByPartition>
|
||||
</resources>
|
||||
<minEffectiveCapacity>
|
||||
<memory>4096</memory>
|
||||
|
@ -62,7 +62,7 @@
|
||||
}
|
||||
},
|
||||
"hideReservationQueues" : false,
|
||||
"nodeLabels" : [ "*" ],
|
||||
"nodeLabels" : [ "root-a-default-label" ],
|
||||
"allocatedContainers" : 0,
|
||||
"reservedContainers" : 0,
|
||||
"pendingContainers" : 0,
|
||||
@ -180,6 +180,112 @@
|
||||
} ]
|
||||
}
|
||||
}
|
||||
}, {
|
||||
"partitionName" : "root-a-default-label",
|
||||
"queueCapacityVectorInfo" : {
|
||||
"configuredCapacityVector" : "[]"
|
||||
},
|
||||
"capacity" : 0,
|
||||
"usedCapacity" : 0,
|
||||
"maxCapacity" : 100,
|
||||
"absoluteCapacity" : 0,
|
||||
"absoluteUsedCapacity" : 0,
|
||||
"absoluteMaxCapacity" : 0,
|
||||
"maxAMLimitPercentage" : 0,
|
||||
"weight" : -1,
|
||||
"normalizedWeight" : 0,
|
||||
"configuredMinResource" : {
|
||||
"memory" : 0,
|
||||
"vCores" : 0,
|
||||
"resourceInformations" : {
|
||||
"resourceInformation" : [ {
|
||||
"attributes" : { },
|
||||
"maximumAllocation" : 8192,
|
||||
"minimumAllocation" : 1024,
|
||||
"name" : "memory-mb",
|
||||
"resourceType" : "COUNTABLE",
|
||||
"units" : "Mi",
|
||||
"value" : 0
|
||||
}, {
|
||||
"attributes" : { },
|
||||
"maximumAllocation" : 4,
|
||||
"minimumAllocation" : 1,
|
||||
"name" : "vcores",
|
||||
"resourceType" : "COUNTABLE",
|
||||
"units" : "",
|
||||
"value" : 0
|
||||
} ]
|
||||
}
|
||||
},
|
||||
"configuredMaxResource" : {
|
||||
"memory" : 0,
|
||||
"vCores" : 0,
|
||||
"resourceInformations" : {
|
||||
"resourceInformation" : [ {
|
||||
"attributes" : { },
|
||||
"maximumAllocation" : 8192,
|
||||
"minimumAllocation" : 1024,
|
||||
"name" : "memory-mb",
|
||||
"resourceType" : "COUNTABLE",
|
||||
"units" : "Mi",
|
||||
"value" : 0
|
||||
}, {
|
||||
"attributes" : { },
|
||||
"maximumAllocation" : 4,
|
||||
"minimumAllocation" : 1,
|
||||
"name" : "vcores",
|
||||
"resourceType" : "COUNTABLE",
|
||||
"units" : "",
|
||||
"value" : 0
|
||||
} ]
|
||||
}
|
||||
},
|
||||
"effectiveMinResource" : {
|
||||
"memory" : 0,
|
||||
"vCores" : 0,
|
||||
"resourceInformations" : {
|
||||
"resourceInformation" : [ {
|
||||
"attributes" : { },
|
||||
"maximumAllocation" : 8192,
|
||||
"minimumAllocation" : 1024,
|
||||
"name" : "memory-mb",
|
||||
"resourceType" : "COUNTABLE",
|
||||
"units" : "Mi",
|
||||
"value" : 0
|
||||
}, {
|
||||
"attributes" : { },
|
||||
"maximumAllocation" : 4,
|
||||
"minimumAllocation" : 1,
|
||||
"name" : "vcores",
|
||||
"resourceType" : "COUNTABLE",
|
||||
"units" : "",
|
||||
"value" : 0
|
||||
} ]
|
||||
}
|
||||
},
|
||||
"effectiveMaxResource" : {
|
||||
"memory" : 0,
|
||||
"vCores" : 0,
|
||||
"resourceInformations" : {
|
||||
"resourceInformation" : [ {
|
||||
"attributes" : { },
|
||||
"maximumAllocation" : 8192,
|
||||
"minimumAllocation" : 1024,
|
||||
"name" : "memory-mb",
|
||||
"resourceType" : "COUNTABLE",
|
||||
"units" : "Mi",
|
||||
"value" : 0
|
||||
}, {
|
||||
"attributes" : { },
|
||||
"maximumAllocation" : 4,
|
||||
"minimumAllocation" : 1,
|
||||
"name" : "vcores",
|
||||
"resourceType" : "COUNTABLE",
|
||||
"units" : "",
|
||||
"value" : 0
|
||||
} ]
|
||||
}
|
||||
}
|
||||
} ]
|
||||
},
|
||||
"resources" : {
|
||||
@ -323,6 +429,146 @@
|
||||
} ]
|
||||
}
|
||||
}
|
||||
}, {
|
||||
"partitionName" : "root-a-default-label",
|
||||
"used" : {
|
||||
"memory" : 0,
|
||||
"vCores" : 0,
|
||||
"resourceInformations" : {
|
||||
"resourceInformation" : [ {
|
||||
"attributes" : { },
|
||||
"maximumAllocation" : 9223372036854775807,
|
||||
"minimumAllocation" : 0,
|
||||
"name" : "memory-mb",
|
||||
"resourceType" : "COUNTABLE",
|
||||
"units" : "Mi",
|
||||
"value" : 0
|
||||
}, {
|
||||
"attributes" : { },
|
||||
"maximumAllocation" : 9223372036854775807,
|
||||
"minimumAllocation" : 0,
|
||||
"name" : "vcores",
|
||||
"resourceType" : "COUNTABLE",
|
||||
"units" : "",
|
||||
"value" : 0
|
||||
} ]
|
||||
}
|
||||
},
|
||||
"reserved" : {
|
||||
"memory" : 0,
|
||||
"vCores" : 0,
|
||||
"resourceInformations" : {
|
||||
"resourceInformation" : [ {
|
||||
"attributes" : { },
|
||||
"maximumAllocation" : 9223372036854775807,
|
||||
"minimumAllocation" : 0,
|
||||
"name" : "memory-mb",
|
||||
"resourceType" : "COUNTABLE",
|
||||
"units" : "Mi",
|
||||
"value" : 0
|
||||
}, {
|
||||
"attributes" : { },
|
||||
"maximumAllocation" : 9223372036854775807,
|
||||
"minimumAllocation" : 0,
|
||||
"name" : "vcores",
|
||||
"resourceType" : "COUNTABLE",
|
||||
"units" : "",
|
||||
"value" : 0
|
||||
} ]
|
||||
}
|
||||
},
|
||||
"pending" : {
|
||||
"memory" : 0,
|
||||
"vCores" : 0,
|
||||
"resourceInformations" : {
|
||||
"resourceInformation" : [ {
|
||||
"attributes" : { },
|
||||
"maximumAllocation" : 9223372036854775807,
|
||||
"minimumAllocation" : 0,
|
||||
"name" : "memory-mb",
|
||||
"resourceType" : "COUNTABLE",
|
||||
"units" : "Mi",
|
||||
"value" : 0
|
||||
}, {
|
||||
"attributes" : { },
|
||||
"maximumAllocation" : 9223372036854775807,
|
||||
"minimumAllocation" : 0,
|
||||
"name" : "vcores",
|
||||
"resourceType" : "COUNTABLE",
|
||||
"units" : "",
|
||||
"value" : 0
|
||||
} ]
|
||||
}
|
||||
},
|
||||
"amUsed" : {
|
||||
"memory" : 0,
|
||||
"vCores" : 0,
|
||||
"resourceInformations" : {
|
||||
"resourceInformation" : [ {
|
||||
"attributes" : { },
|
||||
"maximumAllocation" : 9223372036854775807,
|
||||
"minimumAllocation" : 0,
|
||||
"name" : "memory-mb",
|
||||
"resourceType" : "COUNTABLE",
|
||||
"units" : "Mi",
|
||||
"value" : 0
|
||||
}, {
|
||||
"attributes" : { },
|
||||
"maximumAllocation" : 9223372036854775807,
|
||||
"minimumAllocation" : 0,
|
||||
"name" : "vcores",
|
||||
"resourceType" : "COUNTABLE",
|
||||
"units" : "",
|
||||
"value" : 0
|
||||
} ]
|
||||
}
|
||||
},
|
||||
"amLimit" : {
|
||||
"memory" : 0,
|
||||
"vCores" : 0,
|
||||
"resourceInformations" : {
|
||||
"resourceInformation" : [ {
|
||||
"attributes" : { },
|
||||
"maximumAllocation" : 9223372036854775807,
|
||||
"minimumAllocation" : 0,
|
||||
"name" : "memory-mb",
|
||||
"resourceType" : "COUNTABLE",
|
||||
"units" : "Mi",
|
||||
"value" : 0
|
||||
}, {
|
||||
"attributes" : { },
|
||||
"maximumAllocation" : 9223372036854775807,
|
||||
"minimumAllocation" : 0,
|
||||
"name" : "vcores",
|
||||
"resourceType" : "COUNTABLE",
|
||||
"units" : "",
|
||||
"value" : 0
|
||||
} ]
|
||||
}
|
||||
},
|
||||
"userAmLimit" : {
|
||||
"memory" : 0,
|
||||
"vCores" : 0,
|
||||
"resourceInformations" : {
|
||||
"resourceInformation" : [ {
|
||||
"attributes" : { },
|
||||
"maximumAllocation" : 9223372036854775807,
|
||||
"minimumAllocation" : 0,
|
||||
"name" : "memory-mb",
|
||||
"resourceType" : "COUNTABLE",
|
||||
"units" : "Mi",
|
||||
"value" : 0
|
||||
}, {
|
||||
"attributes" : { },
|
||||
"maximumAllocation" : 9223372036854775807,
|
||||
"minimumAllocation" : 0,
|
||||
"name" : "vcores",
|
||||
"resourceType" : "COUNTABLE",
|
||||
"units" : "",
|
||||
"value" : 0
|
||||
} ]
|
||||
}
|
||||
}
|
||||
} ]
|
||||
},
|
||||
"minEffectiveCapacity" : {
|
||||
|
@ -61,7 +61,7 @@
|
||||
</resourceInformations>
|
||||
</resourcesUsed>
|
||||
<hideReservationQueues>false</hideReservationQueues>
|
||||
<nodeLabels>*</nodeLabels>
|
||||
<nodeLabels>root-a-default-label</nodeLabels>
|
||||
<allocatedContainers>0</allocatedContainers>
|
||||
<reservedContainers>0</reservedContainers>
|
||||
<pendingContainers>0</pendingContainers>
|
||||
@ -185,6 +185,117 @@
|
||||
</resourceInformations>
|
||||
</effectiveMaxResource>
|
||||
</queueCapacitiesByPartition>
|
||||
<queueCapacitiesByPartition>
|
||||
<partitionName>root-a-default-label</partitionName>
|
||||
<queueCapacityVectorInfo>
|
||||
<configuredCapacityVector>[]</configuredCapacityVector>
|
||||
</queueCapacityVectorInfo>
|
||||
<capacity>0.0</capacity>
|
||||
<usedCapacity>0.0</usedCapacity>
|
||||
<maxCapacity>100.0</maxCapacity>
|
||||
<absoluteCapacity>0.0</absoluteCapacity>
|
||||
<absoluteUsedCapacity>0.0</absoluteUsedCapacity>
|
||||
<absoluteMaxCapacity>0.0</absoluteMaxCapacity>
|
||||
<maxAMLimitPercentage>0.0</maxAMLimitPercentage>
|
||||
<weight>-1.0</weight>
|
||||
<normalizedWeight>0.0</normalizedWeight>
|
||||
<configuredMinResource>
|
||||
<memory>0</memory>
|
||||
<vCores>0</vCores>
|
||||
<resourceInformations>
|
||||
<resourceInformation>
|
||||
<attributes/>
|
||||
<maximumAllocation>8192</maximumAllocation>
|
||||
<minimumAllocation>1024</minimumAllocation>
|
||||
<name>memory-mb</name>
|
||||
<resourceType>COUNTABLE</resourceType>
|
||||
<units>Mi</units>
|
||||
<value>0</value>
|
||||
</resourceInformation>
|
||||
<resourceInformation>
|
||||
<attributes/>
|
||||
<maximumAllocation>4</maximumAllocation>
|
||||
<minimumAllocation>1</minimumAllocation>
|
||||
<name>vcores</name>
|
||||
<resourceType>COUNTABLE</resourceType>
|
||||
<units/>
|
||||
<value>0</value>
|
||||
</resourceInformation>
|
||||
</resourceInformations>
|
||||
</configuredMinResource>
|
||||
<configuredMaxResource>
|
||||
<memory>0</memory>
|
||||
<vCores>0</vCores>
|
||||
<resourceInformations>
|
||||
<resourceInformation>
|
||||
<attributes/>
|
||||
<maximumAllocation>8192</maximumAllocation>
|
||||
<minimumAllocation>1024</minimumAllocation>
|
||||
<name>memory-mb</name>
|
||||
<resourceType>COUNTABLE</resourceType>
|
||||
<units>Mi</units>
|
||||
<value>0</value>
|
||||
</resourceInformation>
|
||||
<resourceInformation>
|
||||
<attributes/>
|
||||
<maximumAllocation>4</maximumAllocation>
|
||||
<minimumAllocation>1</minimumAllocation>
|
||||
<name>vcores</name>
|
||||
<resourceType>COUNTABLE</resourceType>
|
||||
<units/>
|
||||
<value>0</value>
|
||||
</resourceInformation>
|
||||
</resourceInformations>
|
||||
</configuredMaxResource>
|
||||
<effectiveMinResource>
|
||||
<memory>0</memory>
|
||||
<vCores>0</vCores>
|
||||
<resourceInformations>
|
||||
<resourceInformation>
|
||||
<attributes/>
|
||||
<maximumAllocation>8192</maximumAllocation>
|
||||
<minimumAllocation>1024</minimumAllocation>
|
||||
<name>memory-mb</name>
|
||||
<resourceType>COUNTABLE</resourceType>
|
||||
<units>Mi</units>
|
||||
<value>0</value>
|
||||
</resourceInformation>
|
||||
<resourceInformation>
|
||||
<attributes/>
|
||||
<maximumAllocation>4</maximumAllocation>
|
||||
<minimumAllocation>1</minimumAllocation>
|
||||
<name>vcores</name>
|
||||
<resourceType>COUNTABLE</resourceType>
|
||||
<units/>
|
||||
<value>0</value>
|
||||
</resourceInformation>
|
||||
</resourceInformations>
|
||||
</effectiveMinResource>
|
||||
<effectiveMaxResource>
|
||||
<memory>0</memory>
|
||||
<vCores>0</vCores>
|
||||
<resourceInformations>
|
||||
<resourceInformation>
|
||||
<attributes/>
|
||||
<maximumAllocation>8192</maximumAllocation>
|
||||
<minimumAllocation>1024</minimumAllocation>
|
||||
<name>memory-mb</name>
|
||||
<resourceType>COUNTABLE</resourceType>
|
||||
<units>Mi</units>
|
||||
<value>0</value>
|
||||
</resourceInformation>
|
||||
<resourceInformation>
|
||||
<attributes/>
|
||||
<maximumAllocation>4</maximumAllocation>
|
||||
<minimumAllocation>1</minimumAllocation>
|
||||
<name>vcores</name>
|
||||
<resourceType>COUNTABLE</resourceType>
|
||||
<units/>
|
||||
<value>0</value>
|
||||
</resourceInformation>
|
||||
</resourceInformations>
|
||||
</effectiveMaxResource>
|
||||
</queueCapacitiesByPartition>
|
||||
</capacities>
|
||||
<resources>
|
||||
<resourceUsagesByPartition>
|
||||
@ -334,6 +445,153 @@
|
||||
</resourceInformations>
|
||||
</userAmLimit>
|
||||
</resourceUsagesByPartition>
|
||||
<resourceUsagesByPartition>
|
||||
<partitionName>root-a-default-label</partitionName>
|
||||
<used>
|
||||
<memory>0</memory>
|
||||
<vCores>0</vCores>
|
||||
<resourceInformations>
|
||||
<resourceInformation>
|
||||
<attributes/>
|
||||
<maximumAllocation>9223372036854775807</maximumAllocation>
|
||||
<minimumAllocation>0</minimumAllocation>
|
||||
<name>memory-mb</name>
|
||||
<resourceType>COUNTABLE</resourceType>
|
||||
<units>Mi</units>
|
||||
<value>0</value>
|
||||
</resourceInformation>
|
||||
<resourceInformation>
|
||||
<attributes/>
|
||||
<maximumAllocation>9223372036854775807</maximumAllocation>
|
||||
<minimumAllocation>0</minimumAllocation>
|
||||
<name>vcores</name>
|
||||
<resourceType>COUNTABLE</resourceType>
|
||||
<units/>
|
||||
<value>0</value>
|
||||
</resourceInformation>
|
||||
</resourceInformations>
|
||||
</used>
|
||||
<reserved>
|
||||
<memory>0</memory>
|
||||
<vCores>0</vCores>
|
||||
<resourceInformations>
|
||||
<resourceInformation>
|
||||
<attributes/>
|
||||
<maximumAllocation>9223372036854775807</maximumAllocation>
|
||||
<minimumAllocation>0</minimumAllocation>
|
||||
<name>memory-mb</name>
|
||||
<resourceType>COUNTABLE</resourceType>
|
||||
<units>Mi</units>
|
||||
<value>0</value>
|
||||
</resourceInformation>
|
||||
<resourceInformation>
|
||||
<attributes/>
|
||||
<maximumAllocation>9223372036854775807</maximumAllocation>
|
||||
<minimumAllocation>0</minimumAllocation>
|
||||
<name>vcores</name>
|
||||
<resourceType>COUNTABLE</resourceType>
|
||||
<units/>
|
||||
<value>0</value>
|
||||
</resourceInformation>
|
||||
</resourceInformations>
|
||||
</reserved>
|
||||
<pending>
|
||||
<memory>0</memory>
|
||||
<vCores>0</vCores>
|
||||
<resourceInformations>
|
||||
<resourceInformation>
|
||||
<attributes/>
|
||||
<maximumAllocation>9223372036854775807</maximumAllocation>
|
||||
<minimumAllocation>0</minimumAllocation>
|
||||
<name>memory-mb</name>
|
||||
<resourceType>COUNTABLE</resourceType>
|
||||
<units>Mi</units>
|
||||
<value>0</value>
|
||||
</resourceInformation>
|
||||
<resourceInformation>
|
||||
<attributes/>
|
||||
<maximumAllocation>9223372036854775807</maximumAllocation>
|
||||
<minimumAllocation>0</minimumAllocation>
|
||||
<name>vcores</name>
|
||||
<resourceType>COUNTABLE</resourceType>
|
||||
<units/>
|
||||
<value>0</value>
|
||||
</resourceInformation>
|
||||
</resourceInformations>
|
||||
</pending>
|
||||
<amUsed>
|
||||
<memory>0</memory>
|
||||
<vCores>0</vCores>
|
||||
<resourceInformations>
|
||||
<resourceInformation>
|
||||
<attributes/>
|
||||
<maximumAllocation>9223372036854775807</maximumAllocation>
|
||||
<minimumAllocation>0</minimumAllocation>
|
||||
<name>memory-mb</name>
|
||||
<resourceType>COUNTABLE</resourceType>
|
||||
<units>Mi</units>
|
||||
<value>0</value>
|
||||
</resourceInformation>
|
||||
<resourceInformation>
|
||||
<attributes/>
|
||||
<maximumAllocation>9223372036854775807</maximumAllocation>
|
||||
<minimumAllocation>0</minimumAllocation>
|
||||
<name>vcores</name>
|
||||
<resourceType>COUNTABLE</resourceType>
|
||||
<units/>
|
||||
<value>0</value>
|
||||
</resourceInformation>
|
||||
</resourceInformations>
|
||||
</amUsed>
|
||||
<amLimit>
|
||||
<memory>0</memory>
|
||||
<vCores>0</vCores>
|
||||
<resourceInformations>
|
||||
<resourceInformation>
|
||||
<attributes/>
|
||||
<maximumAllocation>9223372036854775807</maximumAllocation>
|
||||
<minimumAllocation>0</minimumAllocation>
|
||||
<name>memory-mb</name>
|
||||
<resourceType>COUNTABLE</resourceType>
|
||||
<units>Mi</units>
|
||||
<value>0</value>
|
||||
</resourceInformation>
|
||||
<resourceInformation>
|
||||
<attributes/>
|
||||
<maximumAllocation>9223372036854775807</maximumAllocation>
|
||||
<minimumAllocation>0</minimumAllocation>
|
||||
<name>vcores</name>
|
||||
<resourceType>COUNTABLE</resourceType>
|
||||
<units/>
|
||||
<value>0</value>
|
||||
</resourceInformation>
|
||||
</resourceInformations>
|
||||
</amLimit>
|
||||
<userAmLimit>
|
||||
<memory>0</memory>
|
||||
<vCores>0</vCores>
|
||||
<resourceInformations>
|
||||
<resourceInformation>
|
||||
<attributes/>
|
||||
<maximumAllocation>9223372036854775807</maximumAllocation>
|
||||
<minimumAllocation>0</minimumAllocation>
|
||||
<name>memory-mb</name>
|
||||
<resourceType>COUNTABLE</resourceType>
|
||||
<units>Mi</units>
|
||||
<value>0</value>
|
||||
</resourceInformation>
|
||||
<resourceInformation>
|
||||
<attributes/>
|
||||
<maximumAllocation>9223372036854775807</maximumAllocation>
|
||||
<minimumAllocation>0</minimumAllocation>
|
||||
<name>vcores</name>
|
||||
<resourceType>COUNTABLE</resourceType>
|
||||
<units/>
|
||||
<value>0</value>
|
||||
</resourceInformation>
|
||||
</resourceInformations>
|
||||
</userAmLimit>
|
||||
</resourceUsagesByPartition>
|
||||
</resources>
|
||||
<minEffectiveCapacity>
|
||||
<memory>4096</memory>
|
||||
|
Loading…
Reference in New Issue
Block a user