Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -196,9 +196,9 @@ public static String getScmServiceId(ConfigurationSource conf) {
public static OzoneConfiguration removeSelfId(
OzoneConfiguration configuration, String selfId) {
final OzoneConfiguration conf = new OzoneConfiguration(configuration);
String scmNodes = conf.get(ConfUtils
.addKeySuffixes(ScmConfigKeys.OZONE_SCM_NODES_KEY,
getScmServiceId(conf)));
String scmNodesKey = ConfUtils.addKeySuffixes(
ScmConfigKeys.OZONE_SCM_NODES_KEY, getScmServiceId(conf));
String scmNodes = conf.get(scmNodesKey);
if (scmNodes != null) {
String[] parts = scmNodes.split(",");
List<String> partsLeft = new ArrayList<>();
Expand All @@ -207,7 +207,7 @@ public static OzoneConfiguration removeSelfId(
partsLeft.add(part);
}
}
conf.set(ScmConfigKeys.OZONE_SCM_NODES_KEY, String.join(",", partsLeft));
conf.set(scmNodesKey, String.join(",", partsLeft));
}
return conf;
}
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
/*
* 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
* <p>
* http://www.apache.org/licenses/LICENSE-2.0
* <p>
* 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.hdds.scm;

import org.apache.hadoop.hdds.conf.OzoneConfiguration;
import org.apache.hadoop.hdds.scm.ha.SCMHAUtils;
import org.junit.jupiter.api.Test;

import java.util.Collection;

import static org.apache.hadoop.hdds.scm.ScmConfigKeys.OZONE_SCM_NODES_KEY;
import static org.apache.hadoop.hdds.scm.ScmConfigKeys.OZONE_SCM_NODE_ID_KEY;
import static org.apache.hadoop.hdds.scm.ScmConfigKeys.OZONE_SCM_SERVICE_IDS_KEY;
import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.junit.jupiter.api.Assertions.assertFalse;

/**
* Tests for {@code SCMHAUtils}.
*/
class TestSCMHAUtils {

@Test
void testRemoveSelfId() {
String service = "mySCM";
String selfId = "scm3";

OzoneConfiguration input = new OzoneConfiguration();
input.set(OZONE_SCM_SERVICE_IDS_KEY, service);
input.set(OZONE_SCM_NODES_KEY + "." + service, "scm1,scm2," + selfId);
input.set(OZONE_SCM_NODE_ID_KEY, selfId);

OzoneConfiguration output = SCMHAUtils.removeSelfId(input, selfId);
Collection<String> nodesWithoutSelf =
SCMHAUtils.getSCMNodeIds(output, service);

assertEquals(2, nodesWithoutSelf.size());
assertFalse(nodesWithoutSelf.contains(selfId));
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,9 @@ public SCMBlockLocationFailoverProxyProvider(ConfigurationSource conf) {
SCMClientConfig config = conf.getObject(SCMClientConfig.class);
this.maxRetryCount = config.getRetryCount();
this.retryInterval = config.getRetryInterval();

LOG.info("Created block location fail-over proxy with {} nodes: {}",
scmNodeIds.size(), scmProxyInfoMap.values());
}

private synchronized void loadConfigs() {
Expand Down