YARN-9997. Code cleanup in ZKConfigurationStore. Contributed by Andras Gyori
This commit is contained in:
parent
38d87883b6
commit
5ead9c15ca
|
@ -55,8 +55,6 @@ public class ZKConfigurationStore extends YarnConfigurationStore {
|
|||
.newInstance(0, 1);
|
||||
private Configuration conf;
|
||||
|
||||
private String znodeParentPath;
|
||||
|
||||
private static final String ZK_VERSION_PATH = "VERSION";
|
||||
private static final String LOGS_PATH = "LOGS";
|
||||
private static final String CONF_STORE_PATH = "CONF_STORE";
|
||||
|
@ -69,19 +67,20 @@ public class ZKConfigurationStore extends YarnConfigurationStore {
|
|||
private String fencingNodePath;
|
||||
private String confVersionPath;
|
||||
|
||||
@VisibleForTesting
|
||||
protected ZKCuratorManager zkManager;
|
||||
private ZKCuratorManager zkManager;
|
||||
private List<ACL> zkAcl;
|
||||
|
||||
@Override
|
||||
public void initialize(Configuration config, Configuration schedConf,
|
||||
RMContext rmContext) throws Exception {
|
||||
this.conf = config;
|
||||
|
||||
String znodeParentPath = conf.get(
|
||||
YarnConfiguration.RM_SCHEDCONF_STORE_ZK_PARENT_PATH,
|
||||
YarnConfiguration.DEFAULT_RM_SCHEDCONF_STORE_ZK_PARENT_PATH);
|
||||
|
||||
this.maxLogs = conf.getLong(YarnConfiguration.RM_SCHEDCONF_MAX_LOGS,
|
||||
YarnConfiguration.DEFAULT_RM_SCHEDCONF_ZK_MAX_LOGS);
|
||||
this.znodeParentPath =
|
||||
conf.get(YarnConfiguration.RM_SCHEDCONF_STORE_ZK_PARENT_PATH,
|
||||
YarnConfiguration.DEFAULT_RM_SCHEDCONF_STORE_ZK_PARENT_PATH);
|
||||
this.zkManager =
|
||||
rmContext.getResourceManager().createAndStartZKManager(conf);
|
||||
this.zkAcl = ZKCuratorManager.getZKAcls(conf);
|
||||
|
@ -95,37 +94,31 @@ public class ZKConfigurationStore extends YarnConfigurationStore {
|
|||
zkManager.createRootDirRecursively(znodeParentPath, zkAcl);
|
||||
zkManager.delete(fencingNodePath);
|
||||
|
||||
if (!zkManager.exists(logsPath)) {
|
||||
zkManager.create(logsPath);
|
||||
zkManager.setData(logsPath,
|
||||
serializeObject(new LinkedList<LogMutation>()), -1);
|
||||
if (createNewZkPath(logsPath)) {
|
||||
setZkData(logsPath, new LinkedList<LogMutation>());
|
||||
}
|
||||
|
||||
if (!zkManager.exists(confVersionPath)) {
|
||||
zkManager.create(confVersionPath);
|
||||
zkManager.setData(confVersionPath, String.valueOf(0), -1);
|
||||
if (createNewZkPath(confVersionPath)) {
|
||||
setZkData(confVersionPath, String.valueOf(0));
|
||||
}
|
||||
|
||||
if (!zkManager.exists(confStorePath)) {
|
||||
zkManager.create(confStorePath);
|
||||
if (createNewZkPath(confStorePath)) {
|
||||
HashMap<String, String> mapSchedConf = new HashMap<>();
|
||||
for (Map.Entry<String, String> entry : schedConf) {
|
||||
mapSchedConf.put(entry.getKey(), entry.getValue());
|
||||
}
|
||||
zkManager.setData(confStorePath, serializeObject(mapSchedConf), -1);
|
||||
setZkData(confStorePath, mapSchedConf);
|
||||
long configVersion = getConfigVersion() + 1L;
|
||||
zkManager.setData(confVersionPath, String.valueOf(configVersion), -1);
|
||||
setZkData(confVersionPath, String.valueOf(configVersion));
|
||||
}
|
||||
}
|
||||
|
||||
@VisibleForTesting
|
||||
@Override
|
||||
protected LinkedList<LogMutation> getLogs() throws Exception {
|
||||
return (LinkedList<LogMutation>)
|
||||
deserializeObject(zkManager.getData(logsPath));
|
||||
return unsafeCast(deserializeObject(getZkData(logsPath)));
|
||||
}
|
||||
|
||||
// TODO: following version-related code is taken from ZKRMStateStore
|
||||
@Override
|
||||
public Version getCurrentVersion() {
|
||||
return CURRENT_VERSION_INFO;
|
||||
|
@ -134,7 +127,7 @@ public class ZKConfigurationStore extends YarnConfigurationStore {
|
|||
@Override
|
||||
public Version getConfStoreVersion() throws Exception {
|
||||
if (zkManager.exists(zkVersionPath)) {
|
||||
byte[] data = zkManager.getData(zkVersionPath);
|
||||
byte[] data = getZkData(zkVersionPath);
|
||||
return new VersionPBImpl(YarnServerCommonProtos.VersionProto
|
||||
.parseFrom(data));
|
||||
}
|
||||
|
@ -153,27 +146,25 @@ public class ZKConfigurationStore extends YarnConfigurationStore {
|
|||
((VersionPBImpl) CURRENT_VERSION_INFO).getProto().toByteArray();
|
||||
|
||||
if (zkManager.exists(zkVersionPath)) {
|
||||
zkManager.safeSetData(zkVersionPath, data, -1, zkAcl, fencingNodePath);
|
||||
safeSetZkData(zkVersionPath, data);
|
||||
} else {
|
||||
zkManager.safeCreate(zkVersionPath, data, zkAcl, CreateMode.PERSISTENT,
|
||||
zkAcl, fencingNodePath);
|
||||
safeCreateZkData(zkVersionPath, data);
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public void logMutation(LogMutation logMutation) throws Exception {
|
||||
if (maxLogs > 0) {
|
||||
byte[] storedLogs = zkManager.getData(logsPath);
|
||||
byte[] storedLogs = getZkData(logsPath);
|
||||
LinkedList<LogMutation> logs = new LinkedList<>();
|
||||
if (storedLogs != null) {
|
||||
logs = (LinkedList<LogMutation>) deserializeObject(storedLogs);
|
||||
logs = unsafeCast(deserializeObject(storedLogs));
|
||||
}
|
||||
logs.add(logMutation);
|
||||
if (logs.size() > maxLogs) {
|
||||
logs.remove(logs.removeFirst());
|
||||
}
|
||||
zkManager.safeSetData(logsPath, serializeObject(logs), -1, zkAcl,
|
||||
fencingNodePath);
|
||||
safeSetZkData(logsPath, logs);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -194,10 +185,9 @@ public class ZKConfigurationStore extends YarnConfigurationStore {
|
|||
mapConf.put(confChange.getKey(), confChange.getValue());
|
||||
}
|
||||
}
|
||||
zkManager.safeSetData(confStorePath, serializeObject(mapConf), -1,
|
||||
zkAcl, fencingNodePath);
|
||||
safeSetZkData(confStorePath, mapConf);
|
||||
long configVersion = getConfigVersion() + 1L;
|
||||
zkManager.setData(confVersionPath, String.valueOf(configVersion), -1);
|
||||
setZkData(confVersionPath, String.valueOf(configVersion));
|
||||
|
||||
}
|
||||
}
|
||||
|
@ -206,14 +196,14 @@ public class ZKConfigurationStore extends YarnConfigurationStore {
|
|||
public synchronized Configuration retrieve() {
|
||||
byte[] serializedSchedConf;
|
||||
try {
|
||||
serializedSchedConf = zkManager.getData(confStorePath);
|
||||
serializedSchedConf = getZkData(confStorePath);
|
||||
} catch (Exception e) {
|
||||
LOG.error("Failed to retrieve configuration from zookeeper store", e);
|
||||
return null;
|
||||
}
|
||||
try {
|
||||
Map<String, String> map =
|
||||
(HashMap<String, String>) deserializeObject(serializedSchedConf);
|
||||
unsafeCast(deserializeObject(serializedSchedConf));
|
||||
Configuration c = new Configuration(false);
|
||||
for (Map.Entry<String, String> e : map.entrySet()) {
|
||||
c.set(e.getKey(), e.getValue());
|
||||
|
@ -228,7 +218,14 @@ public class ZKConfigurationStore extends YarnConfigurationStore {
|
|||
|
||||
@Override
|
||||
public long getConfigVersion() throws Exception {
|
||||
return Long.parseLong(zkManager.getStringData(confVersionPath));
|
||||
String version = zkManager.getStringData(confVersionPath);
|
||||
if (version == null) {
|
||||
throw new IllegalStateException("Config version can not be properly " +
|
||||
"serialized. Check Zookeeper config version path to locate " +
|
||||
"the error!");
|
||||
}
|
||||
|
||||
return Long.parseLong(version);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -236,6 +233,55 @@ public class ZKConfigurationStore extends YarnConfigurationStore {
|
|||
return null; // unimplemented
|
||||
}
|
||||
|
||||
/**
|
||||
* Creates a new path in Zookeeper only, if it does not already exist.
|
||||
*
|
||||
* @param path Value of the Zookeeper path
|
||||
* @return <code>true</code>if the creation executed; <code>false</code>
|
||||
* otherwise.
|
||||
* @throws Exception
|
||||
*/
|
||||
private boolean createNewZkPath(String path) throws Exception {
|
||||
if (!zkManager.exists(path)) {
|
||||
zkManager.create(path);
|
||||
return true;
|
||||
} else {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
@VisibleForTesting
|
||||
protected byte[] getZkData(String path) throws Exception {
|
||||
return zkManager.getData(path);
|
||||
}
|
||||
|
||||
@VisibleForTesting
|
||||
protected void setZkData(String path, byte[] data) throws Exception {
|
||||
zkManager.setData(path, data, -1);
|
||||
}
|
||||
|
||||
private void setZkData(String path, Object data) throws Exception {
|
||||
setZkData(path, serializeObject(data));
|
||||
}
|
||||
|
||||
private void setZkData(String path, String data) throws Exception {
|
||||
zkManager.setData(path, data, -1);
|
||||
}
|
||||
|
||||
private void safeSetZkData(String path, byte[] data) throws Exception {
|
||||
zkManager.safeSetData(path, data, -1, zkAcl, fencingNodePath);
|
||||
}
|
||||
|
||||
private void safeSetZkData(String path, Object data) throws Exception {
|
||||
safeSetZkData(path, serializeObject(data));
|
||||
}
|
||||
|
||||
@VisibleForTesting
|
||||
protected void safeCreateZkData(String path, byte[] data) throws Exception {
|
||||
zkManager.safeCreate(path, data, zkAcl, CreateMode.PERSISTENT,
|
||||
zkAcl, fencingNodePath);
|
||||
}
|
||||
|
||||
private static String getNodePath(String root, String nodeName) {
|
||||
return ZKCuratorManager.getNodePath(root, nodeName);
|
||||
}
|
||||
|
@ -256,4 +302,18 @@ public class ZKConfigurationStore extends YarnConfigurationStore {
|
|||
return ois.readObject();
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Casts an object of type Object to type T. It is essential to emphasize,
|
||||
* that it is an unsafe operation.
|
||||
*
|
||||
* @param o Object to be cast from
|
||||
* @param <T> Type to cast to
|
||||
* @return casted object of type T
|
||||
* @throws ClassCastException
|
||||
*/
|
||||
@SuppressWarnings("unchecked")
|
||||
private static <T> T unsafeCast(Object o) throws ClassCastException {
|
||||
return (T)o;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -41,8 +41,6 @@ import org.apache.hadoop.yarn.server.resourcemanager.scheduler.capacity.Capacity
|
|||
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;
|
||||
|
@ -50,9 +48,10 @@ import org.slf4j.Logger;
|
|||
import org.slf4j.LoggerFactory;
|
||||
|
||||
import java.io.IOException;
|
||||
import java.io.ByteArrayOutputStream;
|
||||
import java.io.ObjectOutputStream;
|
||||
import java.util.Arrays;
|
||||
import java.util.HashMap;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
import static org.junit.Assert.assertEquals;
|
||||
|
@ -114,18 +113,11 @@ public class TestZKConfigurationStore extends
|
|||
confStore.initialize(conf, schedConf, rmContext);
|
||||
|
||||
Version otherVersion = Version.newInstance(1, 1);
|
||||
String znodeParentPath = conf.get(YarnConfiguration.
|
||||
RM_SCHEDCONF_STORE_ZK_PARENT_PATH,
|
||||
YarnConfiguration.DEFAULT_RM_SCHEDCONF_STORE_ZK_PARENT_PATH);
|
||||
String zkVersionPath = ZKCuratorManager.getNodePath(znodeParentPath,
|
||||
"VERSION");
|
||||
String fencingNodePath = ZKCuratorManager.getNodePath(znodeParentPath,
|
||||
"FENCING");
|
||||
String zkVersionPath = getZkPath("VERSION");
|
||||
byte[] versionData =
|
||||
((VersionPBImpl) otherVersion).getProto().toByteArray();
|
||||
List<ACL> zkAcl = ZKCuratorManager.getZKAcls(conf);
|
||||
((ZKConfigurationStore) confStore).zkManager.safeCreate(zkVersionPath,
|
||||
versionData, zkAcl, CreateMode.PERSISTENT, zkAcl, fencingNodePath);
|
||||
((ZKConfigurationStore) confStore).safeCreateZkData(zkVersionPath,
|
||||
versionData);
|
||||
|
||||
assertEquals("The configuration store should have stored the new" +
|
||||
"version.", otherVersion, confStore.getConfStoreVersion());
|
||||
|
@ -141,20 +133,58 @@ public class TestZKConfigurationStore extends
|
|||
assertNull(confStore.retrieve());
|
||||
}
|
||||
|
||||
@Test(expected = IllegalStateException.class)
|
||||
public void testGetConfigurationVersionOnSerializedNullData()
|
||||
throws Exception {
|
||||
confStore.initialize(conf, schedConf, rmContext);
|
||||
String confVersionPath = getZkPath("CONF_VERSION");
|
||||
((ZKConfigurationStore) confStore).setZkData(confVersionPath, null);
|
||||
confStore.getConfigVersion();
|
||||
}
|
||||
|
||||
/**
|
||||
* The correct behavior of logMutation should be, that even though an
|
||||
* Exception is thrown during serialization, the log data must not be
|
||||
* overridden.
|
||||
*
|
||||
* @throws Exception
|
||||
*/
|
||||
@Test(expected = ClassCastException.class)
|
||||
public void testLogMutationAfterSerializationError() throws Exception {
|
||||
byte[] data = null;
|
||||
String logs = "NOT_LINKED_LIST";
|
||||
confStore.initialize(conf, schedConf, rmContext);
|
||||
|
||||
try (ByteArrayOutputStream baos = new ByteArrayOutputStream();
|
||||
ObjectOutputStream oos = new ObjectOutputStream(baos)) {
|
||||
oos.writeObject(logs);
|
||||
oos.flush();
|
||||
baos.flush();
|
||||
data = baos.toByteArray();
|
||||
}
|
||||
|
||||
String logsPath = getZkPath("LOGS");
|
||||
((ZKConfigurationStore)confStore).setZkData(logsPath, data);
|
||||
|
||||
Map<String, String> update = new HashMap<>();
|
||||
update.put("valid_key", "valid_value");
|
||||
|
||||
confStore.logMutation(new LogMutation(update, TEST_USER));
|
||||
|
||||
assertEquals(data, ((ZKConfigurationStore)confStore).getZkData(logsPath));
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testDisableAuditLogs() throws Exception {
|
||||
conf.setLong(YarnConfiguration.RM_SCHEDCONF_MAX_LOGS, 0);
|
||||
confStore.initialize(conf, schedConf, rmContext);
|
||||
String znodeParentPath = conf.get(YarnConfiguration.
|
||||
RM_SCHEDCONF_STORE_ZK_PARENT_PATH,
|
||||
YarnConfiguration.DEFAULT_RM_SCHEDCONF_STORE_ZK_PARENT_PATH);
|
||||
String logsPath = ZKCuratorManager.getNodePath(znodeParentPath, "LOGS");
|
||||
String logsPath = getZkPath("LOGS");
|
||||
byte[] data = null;
|
||||
((ZKConfigurationStore) confStore).zkManager.setData(logsPath, data, -1);
|
||||
((ZKConfigurationStore) confStore).setZkData(logsPath, data);
|
||||
|
||||
prepareLogMutation("key1", "val1");
|
||||
|
||||
data = ((ZKConfigurationStore) confStore).zkManager.getData(logsPath);
|
||||
data = ((ZKConfigurationStore) confStore).getZkData(logsPath);
|
||||
assertNull("Failed to Disable Audit Logs", data);
|
||||
}
|
||||
|
||||
|
@ -376,6 +406,13 @@ public class TestZKConfigurationStore extends
|
|||
return new ZKConfigurationStore();
|
||||
}
|
||||
|
||||
private String getZkPath(String nodeName) {
|
||||
String znodeParentPath = conf.get(YarnConfiguration.
|
||||
RM_SCHEDCONF_STORE_ZK_PARENT_PATH,
|
||||
YarnConfiguration.DEFAULT_RM_SCHEDCONF_STORE_ZK_PARENT_PATH);
|
||||
return ZKCuratorManager.getNodePath(znodeParentPath, nodeName);
|
||||
}
|
||||
|
||||
@Override
|
||||
Version getVersion() {
|
||||
return ZKConfigurationStore.CURRENT_VERSION_INFO;
|
||||
|
|
Loading…
Reference in New Issue