HDDS-2128. Make ozone sh command work with OM HA service ids (#1445)
This commit is contained in:
parent
53637301d1
commit
d7d6ec8fae
@ -0,0 +1,343 @@
|
|||||||
|
/**
|
||||||
|
* 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.ozone.ozShell;
|
||||||
|
|
||||||
|
import com.google.common.base.Strings;
|
||||||
|
import org.apache.hadoop.fs.FileUtil;
|
||||||
|
import org.apache.hadoop.hdds.conf.OzoneConfiguration;
|
||||||
|
import org.apache.hadoop.ozone.MiniOzoneCluster;
|
||||||
|
import org.apache.hadoop.ozone.MiniOzoneHAClusterImpl;
|
||||||
|
import org.apache.hadoop.ozone.OmUtils;
|
||||||
|
import org.apache.hadoop.ozone.om.OMConfigKeys;
|
||||||
|
import org.apache.hadoop.ozone.web.ozShell.OzoneShell;
|
||||||
|
import org.apache.hadoop.test.GenericTestUtils;
|
||||||
|
import org.junit.After;
|
||||||
|
import org.junit.AfterClass;
|
||||||
|
import org.junit.Assert;
|
||||||
|
import org.junit.Before;
|
||||||
|
import org.junit.BeforeClass;
|
||||||
|
import org.junit.Rule;
|
||||||
|
import org.junit.Test;
|
||||||
|
import org.junit.rules.Timeout;
|
||||||
|
import org.slf4j.Logger;
|
||||||
|
import org.slf4j.LoggerFactory;
|
||||||
|
import picocli.CommandLine;
|
||||||
|
import picocli.CommandLine.ExecutionException;
|
||||||
|
import picocli.CommandLine.IExceptionHandler2;
|
||||||
|
import picocli.CommandLine.ParameterException;
|
||||||
|
import picocli.CommandLine.ParseResult;
|
||||||
|
import picocli.CommandLine.RunLast;
|
||||||
|
|
||||||
|
import java.io.ByteArrayOutputStream;
|
||||||
|
import java.io.File;
|
||||||
|
import java.io.PrintStream;
|
||||||
|
import java.util.Arrays;
|
||||||
|
import java.util.Collection;
|
||||||
|
import java.util.List;
|
||||||
|
import java.util.UUID;
|
||||||
|
|
||||||
|
import static org.junit.Assert.fail;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* This class tests Ozone sh shell command.
|
||||||
|
* Inspired by TestS3Shell
|
||||||
|
*/
|
||||||
|
public class TestOzoneShellHA {
|
||||||
|
|
||||||
|
private static final Logger LOG =
|
||||||
|
LoggerFactory.getLogger(TestOzoneShellHA.class);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Set the timeout for every test.
|
||||||
|
*/
|
||||||
|
@Rule
|
||||||
|
public Timeout testTimeout = new Timeout(300000);
|
||||||
|
|
||||||
|
private static File baseDir;
|
||||||
|
private static OzoneConfiguration conf = null;
|
||||||
|
private static MiniOzoneCluster cluster = null;
|
||||||
|
private static OzoneShell ozoneShell = null;
|
||||||
|
|
||||||
|
private final ByteArrayOutputStream out = new ByteArrayOutputStream();
|
||||||
|
private final ByteArrayOutputStream err = new ByteArrayOutputStream();
|
||||||
|
private static final PrintStream OLD_OUT = System.out;
|
||||||
|
private static final PrintStream OLD_ERR = System.err;
|
||||||
|
|
||||||
|
private static String omServiceId;
|
||||||
|
private static String clusterId;
|
||||||
|
private static String scmId;
|
||||||
|
private static int numOfOMs;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create a MiniOzoneCluster for testing with using distributed Ozone
|
||||||
|
* handler type.
|
||||||
|
*
|
||||||
|
* @throws Exception
|
||||||
|
*/
|
||||||
|
@BeforeClass
|
||||||
|
public static void init() throws Exception {
|
||||||
|
conf = new OzoneConfiguration();
|
||||||
|
|
||||||
|
String path = GenericTestUtils.getTempPath(
|
||||||
|
TestOzoneShellHA.class.getSimpleName());
|
||||||
|
baseDir = new File(path);
|
||||||
|
baseDir.mkdirs();
|
||||||
|
ozoneShell = new OzoneShell();
|
||||||
|
|
||||||
|
// Init HA cluster
|
||||||
|
omServiceId = "om-service-test1";
|
||||||
|
numOfOMs = 3;
|
||||||
|
clusterId = UUID.randomUUID().toString();
|
||||||
|
scmId = UUID.randomUUID().toString();
|
||||||
|
cluster = MiniOzoneCluster.newHABuilder(conf)
|
||||||
|
.setClusterId(clusterId)
|
||||||
|
.setScmId(scmId)
|
||||||
|
.setOMServiceId(omServiceId)
|
||||||
|
.setNumOfOzoneManagers(numOfOMs)
|
||||||
|
.build();
|
||||||
|
conf.setQuietMode(false);
|
||||||
|
cluster.waitForClusterToBeReady();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* shutdown MiniOzoneCluster.
|
||||||
|
*/
|
||||||
|
@AfterClass
|
||||||
|
public static void shutdown() {
|
||||||
|
if (cluster != null) {
|
||||||
|
cluster.shutdown();
|
||||||
|
}
|
||||||
|
|
||||||
|
if (baseDir != null) {
|
||||||
|
FileUtil.fullyDelete(baseDir, true);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Before
|
||||||
|
public void setup() {
|
||||||
|
System.setOut(new PrintStream(out));
|
||||||
|
System.setErr(new PrintStream(err));
|
||||||
|
}
|
||||||
|
|
||||||
|
@After
|
||||||
|
public void reset() {
|
||||||
|
// reset stream after each unit test
|
||||||
|
out.reset();
|
||||||
|
err.reset();
|
||||||
|
|
||||||
|
// restore system streams
|
||||||
|
System.setOut(OLD_OUT);
|
||||||
|
System.setErr(OLD_ERR);
|
||||||
|
}
|
||||||
|
|
||||||
|
private void execute(OzoneShell shell, String[] args) {
|
||||||
|
LOG.info("Executing OzoneShell command with args {}", Arrays.asList(args));
|
||||||
|
CommandLine cmd = shell.getCmd();
|
||||||
|
|
||||||
|
IExceptionHandler2<List<Object>> exceptionHandler =
|
||||||
|
new IExceptionHandler2<List<Object>>() {
|
||||||
|
@Override
|
||||||
|
public List<Object> handleParseException(ParameterException ex,
|
||||||
|
String[] args) {
|
||||||
|
throw ex;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public List<Object> handleExecutionException(ExecutionException ex,
|
||||||
|
ParseResult parseRes) {
|
||||||
|
throw ex;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
// Since there is no elegant way to pass Ozone config to the shell,
|
||||||
|
// the idea is to use 'set' to place those OM HA configs.
|
||||||
|
String[] argsWithHAConf = getHASetConfStrings(args);
|
||||||
|
|
||||||
|
cmd.parseWithHandlers(new RunLast(), exceptionHandler, argsWithHAConf);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Execute command, assert exception message and returns true if error
|
||||||
|
* was thrown.
|
||||||
|
*/
|
||||||
|
private void executeWithError(OzoneShell shell, String[] args,
|
||||||
|
String expectedError) {
|
||||||
|
if (Strings.isNullOrEmpty(expectedError)) {
|
||||||
|
execute(shell, args);
|
||||||
|
} else {
|
||||||
|
try {
|
||||||
|
execute(shell, args);
|
||||||
|
fail("Exception is expected from command execution " + Arrays
|
||||||
|
.asList(args));
|
||||||
|
} catch (Exception ex) {
|
||||||
|
if (!Strings.isNullOrEmpty(expectedError)) {
|
||||||
|
Throwable exceptionToCheck = ex;
|
||||||
|
if (exceptionToCheck.getCause() != null) {
|
||||||
|
exceptionToCheck = exceptionToCheck.getCause();
|
||||||
|
}
|
||||||
|
Assert.assertTrue(
|
||||||
|
String.format(
|
||||||
|
"Error of OzoneShell code doesn't contain the " +
|
||||||
|
"exception [%s] in [%s]",
|
||||||
|
expectedError, exceptionToCheck.getMessage()),
|
||||||
|
exceptionToCheck.getMessage().contains(expectedError));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return the leader OM's Node ID in the MiniOzoneHACluster.
|
||||||
|
*
|
||||||
|
* TODO: This should be put into MiniOzoneHAClusterImpl in the future.
|
||||||
|
* This helper function is similar to the one in TestOzoneFsHAURLs.
|
||||||
|
*/
|
||||||
|
private String getLeaderOMNodeId() {
|
||||||
|
Collection<String> omNodeIds = OmUtils.getOMNodeIds(conf, omServiceId);
|
||||||
|
assert(omNodeIds.size() == numOfOMs);
|
||||||
|
MiniOzoneHAClusterImpl haCluster = (MiniOzoneHAClusterImpl) cluster;
|
||||||
|
// Note: this loop may be implemented inside MiniOzoneHAClusterImpl
|
||||||
|
for (String omNodeId : omNodeIds) {
|
||||||
|
// Find the leader OM
|
||||||
|
if (!haCluster.getOzoneManager(omNodeId).isLeader()) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
return omNodeId;
|
||||||
|
}
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
private String getSetConfStringFromConf(String key) {
|
||||||
|
return String.format("--set=%s=%s", key, conf.get(key));
|
||||||
|
}
|
||||||
|
|
||||||
|
private String generateSetConfString(String key, String value) {
|
||||||
|
return String.format("--set=%s=%s", key, value);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Helper function to get a String array to be fed into OzoneShell.
|
||||||
|
* @param numOfArgs Additional number of arguments after the HA conf string,
|
||||||
|
* this translates into the number of empty array elements
|
||||||
|
* after the HA conf string.
|
||||||
|
* @return String array.
|
||||||
|
*/
|
||||||
|
private String[] getHASetConfStrings(int numOfArgs) {
|
||||||
|
assert(numOfArgs >= 0);
|
||||||
|
String[] res = new String[1 + 1 + numOfOMs + numOfArgs];
|
||||||
|
final int indexOmServiceIds = 0;
|
||||||
|
final int indexOmNodes = 1;
|
||||||
|
final int indexOmAddressStart = 2;
|
||||||
|
|
||||||
|
res[indexOmServiceIds] = getSetConfStringFromConf(
|
||||||
|
OMConfigKeys.OZONE_OM_SERVICE_IDS_KEY);
|
||||||
|
|
||||||
|
String omNodesKey = OmUtils.addKeySuffixes(
|
||||||
|
OMConfigKeys.OZONE_OM_NODES_KEY, omServiceId);
|
||||||
|
String omNodesVal = conf.get(omNodesKey);
|
||||||
|
res[indexOmNodes] = generateSetConfString(omNodesKey, omNodesVal);
|
||||||
|
|
||||||
|
String[] omNodesArr = omNodesVal.split(",");
|
||||||
|
// Sanity check
|
||||||
|
assert(omNodesArr.length == numOfOMs);
|
||||||
|
for (int i = 0; i < numOfOMs; i++) {
|
||||||
|
res[indexOmAddressStart + i] =
|
||||||
|
getSetConfStringFromConf(OmUtils.addKeySuffixes(
|
||||||
|
OMConfigKeys.OZONE_OM_ADDRESS_KEY, omServiceId, omNodesArr[i]));
|
||||||
|
}
|
||||||
|
|
||||||
|
return res;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Helper function to create a new set of arguments that contains HA configs.
|
||||||
|
* @param existingArgs Existing arguments to be fed into OzoneShell command.
|
||||||
|
* @return String array.
|
||||||
|
*/
|
||||||
|
private String[] getHASetConfStrings(String[] existingArgs) {
|
||||||
|
// Get a String array populated with HA configs first
|
||||||
|
String[] res = getHASetConfStrings(existingArgs.length);
|
||||||
|
|
||||||
|
int indexCopyStart = res.length - existingArgs.length;
|
||||||
|
// Then copy the existing args to the returned String array
|
||||||
|
for (int i = 0; i < existingArgs.length; i++) {
|
||||||
|
res[indexCopyStart + i] = existingArgs[i];
|
||||||
|
}
|
||||||
|
return res;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Tests ozone sh command URI parsing with volume and bucket create commands.
|
||||||
|
*/
|
||||||
|
@Test
|
||||||
|
public void testOzoneShCmdURIs() {
|
||||||
|
// Test case 1: ozone sh volume create /volume
|
||||||
|
// Expectation: Failure.
|
||||||
|
String[] args = new String[] {"volume", "create", "/volume"};
|
||||||
|
executeWithError(ozoneShell, args,
|
||||||
|
"Service ID or host name must not be omitted");
|
||||||
|
|
||||||
|
// Get leader OM node RPC address from ozone.om.address.omServiceId.omNode
|
||||||
|
String omLeaderNodeId = getLeaderOMNodeId();
|
||||||
|
String omLeaderNodeAddrKey = OmUtils.addKeySuffixes(
|
||||||
|
OMConfigKeys.OZONE_OM_ADDRESS_KEY, omServiceId, omLeaderNodeId);
|
||||||
|
String omLeaderNodeAddr = conf.get(omLeaderNodeAddrKey);
|
||||||
|
String omLeaderNodeAddrWithoutPort = omLeaderNodeAddr.split(":")[0];
|
||||||
|
|
||||||
|
// Test case 2: ozone sh volume create o3://om1/volume2
|
||||||
|
// Expectation: Success.
|
||||||
|
// Note: For now it seems OzoneShell is only trying the default port 9862
|
||||||
|
// instead of using the port defined in ozone.om.address (as ozone fs does).
|
||||||
|
// So the test will fail before this behavior is fixed.
|
||||||
|
// TODO: Fix this behavior, then uncomment the execute() below.
|
||||||
|
String setOmAddress = "--set=" + OMConfigKeys.OZONE_OM_ADDRESS_KEY + "="
|
||||||
|
+ omLeaderNodeAddr;
|
||||||
|
args = new String[] {setOmAddress,
|
||||||
|
"volume", "create", "o3://" + omLeaderNodeAddrWithoutPort + "/volume2"};
|
||||||
|
//execute(ozoneShell, args);
|
||||||
|
|
||||||
|
// Test case 3: ozone sh volume create o3://om1:port/volume3
|
||||||
|
// Expectation: Success.
|
||||||
|
args = new String[] {
|
||||||
|
"volume", "create", "o3://" + omLeaderNodeAddr + "/volume3"};
|
||||||
|
execute(ozoneShell, args);
|
||||||
|
|
||||||
|
// Test case 4: ozone sh volume create o3://id1/volume
|
||||||
|
// Expectation: Success.
|
||||||
|
args = new String[] {"volume", "create", "o3://" + omServiceId + "/volume"};
|
||||||
|
execute(ozoneShell, args);
|
||||||
|
|
||||||
|
// Test case 5: ozone sh volume create o3://id1:port/volume
|
||||||
|
// Expectation: Failure.
|
||||||
|
args = new String[] {"volume", "create",
|
||||||
|
"o3://" + omServiceId + ":9862" + "/volume"};
|
||||||
|
executeWithError(ozoneShell, args, "does not use port information");
|
||||||
|
|
||||||
|
// Test case 6: ozone sh bucket create /volume/bucket
|
||||||
|
// Expectation: Failure.
|
||||||
|
args = new String[] {"bucket", "create", "/volume/bucket"};
|
||||||
|
executeWithError(ozoneShell, args,
|
||||||
|
"Service ID or host name must not be omitted");
|
||||||
|
|
||||||
|
// Test case 7: ozone sh bucket create o3://om1/volume/bucket
|
||||||
|
// Expectation: Success.
|
||||||
|
args = new String[] {
|
||||||
|
"bucket", "create", "o3://" + omServiceId + "/volume/bucket"};
|
||||||
|
execute(ozoneShell, args);
|
||||||
|
}
|
||||||
|
}
|
@ -22,6 +22,7 @@
|
|||||||
import java.net.URISyntaxException;
|
import java.net.URISyntaxException;
|
||||||
|
|
||||||
import org.apache.hadoop.hdds.conf.OzoneConfiguration;
|
import org.apache.hadoop.hdds.conf.OzoneConfiguration;
|
||||||
|
import org.apache.hadoop.ozone.OmUtils;
|
||||||
import org.apache.hadoop.ozone.client.OzoneClient;
|
import org.apache.hadoop.ozone.client.OzoneClient;
|
||||||
import org.apache.hadoop.ozone.client.OzoneClientException;
|
import org.apache.hadoop.ozone.client.OzoneClientException;
|
||||||
import org.apache.hadoop.ozone.client.OzoneClientFactory;
|
import org.apache.hadoop.ozone.client.OzoneClientFactory;
|
||||||
@ -92,13 +93,27 @@ public OzoneClient createClient(OzoneConfiguration conf)
|
|||||||
} else if (scheme.equals(OZONE_RPC_SCHEME)) {
|
} else if (scheme.equals(OZONE_RPC_SCHEME)) {
|
||||||
if (ozoneURI.getHost() != null && !ozoneURI.getAuthority()
|
if (ozoneURI.getHost() != null && !ozoneURI.getAuthority()
|
||||||
.equals(EMPTY_HOST)) {
|
.equals(EMPTY_HOST)) {
|
||||||
if (ozoneURI.getPort() == -1) {
|
if (OmUtils.isOmHAServiceId(conf, ozoneURI.getHost())) {
|
||||||
|
// When host is an HA service ID
|
||||||
|
if (ozoneURI.getPort() != -1) {
|
||||||
|
throw new OzoneClientException(
|
||||||
|
"Port " + ozoneURI.getPort() + " specified in URI but host '"
|
||||||
|
+ ozoneURI.getHost() + "' is a logical (HA) OzoneManager "
|
||||||
|
+ "and does not use port information.");
|
||||||
|
}
|
||||||
|
client = OzoneClientFactory.getRpcClient(ozoneURI.getHost(), conf);
|
||||||
|
} else if (ozoneURI.getPort() == -1) {
|
||||||
client = OzoneClientFactory.getRpcClient(ozoneURI.getHost());
|
client = OzoneClientFactory.getRpcClient(ozoneURI.getHost());
|
||||||
} else {
|
} else {
|
||||||
client = OzoneClientFactory
|
client = OzoneClientFactory
|
||||||
.getRpcClient(ozoneURI.getHost(), ozoneURI.getPort(), conf);
|
.getRpcClient(ozoneURI.getHost(), ozoneURI.getPort(), conf);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
|
// When host is not specified
|
||||||
|
if (OmUtils.isServiceIdsDefined(conf)) {
|
||||||
|
throw new OzoneClientException("Service ID or host name must not"
|
||||||
|
+ " be omitted when ozone.om.service.ids is defined.");
|
||||||
|
}
|
||||||
client = OzoneClientFactory.getRpcClient(conf);
|
client = OzoneClientFactory.getRpcClient(conf);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
|
Loading…
Reference in New Issue
Block a user