YARN-9790. Failed to set default-application-lifetime if maximum-application-lifetime is less than or equal to zero. Contributed by kyungwan nam.
This commit is contained in:
parent
c187d2cb9f
commit
d2d963f3d4
|
@ -3116,7 +3116,8 @@ public class CapacityScheduler extends
|
|||
// check only for maximum, that's enough because default can't
|
||||
// exceed maximum
|
||||
if (maximumApplicationLifetime <= 0) {
|
||||
return lifetimeRequestedByApp;
|
||||
return (lifetimeRequestedByApp <= 0) ? defaultApplicationLifetime :
|
||||
lifetimeRequestedByApp;
|
||||
}
|
||||
|
||||
if (lifetimeRequestedByApp <= 0) {
|
||||
|
|
|
@ -259,7 +259,8 @@ public class LeafQueue extends AbstractCSQueue {
|
|||
conf.getMaximumLifetimePerQueue((getQueuePath()));
|
||||
defaultApplicationLifetime =
|
||||
conf.getDefaultLifetimePerQueue((getQueuePath()));
|
||||
if (defaultApplicationLifetime > maxApplicationLifetime) {
|
||||
if (maxApplicationLifetime > 0 &&
|
||||
defaultApplicationLifetime > maxApplicationLifetime) {
|
||||
throw new YarnRuntimeException(
|
||||
"Default lifetime" + defaultApplicationLifetime
|
||||
+ " can't exceed maximum lifetime " + maxApplicationLifetime);
|
||||
|
|
|
@ -5171,7 +5171,8 @@ public class TestCapacityScheduler extends CapacitySchedulerTestBase {
|
|||
Assert.assertEquals(100, cs.checkAndGetApplicationLifetime("default", 100));
|
||||
Assert.assertEquals(defaultLifetime,
|
||||
cs.checkAndGetApplicationLifetime("default", -1));
|
||||
Assert.assertEquals(0, cs.checkAndGetApplicationLifetime("default", 0));
|
||||
Assert.assertEquals(defaultLifetime,
|
||||
cs.checkAndGetApplicationLifetime("default", 0));
|
||||
Assert.assertEquals(maxLifetime,
|
||||
cs.getMaximumApplicationLifetime("default"));
|
||||
|
||||
|
@ -5191,8 +5192,10 @@ public class TestCapacityScheduler extends CapacitySchedulerTestBase {
|
|||
defaultLifetime = 0;
|
||||
cs = setUpCSQueue(maxLifetime, defaultLifetime);
|
||||
Assert.assertEquals(100, cs.checkAndGetApplicationLifetime("default", 100));
|
||||
Assert.assertEquals(-1, cs.checkAndGetApplicationLifetime("default", -1));
|
||||
Assert.assertEquals(0, cs.checkAndGetApplicationLifetime("default", 0));
|
||||
Assert.assertEquals(defaultLifetime,
|
||||
cs.checkAndGetApplicationLifetime("default", -1));
|
||||
Assert.assertEquals(defaultLifetime,
|
||||
cs.checkAndGetApplicationLifetime("default", 0));
|
||||
|
||||
maxLifetime = 10;
|
||||
defaultLifetime = -1;
|
||||
|
@ -5213,6 +5216,16 @@ public class TestCapacityScheduler extends CapacitySchedulerTestBase {
|
|||
Assert.assertTrue(
|
||||
ye.getMessage().contains("can't exceed maximum lifetime"));
|
||||
}
|
||||
|
||||
maxLifetime = -1;
|
||||
defaultLifetime = 10;
|
||||
cs = setUpCSQueue(maxLifetime, defaultLifetime);
|
||||
Assert.assertEquals(100,
|
||||
cs.checkAndGetApplicationLifetime("default", 100));
|
||||
Assert.assertEquals(defaultLifetime,
|
||||
cs.checkAndGetApplicationLifetime("default", -1));
|
||||
Assert.assertEquals(defaultLifetime,
|
||||
cs.checkAndGetApplicationLifetime("default", 0));
|
||||
}
|
||||
|
||||
private CapacityScheduler setUpCSQueue(long maxLifetime,
|
||||
|
|
Loading…
Reference in New Issue