diff --git a/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager/src/test/java/org/apache/hadoop/yarn/server/resourcemanager/scheduler/capacity/conf/ConfigurationStoreBaseTest.java b/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager/src/test/java/org/apache/hadoop/yarn/server/resourcemanager/scheduler/capacity/conf/ConfigurationStoreBaseTest.java index 4b3153a0d5a..3a8c362812c 100644 --- a/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager/src/test/java/org/apache/hadoop/yarn/server/resourcemanager/scheduler/capacity/conf/ConfigurationStoreBaseTest.java +++ b/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager/src/test/java/org/apache/hadoop/yarn/server/resourcemanager/scheduler/capacity/conf/ConfigurationStoreBaseTest.java @@ -34,16 +34,13 @@ * Base class for {@link YarnConfigurationStore} implementations. */ public abstract class ConfigurationStoreBaseTest { + static final String TEST_USER = "testUser"; + YarnConfigurationStore confStore = createConfStore(); + Configuration conf; + Configuration schedConf; + RMContext rmContext; - protected YarnConfigurationStore confStore = createConfStore(); - - protected abstract YarnConfigurationStore createConfStore(); - - protected Configuration conf; - protected Configuration schedConf; - protected RMContext rmContext; - - protected static final String TEST_USER = "testUser"; + abstract YarnConfigurationStore createConfStore(); @Before public void setUp() throws Exception { @@ -59,20 +56,12 @@ public void testConfigurationUpdate() throws Exception { confStore.initialize(conf, schedConf, rmContext); assertEquals("val1", confStore.retrieve().get("key1")); - Map update1 = new HashMap<>(); - update1.put("keyUpdate1", "valUpdate1"); - YarnConfigurationStore.LogMutation mutation1 = - new YarnConfigurationStore.LogMutation(update1, TEST_USER); - confStore.logMutation(mutation1); - confStore.confirmMutation(mutation1, true); + confStore.confirmMutation(prepareLogMutation("keyUpdate1", "valUpdate1"), + true); assertEquals("valUpdate1", confStore.retrieve().get("keyUpdate1")); - Map update2 = new HashMap<>(); - update2.put("keyUpdate2", "valUpdate2"); - YarnConfigurationStore.LogMutation mutation2 = - new YarnConfigurationStore.LogMutation(update2, TEST_USER); - confStore.logMutation(mutation2); - confStore.confirmMutation(mutation2, false); + confStore.confirmMutation(prepareLogMutation("keyUpdate2", "valUpdate2"), + false); assertNull("Configuration should not be updated", confStore.retrieve().get("keyUpdate2")); confStore.close(); @@ -84,13 +73,20 @@ public void testNullConfigurationUpdate() throws Exception { confStore.initialize(conf, schedConf, rmContext); assertEquals("val", confStore.retrieve().get("key")); + confStore.confirmMutation(prepareLogMutation("key", null), true); + assertNull(confStore.retrieve().get("key")); + confStore.close(); + } + + YarnConfigurationStore.LogMutation prepareLogMutation(String key, + String value) + throws Exception { Map update = new HashMap<>(); - update.put("key", null); + update.put(key, value); YarnConfigurationStore.LogMutation mutation = new YarnConfigurationStore.LogMutation(update, TEST_USER); confStore.logMutation(mutation); - confStore.confirmMutation(mutation, true); - assertNull(confStore.retrieve().get("key")); - confStore.close(); + + return mutation; } } diff --git a/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager/src/test/java/org/apache/hadoop/yarn/server/resourcemanager/scheduler/capacity/conf/PersistentConfigurationStoreBaseTest.java b/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager/src/test/java/org/apache/hadoop/yarn/server/resourcemanager/scheduler/capacity/conf/PersistentConfigurationStoreBaseTest.java new file mode 100644 index 00000000000..1a472692747 --- /dev/null +++ b/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager/src/test/java/org/apache/hadoop/yarn/server/resourcemanager/scheduler/capacity/conf/PersistentConfigurationStoreBaseTest.java @@ -0,0 +1,127 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with this + * work for additional information regarding copyright ownership. The ASF + * licenses this file to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations under + * the License. + */ + +package org.apache.hadoop.yarn.server.resourcemanager.scheduler.capacity.conf; + +import org.apache.hadoop.yarn.conf.YarnConfiguration; +import org.apache.hadoop.yarn.server.records.Version; +import org.junit.Test; + +import java.util.LinkedList; +import java.util.function.Supplier; + +import static org.junit.Assert.assertEquals; +import static org.junit.Assert.assertNull; + +public abstract class PersistentConfigurationStoreBaseTest extends + ConfigurationStoreBaseTest { + + @Test + public void testGetConfigurationVersion() throws Exception { + confStore.initialize(conf, schedConf, rmContext); + long v1 = confStore.getConfigVersion(); + assertEquals(1, v1); + confStore.confirmMutation(prepareLogMutation("keyver", "valver"), true); + long v2 = confStore.getConfigVersion(); + assertEquals(2, v2); + confStore.close(); + } + + @Test + public void testPersistConfiguration() throws Exception { + schedConf.set("key", "val"); + confStore.initialize(conf, schedConf, rmContext); + assertEquals("val", confStore.retrieve().get("key")); + confStore.close(); + + // Create a new configuration store, and check for old configuration + confStore = createConfStore(); + schedConf.set("key", "badVal"); + // Should ignore passed-in scheduler configuration. + confStore.initialize(conf, schedConf, rmContext); + assertEquals("val", confStore.retrieve().get("key")); + confStore.close(); + } + + @Test + public void testPersistUpdatedConfiguration() throws Exception { + confStore.initialize(conf, schedConf, rmContext); + assertNull(confStore.retrieve().get("key")); + + confStore.confirmMutation(prepareLogMutation("key", "val"), true); + assertEquals("val", confStore.retrieve().get("key")); + confStore.close(); + + // Create a new configuration store, and check for updated configuration + confStore = createConfStore(); + schedConf.set("key", "badVal"); + // Should ignore passed-in scheduler configuration. + confStore.initialize(conf, schedConf, rmContext); + assertEquals("val", confStore.retrieve().get("key")); + confStore.close(); + } + + void testVersionHelper(Version expectedVersion) throws Exception { + confStore.initialize(conf, schedConf, rmContext); + assertNull(confStore.getConfStoreVersion()); + confStore.checkVersion(); + assertEquals(expectedVersion, + confStore.getConfStoreVersion()); + confStore.close(); + } + + void testMaxLogsHelper( + Supplier> logSupplier) + throws Exception { + conf.setLong(YarnConfiguration.RM_SCHEDCONF_MAX_LOGS, 2); + confStore.initialize(conf, schedConf, rmContext); + LinkedList logs = logSupplier.get(); + assertEquals(0, logs.size()); + + YarnConfigurationStore.LogMutation mutation = + prepareLogMutation("key1", "val1"); + logs = logSupplier.get(); + assertEquals(1, logs.size()); + assertEquals("val1", logs.get(0).getUpdates().get("key1")); + confStore.confirmMutation(mutation, true); + assertEquals(1, logs.size()); + assertEquals("val1", logs.get(0).getUpdates().get("key1")); + + mutation = prepareLogMutation("key2", "val2"); + logs = logSupplier.get(); + assertEquals(2, logs.size()); + assertEquals("val1", logs.get(0).getUpdates().get("key1")); + assertEquals("val2", logs.get(1).getUpdates().get("key2")); + confStore.confirmMutation(mutation, true); + assertEquals(2, logs.size()); + assertEquals("val1", logs.get(0).getUpdates().get("key1")); + assertEquals("val2", logs.get(1).getUpdates().get("key2")); + + // Next update should purge first update from logs. + mutation = prepareLogMutation("key3", "val3"); + logs = logSupplier.get(); + assertEquals(2, logs.size()); + assertEquals("val2", logs.get(0).getUpdates().get("key2")); + assertEquals("val3", logs.get(1).getUpdates().get("key3")); + confStore.confirmMutation(mutation, true); + assertEquals(2, logs.size()); + assertEquals("val2", logs.get(0).getUpdates().get("key2")); + assertEquals("val3", logs.get(1).getUpdates().get("key3")); + } + + +} diff --git a/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager/src/test/java/org/apache/hadoop/yarn/server/resourcemanager/scheduler/capacity/conf/TestFSSchedulerConfigurationStore.java b/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager/src/test/java/org/apache/hadoop/yarn/server/resourcemanager/scheduler/capacity/conf/TestFSSchedulerConfigurationStore.java index e4ca3d3ada7..54f29f208ea 100644 --- a/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager/src/test/java/org/apache/hadoop/yarn/server/resourcemanager/scheduler/capacity/conf/TestFSSchedulerConfigurationStore.java +++ b/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager/src/test/java/org/apache/hadoop/yarn/server/resourcemanager/scheduler/capacity/conf/TestFSSchedulerConfigurationStore.java @@ -32,19 +32,22 @@ import org.apache.hadoop.hdfs.MiniDFSCluster; import org.apache.hadoop.yarn.conf.YarnConfiguration; import org.apache.hadoop.yarn.server.resourcemanager.scheduler.capacity.conf.YarnConfigurationStore.LogMutation; +import org.hamcrest.CoreMatchers; import org.junit.After; import org.junit.Before; import org.junit.Test; import static org.junit.Assert.assertEquals; import static org.junit.Assert.fail; -import static org.junit.Assert.assertTrue; +import static org.junit.Assert.assertNull; +import static org.junit.Assert.assertThat; /** * Tests {@link FSSchedulerConfigurationStore}. */ public class TestFSSchedulerConfigurationStore { + private static final String TEST_USER = "test"; private FSSchedulerConfigurationStore configurationStore; private Configuration conf; private File testSchedulerConfigurationDir; @@ -90,35 +93,29 @@ public void confirmMutationWithValid() throws Exception { Configuration storeConf = configurationStore.retrieve(); compareConfig(conf, storeConf); - Map updates = new HashMap<>(); - updates.put("a", null); - updates.put("b", "bb"); - Configuration expectConfig = new Configuration(conf); expectConfig.unset("a"); expectConfig.set("b", "bb"); - LogMutation logMutation = new LogMutation(updates, "test"); - configurationStore.logMutation(logMutation); - configurationStore.confirmMutation(logMutation, true); + prepareParameterizedLogMutation(configurationStore, true, + "a", null, "b", "bb"); storeConf = configurationStore.retrieve(); - assertEquals(null, storeConf.get("a")); + assertNull(storeConf.get("a")); assertEquals("bb", storeConf.get("b")); assertEquals("c", storeConf.get("c")); compareConfig(expectConfig, storeConf); - updates.put("b", "bbb"); - configurationStore.logMutation(logMutation); - configurationStore.confirmMutation(logMutation, true); + prepareParameterizedLogMutation(configurationStore, true, + "a", null, "b", "bbb"); storeConf = configurationStore.retrieve(); - assertEquals(null, storeConf.get("a")); + assertNull(storeConf.get("a")); assertEquals("bbb", storeConf.get("b")); assertEquals("c", storeConf.get("c")); } @Test - public void confirmMutationWithInValid() throws Exception { + public void confirmMutationWithInvalid() throws Exception { conf.set("a", "a"); conf.set("b", "b"); conf.set("c", "c"); @@ -127,13 +124,8 @@ public void confirmMutationWithInValid() throws Exception { Configuration storeConf = configurationStore.retrieve(); compareConfig(conf, storeConf); - Map updates = new HashMap<>(); - updates.put("a", null); - updates.put("b", "bb"); - - LogMutation logMutation = new LogMutation(updates, "test"); - configurationStore.logMutation(logMutation); - configurationStore.confirmMutation(logMutation, false); + prepareParameterizedLogMutation(configurationStore, false, + "a", null, "b", "bb"); storeConf = configurationStore.retrieve(); compareConfig(conf, storeConf); @@ -142,7 +134,7 @@ public void confirmMutationWithInValid() throws Exception { @Test public void testFileSystemClose() throws Exception { MiniDFSCluster hdfsCluster = null; - FileSystem fs = null; + FileSystem fs; Path path = new Path("/tmp/confstore"); try { HdfsConfiguration hdfsConfig = new HdfsConfiguration(); @@ -164,11 +156,8 @@ public void testFileSystemClose() throws Exception { fs.close(); try { - Map updates = new HashMap<>(); - updates.put("testkey", "testvalue"); - LogMutation logMutation = new LogMutation(updates, "test"); - configStore.logMutation(logMutation); - configStore.confirmMutation(logMutation, true); + prepareParameterizedLogMutation(configStore, true, + "testkey", "testvalue"); } catch (IOException e) { if (e.getMessage().contains("Filesystem closed")) { fail("FSSchedulerConfigurationStore failed to handle " + @@ -178,13 +167,12 @@ public void testFileSystemClose() throws Exception { } } } finally { + assert hdfsCluster != null; fs = hdfsCluster.getFileSystem(); if (fs.exists(path)) { fs.delete(path, true); } - if (hdfsCluster != null) { - hdfsCluster.shutdown(); - } + hdfsCluster.shutdown(); } } @@ -197,15 +185,14 @@ public void testFormatConfiguration() throws Exception { Configuration storedConfig = configurationStore.retrieve(); assertEquals("a", storedConfig.get("a")); configurationStore.format(); - boolean exceptionCaught = false; try { - storedConfig = configurationStore.retrieve(); + configurationStore.retrieve(); + fail("Expected an IOException with message containing \"no capacity " + + "scheduler file in\" to be thrown"); } catch (IOException e) { - if (e.getMessage().contains("no capacity scheduler file in")) { - exceptionCaught = true; - } + assertThat(e.getMessage(), + CoreMatchers.containsString("no capacity scheduler file in")); } - assertTrue(exceptionCaught); } @Test @@ -243,4 +230,22 @@ private void compareConfig(Configuration schedulerConf, schedulerConf.get(entry.getKey())); } } + + private void prepareParameterizedLogMutation( + FSSchedulerConfigurationStore configStore, + boolean validityFlag, String... values) throws Exception { + Map updates = new HashMap<>(); + String key; + String value; + + for (int i = 1; i <= values.length; i += 2) { + key = values[i - 1]; + value = i == values.length ? null : values[i]; + updates.put(key, value); + } + + LogMutation logMutation = new LogMutation(updates, TEST_USER); + configStore.logMutation(logMutation); + configStore.confirmMutation(logMutation, validityFlag); + } } \ No newline at end of file diff --git a/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager/src/test/java/org/apache/hadoop/yarn/server/resourcemanager/scheduler/capacity/conf/TestLeveldbConfigurationStore.java b/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager/src/test/java/org/apache/hadoop/yarn/server/resourcemanager/scheduler/capacity/conf/TestLeveldbConfigurationStore.java index 785a910d781..0ae916e7b30 100644 --- a/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager/src/test/java/org/apache/hadoop/yarn/server/resourcemanager/scheduler/capacity/conf/TestLeveldbConfigurationStore.java +++ b/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager/src/test/java/org/apache/hadoop/yarn/server/resourcemanager/scheduler/capacity/conf/TestLeveldbConfigurationStore.java @@ -38,18 +38,20 @@ import java.io.File; import java.nio.charset.StandardCharsets; -import java.util.HashMap; import java.util.LinkedList; import java.util.Map; +import java.util.function.Supplier; import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertFalse; import static org.junit.Assert.assertNull; +import static org.junit.Assert.fail; /** * Tests {@link LeveldbConfigurationStore}. */ -public class TestLeveldbConfigurationStore extends ConfigurationStoreBaseTest { +public class TestLeveldbConfigurationStore extends + PersistentConfigurationStoreBaseTest { public static final Logger LOG = LoggerFactory.getLogger(TestLeveldbConfigurationStore.class); @@ -58,8 +60,6 @@ System.getProperty("java.io.tmpdir")), TestLeveldbConfigurationStore.class.getName()); - private ResourceManager rm; - @Before public void setUp() throws Exception { super.setUp(); @@ -70,13 +70,8 @@ public void setUp() throws Exception { } @Test - public void testVersioning() throws Exception { - confStore.initialize(conf, schedConf, rmContext); - assertNull(confStore.getConfStoreVersion()); - confStore.checkVersion(); - assertEquals(LeveldbConfigurationStore.CURRENT_VERSION_INFO, - confStore.getConfStoreVersion()); - confStore.close(); + public void testVersion() throws Exception { + testVersionHelper(LeveldbConfigurationStore.CURRENT_VERSION_INFO); } @Test(expected = YarnConfStoreVersionIncompatibleException.class) @@ -96,55 +91,12 @@ public void testIncompatibleVersion() throws Exception { } } - @Test - public void testPersistConfiguration() throws Exception { - schedConf.set("key", "val"); - confStore.initialize(conf, schedConf, rmContext); - assertEquals("val", confStore.retrieve().get("key")); - confStore.close(); - - // Create a new configuration store, and check for old configuration - confStore = createConfStore(); - schedConf.set("key", "badVal"); - // Should ignore passed-in scheduler configuration. - confStore.initialize(conf, schedConf, rmContext); - assertEquals("val", confStore.retrieve().get("key")); - confStore.close(); - } - - @Test - public void testPersistUpdatedConfiguration() throws Exception { - confStore.initialize(conf, schedConf, rmContext); - assertNull(confStore.retrieve().get("key")); - - Map update = new HashMap<>(); - update.put("key", "val"); - YarnConfigurationStore.LogMutation mutation = - new YarnConfigurationStore.LogMutation(update, TEST_USER); - confStore.logMutation(mutation); - confStore.confirmMutation(mutation, true); - assertEquals("val", confStore.retrieve().get("key")); - confStore.close(); - - // Create a new configuration store, and check for updated configuration - confStore = createConfStore(); - schedConf.set("key", "badVal"); - // Should ignore passed-in scheduler configuration. - confStore.initialize(conf, schedConf, rmContext); - assertEquals("val", confStore.retrieve().get("key")); - confStore.close(); - } - @Test public void testDisableAuditLogs() throws Exception { conf.setLong(YarnConfiguration.RM_SCHEDCONF_MAX_LOGS, 0); confStore.initialize(conf, schedConf, rmContext); - Map update = new HashMap<>(); - update.put("key1", "val1"); - YarnConfigurationStore.LogMutation mutation = - new YarnConfigurationStore.LogMutation(update, TEST_USER); - confStore.logMutation(mutation); + prepareLogMutation("key1", "val1"); boolean logKeyPresent = false; DB db = ((LeveldbConfigurationStore) confStore).getDB(); @@ -164,50 +116,15 @@ public void testDisableAuditLogs() throws Exception { @Test public void testMaxLogs() throws Exception { - conf.setLong(YarnConfiguration.RM_SCHEDCONF_MAX_LOGS, 2); - confStore.initialize(conf, schedConf, rmContext); - LinkedList logs = - ((LeveldbConfigurationStore) confStore).getLogs(); - assertEquals(0, logs.size()); - - Map update1 = new HashMap<>(); - update1.put("key1", "val1"); - YarnConfigurationStore.LogMutation mutation = - new YarnConfigurationStore.LogMutation(update1, TEST_USER); - confStore.logMutation(mutation); - logs = ((LeveldbConfigurationStore) confStore).getLogs(); - assertEquals(1, logs.size()); - assertEquals("val1", logs.get(0).getUpdates().get("key1")); - confStore.confirmMutation(mutation, true); - assertEquals(1, logs.size()); - assertEquals("val1", logs.get(0).getUpdates().get("key1")); - - Map update2 = new HashMap<>(); - update2.put("key2", "val2"); - mutation = new YarnConfigurationStore.LogMutation(update2, TEST_USER); - confStore.logMutation(mutation); - logs = ((LeveldbConfigurationStore) confStore).getLogs(); - assertEquals(2, logs.size()); - assertEquals("val1", logs.get(0).getUpdates().get("key1")); - assertEquals("val2", logs.get(1).getUpdates().get("key2")); - confStore.confirmMutation(mutation, true); - assertEquals(2, logs.size()); - assertEquals("val1", logs.get(0).getUpdates().get("key1")); - assertEquals("val2", logs.get(1).getUpdates().get("key2")); - - // Next update should purge first update from logs. - Map update3 = new HashMap<>(); - update3.put("key3", "val3"); - mutation = new YarnConfigurationStore.LogMutation(update3, TEST_USER); - confStore.logMutation(mutation); - logs = ((LeveldbConfigurationStore) confStore).getLogs(); - assertEquals(2, logs.size()); - assertEquals("val2", logs.get(0).getUpdates().get("key2")); - assertEquals("val3", logs.get(1).getUpdates().get("key3")); - confStore.confirmMutation(mutation, true); - assertEquals(2, logs.size()); - assertEquals("val2", logs.get(0).getUpdates().get("key2")); - assertEquals("val3", logs.get(1).getUpdates().get("key3")); + Supplier> logSupplier = () -> { + try { + return ((LeveldbConfigurationStore) confStore).getLogs(); + } catch (Exception e) { + fail("getLogs should not throw exception"); + return new LinkedList<>(); + } + }; + testMaxLogsHelper(logSupplier); confStore.close(); } @@ -240,7 +157,7 @@ public void testRestartReadsFromUpdatedStore() throws Exception { .getConfStore().retrieve().get("key")); // Next update is not persisted, it should not be recovered schedConfUpdateInfo.getGlobalParams().put("key", "badVal"); - log = confProvider.logAndApplyMutation(user, schedConfUpdateInfo); + confProvider.logAndApplyMutation(user, schedConfUpdateInfo); rm1.close(); // Start RM2 and verifies it starts with updated configuration diff --git a/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager/src/test/java/org/apache/hadoop/yarn/server/resourcemanager/scheduler/capacity/conf/TestZKConfigurationStore.java b/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager/src/test/java/org/apache/hadoop/yarn/server/resourcemanager/scheduler/capacity/conf/TestZKConfigurationStore.java index 6715a0508fa..468399524f0 100644 --- a/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager/src/test/java/org/apache/hadoop/yarn/server/resourcemanager/scheduler/capacity/conf/TestZKConfigurationStore.java +++ b/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager/src/test/java/org/apache/hadoop/yarn/server/resourcemanager/scheduler/capacity/conf/TestZKConfigurationStore.java @@ -18,13 +18,6 @@ package org.apache.hadoop.yarn.server.resourcemanager.scheduler.capacity.conf; -import org.apache.hadoop.util.curator.ZKCuratorManager; -import org.apache.hadoop.yarn.server.records.Version; -import org.apache.hadoop.yarn.server.records.impl.pb.VersionPBImpl; -import org.apache.zookeeper.CreateMode; -import org.apache.zookeeper.data.ACL; -import org.slf4j.Logger; -import org.slf4j.LoggerFactory; import org.apache.curator.framework.CuratorFramework; import org.apache.curator.framework.CuratorFrameworkFactory; import org.apache.curator.retry.RetryNTimes; @@ -34,8 +27,11 @@ import org.apache.hadoop.ha.HAServiceProtocol; import org.apache.hadoop.security.UserGroupInformation; import org.apache.hadoop.service.Service; +import org.apache.hadoop.util.curator.ZKCuratorManager; import org.apache.hadoop.yarn.conf.HAUtil; import org.apache.hadoop.yarn.conf.YarnConfiguration; +import org.apache.hadoop.yarn.server.records.Version; +import org.apache.hadoop.yarn.server.records.impl.pb.VersionPBImpl; import org.apache.hadoop.yarn.server.resourcemanager.MockRM; import org.apache.hadoop.yarn.server.resourcemanager.ResourceManager; import org.apache.hadoop.yarn.server.resourcemanager.recovery.ZKRMStateStore; @@ -45,9 +41,13 @@ import org.apache.hadoop.yarn.server.resourcemanager.scheduler.capacity.conf.YarnConfigurationStore.LogMutation; import org.apache.hadoop.yarn.webapp.dao.QueueConfigInfo; import org.apache.hadoop.yarn.webapp.dao.SchedConfUpdateInfo; +import org.apache.zookeeper.CreateMode; +import org.apache.zookeeper.data.ACL; import org.junit.After; import org.junit.Before; import org.junit.Test; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; import java.io.IOException; import java.util.Arrays; @@ -55,16 +55,18 @@ import java.util.LinkedList; import java.util.List; import java.util.Map; +import java.util.function.Supplier; import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertNull; import static org.junit.Assert.assertTrue; +import static org.junit.Assert.fail; /** * Tests {@link ZKConfigurationStore}. */ -public class TestZKConfigurationStore extends ConfigurationStoreBaseTest { - +public class TestZKConfigurationStore extends + PersistentConfigurationStoreBaseTest { public static final Logger LOG = LoggerFactory.getLogger(TestZKConfigurationStore.class); @@ -90,6 +92,7 @@ public static CuratorFramework setupCuratorFramework( } @Before + @Override public void setUp() throws Exception { super.setUp(); curatorTestingServer = setupCuratorServer(); @@ -110,12 +113,8 @@ public void cleanup() throws IOException { } @Test - public void testVersioning() throws Exception { - confStore.initialize(conf, schedConf, rmContext); - assertNull(confStore.getConfStoreVersion()); - confStore.checkVersion(); - assertEquals(ZKConfigurationStore.CURRENT_VERSION_INFO, - confStore.getConfStoreVersion()); + public void testVersion() throws Exception { + testVersionHelper(ZKConfigurationStore.CURRENT_VERSION_INFO); } @Test(expected = YarnConfStoreVersionIncompatibleException.class) @@ -141,23 +140,6 @@ public void testIncompatibleVersion() throws Exception { confStore.checkVersion(); } - @Test - public void testPersistConfiguration() throws Exception { - schedConf.set("key", "val"); - confStore.initialize(conf, schedConf, rmContext); - assertEquals("val", confStore.retrieve().get("key")); - - assertNull(confStore.retrieve().get(YarnConfiguration.RM_HOSTNAME)); - - // Create a new configuration store, and check for old configuration - confStore = createConfStore(); - schedConf.set("key", "badVal"); - // Should ignore passed-in scheduler configuration. - confStore.initialize(conf, schedConf, rmContext); - assertEquals("val", confStore.retrieve().get("key")); - } - - @Test public void testFormatConfiguration() throws Exception { schedConf.set("key", "val"); @@ -167,90 +149,6 @@ public void testFormatConfiguration() throws Exception { assertNull(confStore.retrieve()); } - @Test - public void testGetConfigurationVersion() throws Exception { - confStore.initialize(conf, schedConf, rmContext); - long v1 = confStore.getConfigVersion(); - assertEquals(1, v1); - Map update = new HashMap<>(); - update.put("keyver", "valver"); - YarnConfigurationStore.LogMutation mutation = - new YarnConfigurationStore.LogMutation(update, TEST_USER); - confStore.logMutation(mutation); - confStore.confirmMutation(mutation, true); - long v2 = confStore.getConfigVersion(); - assertEquals(2, v2); - } - - @Test - public void testPersistUpdatedConfiguration() throws Exception { - confStore.initialize(conf, schedConf, rmContext); - assertNull(confStore.retrieve().get("key")); - - Map update = new HashMap<>(); - update.put("key", "val"); - LogMutation mutation = new LogMutation(update, TEST_USER); - confStore.logMutation(mutation); - confStore.confirmMutation(mutation, true); - assertEquals("val", confStore.retrieve().get("key")); - - // Create a new configuration store, and check for updated configuration - confStore = createConfStore(); - schedConf.set("key", "badVal"); - // Should ignore passed-in scheduler configuration. - confStore.initialize(conf, schedConf, rmContext); - assertEquals("val", confStore.retrieve().get("key")); - } - - @Test - public void testMaxLogs() throws Exception { - conf.setLong(YarnConfiguration.RM_SCHEDCONF_MAX_LOGS, 2); - confStore.initialize(conf, schedConf, rmContext); - LinkedList logs = - ((ZKConfigurationStore) confStore).getLogs(); - assertEquals(0, logs.size()); - - Map update1 = new HashMap<>(); - update1.put("key1", "val1"); - YarnConfigurationStore.LogMutation mutation = - new YarnConfigurationStore.LogMutation(update1, TEST_USER); - confStore.logMutation(mutation); - logs = ((ZKConfigurationStore) confStore).getLogs(); - assertEquals(1, logs.size()); - assertEquals("val1", logs.get(0).getUpdates().get("key1")); - confStore.confirmMutation(mutation, true); - assertEquals(1, logs.size()); - assertEquals("val1", logs.get(0).getUpdates().get("key1")); - - Map update2 = new HashMap<>(); - update2.put("key2", "val2"); - mutation = new YarnConfigurationStore.LogMutation(update2, TEST_USER); - confStore.logMutation(mutation); - logs = ((ZKConfigurationStore) confStore).getLogs(); - assertEquals(2, logs.size()); - assertEquals("val1", logs.get(0).getUpdates().get("key1")); - assertEquals("val2", logs.get(1).getUpdates().get("key2")); - confStore.confirmMutation(mutation, true); - assertEquals(2, logs.size()); - assertEquals("val1", logs.get(0).getUpdates().get("key1")); - assertEquals("val2", logs.get(1).getUpdates().get("key2")); - - // Next update should purge first update from logs. - Map update3 = new HashMap<>(); - update3.put("key3", "val3"); - mutation = new YarnConfigurationStore.LogMutation(update3, TEST_USER); - confStore.logMutation(mutation); - logs = ((ZKConfigurationStore) confStore).getLogs(); - assertEquals(2, logs.size()); - assertEquals("val2", logs.get(0).getUpdates().get("key2")); - assertEquals("val3", logs.get(1).getUpdates().get("key3")); - confStore.confirmMutation(mutation, true); - assertEquals(2, logs.size()); - assertEquals("val2", logs.get(0).getUpdates().get("key2")); - assertEquals("val3", logs.get(1).getUpdates().get("key3")); - } - - @Test public void testDisableAuditLogs() throws Exception { conf.setLong(YarnConfiguration.RM_SCHEDCONF_MAX_LOGS, 0); @@ -262,16 +160,25 @@ public void testDisableAuditLogs() throws Exception { byte[] data = null; ((ZKConfigurationStore) confStore).zkManager.setData(logsPath, data, -1); - Map update = new HashMap<>(); - update.put("key1", "val1"); - YarnConfigurationStore.LogMutation mutation = - new YarnConfigurationStore.LogMutation(update, TEST_USER); - confStore.logMutation(mutation); + prepareLogMutation("key1", "val1"); data = ((ZKConfigurationStore) confStore).zkManager.getData(logsPath); assertNull("Failed to Disable Audit Logs", data); } + @Test + public void testMaxLogs() throws Exception { + Supplier> logSupplier = () -> { + try { + return ((ZKConfigurationStore) confStore).getLogs(); + } catch (Exception e) { + fail("getLogs should not throw an Exception"); + return new LinkedList<>(); + } + }; + testMaxLogsHelper(logSupplier); + } + public Configuration createRMHAConf(String rmIds, String rmId, int adminPort) { Configuration conf = new YarnConfiguration();