YARN-9790. Failed to set default-application-lifetime if maximum-application-lifetime is less than or equal to zero. Contributed by kyungwan nam.
(cherry picked from commit d2d963f3d4
)
This commit is contained in:
parent
dcc16b07fa
commit
be412546be
|
@ -3188,7 +3188,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) {
|
||||
|
|
|
@ -263,7 +263,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);
|
||||
|
|
|
@ -4891,7 +4891,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"));
|
||||
|
||||
|
@ -4911,8 +4912,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;
|
||||
|
@ -4933,6 +4936,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