HDDS-1318. Fix MalformedTracerStateStringException on DN logs. Contributed by Xiaoyu Yao.
This closes #641
This commit is contained in:
parent
f3f51284d5
commit
ca5e4ce036
|
@ -33,6 +33,8 @@ import org.apache.hadoop.hdds.scm.client.HddsClientUtils;
|
||||||
import org.apache.hadoop.hdds.scm.pipeline.Pipeline;
|
import org.apache.hadoop.hdds.scm.pipeline.Pipeline;
|
||||||
import org.apache.hadoop.hdds.security.exception.SCMSecurityException;
|
import org.apache.hadoop.hdds.security.exception.SCMSecurityException;
|
||||||
import org.apache.hadoop.hdds.security.x509.SecurityConfig;
|
import org.apache.hadoop.hdds.security.x509.SecurityConfig;
|
||||||
|
import org.apache.hadoop.hdds.tracing.GrpcClientInterceptor;
|
||||||
|
import org.apache.hadoop.hdds.tracing.TracingUtil;
|
||||||
import org.apache.hadoop.ozone.OzoneConfigKeys;
|
import org.apache.hadoop.ozone.OzoneConfigKeys;
|
||||||
import org.apache.hadoop.ozone.OzoneConsts;
|
import org.apache.hadoop.ozone.OzoneConsts;
|
||||||
import org.apache.hadoop.security.UserGroupInformation;
|
import org.apache.hadoop.security.UserGroupInformation;
|
||||||
|
@ -136,7 +138,8 @@ public class XceiverClientGrpc extends XceiverClientSpi {
|
||||||
NettyChannelBuilder channelBuilder = NettyChannelBuilder.forAddress(dn
|
NettyChannelBuilder channelBuilder = NettyChannelBuilder.forAddress(dn
|
||||||
.getIpAddress(), port).usePlaintext()
|
.getIpAddress(), port).usePlaintext()
|
||||||
.maxInboundMessageSize(OzoneConsts.OZONE_SCM_CHUNK_MAX_SIZE)
|
.maxInboundMessageSize(OzoneConsts.OZONE_SCM_CHUNK_MAX_SIZE)
|
||||||
.intercept(new ClientCredentialInterceptor(userName, encodedToken));
|
.intercept(new ClientCredentialInterceptor(userName, encodedToken),
|
||||||
|
new GrpcClientInterceptor());
|
||||||
if (secConfig.isGrpcTlsEnabled()) {
|
if (secConfig.isGrpcTlsEnabled()) {
|
||||||
File trustCertCollectionFile = secConfig.getTrustStoreFile();
|
File trustCertCollectionFile = secConfig.getTrustStoreFile();
|
||||||
File privateKeyFile = secConfig.getClientPrivateKeyFile();
|
File privateKeyFile = secConfig.getClientPrivateKeyFile();
|
||||||
|
@ -204,7 +207,7 @@ public class XceiverClientGrpc extends XceiverClientSpi {
|
||||||
ContainerCommandRequestProto request) throws IOException {
|
ContainerCommandRequestProto request) throws IOException {
|
||||||
try {
|
try {
|
||||||
XceiverClientReply reply;
|
XceiverClientReply reply;
|
||||||
reply = sendCommandWithRetry(request, null);
|
reply = sendCommandWithTraceIDAndRetry(request, null);
|
||||||
ContainerCommandResponseProto responseProto = reply.getResponse().get();
|
ContainerCommandResponseProto responseProto = reply.getResponse().get();
|
||||||
return responseProto;
|
return responseProto;
|
||||||
} catch (ExecutionException | InterruptedException e) {
|
} catch (ExecutionException | InterruptedException e) {
|
||||||
|
@ -217,7 +220,21 @@ public class XceiverClientGrpc extends XceiverClientSpi {
|
||||||
ContainerCommandRequestProto request, List<DatanodeDetails> excludeDns)
|
ContainerCommandRequestProto request, List<DatanodeDetails> excludeDns)
|
||||||
throws IOException {
|
throws IOException {
|
||||||
Preconditions.checkState(HddsUtils.isReadOnly(request));
|
Preconditions.checkState(HddsUtils.isReadOnly(request));
|
||||||
return sendCommandWithRetry(request, excludeDns);
|
return sendCommandWithTraceIDAndRetry(request, excludeDns);
|
||||||
|
}
|
||||||
|
|
||||||
|
private XceiverClientReply sendCommandWithTraceIDAndRetry(
|
||||||
|
ContainerCommandRequestProto request, List<DatanodeDetails> excludeDns)
|
||||||
|
throws IOException {
|
||||||
|
try (Scope scope = GlobalTracer.get()
|
||||||
|
.buildSpan("XceiverClientGrpc." + request.getCmdType().name())
|
||||||
|
.startActive(true)) {
|
||||||
|
ContainerCommandRequestProto finalPayload =
|
||||||
|
ContainerCommandRequestProto.newBuilder(request)
|
||||||
|
.setTraceID(TracingUtil.exportCurrentSpan())
|
||||||
|
.build();
|
||||||
|
return sendCommandWithRetry(finalPayload, excludeDns);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private XceiverClientReply sendCommandWithRetry(
|
private XceiverClientReply sendCommandWithRetry(
|
||||||
|
|
|
@ -25,20 +25,27 @@ import io.jaegertracing.internal.exceptions.MalformedTracerStateStringException;
|
||||||
import io.jaegertracing.internal.exceptions.TraceIdOutOfBoundException;
|
import io.jaegertracing.internal.exceptions.TraceIdOutOfBoundException;
|
||||||
import io.jaegertracing.spi.Codec;
|
import io.jaegertracing.spi.Codec;
|
||||||
import io.opentracing.propagation.Format;
|
import io.opentracing.propagation.Format;
|
||||||
|
import org.slf4j.Logger;
|
||||||
|
import org.slf4j.LoggerFactory;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* A jaeger codec to save the current tracing context t a string.
|
* A jaeger codec to save the current tracing context as a string.
|
||||||
*/
|
*/
|
||||||
public class StringCodec implements Codec<StringBuilder> {
|
public class StringCodec implements Codec<StringBuilder> {
|
||||||
|
|
||||||
|
public static final Logger LOG = LoggerFactory.getLogger(StringCodec.class);
|
||||||
public static final StringFormat FORMAT = new StringFormat();
|
public static final StringFormat FORMAT = new StringFormat();
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public JaegerSpanContext extract(StringBuilder s) {
|
public JaegerSpanContext extract(StringBuilder s) {
|
||||||
|
if (s == null) {
|
||||||
|
throw new EmptyTracerStateStringException();
|
||||||
|
}
|
||||||
String value = s.toString();
|
String value = s.toString();
|
||||||
if (value != null && !value.equals("")) {
|
if (value != null && !value.equals("")) {
|
||||||
String[] parts = value.split(":");
|
String[] parts = value.split(":");
|
||||||
if (parts.length != 4) {
|
if (parts.length != 4) {
|
||||||
|
LOG.trace("MalformedTracerStateString: {}", value);
|
||||||
throw new MalformedTracerStateStringException(value);
|
throw new MalformedTracerStateStringException(value);
|
||||||
} else {
|
} else {
|
||||||
String traceId = parts[0];
|
String traceId = parts[0];
|
||||||
|
|
|
@ -0,0 +1,52 @@
|
||||||
|
/**
|
||||||
|
* 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.hdds.tracing;
|
||||||
|
|
||||||
|
import io.jaegertracing.internal.JaegerSpanContext;
|
||||||
|
import io.jaegertracing.internal.exceptions.EmptyTracerStateStringException;
|
||||||
|
import io.jaegertracing.internal.exceptions.MalformedTracerStateStringException;
|
||||||
|
import org.apache.hadoop.test.LambdaTestUtils;
|
||||||
|
import org.junit.jupiter.api.Test;
|
||||||
|
|
||||||
|
import static org.junit.jupiter.api.Assertions.assertTrue;
|
||||||
|
|
||||||
|
class TestStringCodec {
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void testExtract() throws Exception {
|
||||||
|
StringCodec codec = new StringCodec();
|
||||||
|
|
||||||
|
LambdaTestUtils.intercept(EmptyTracerStateStringException.class,
|
||||||
|
() -> codec.extract(null));
|
||||||
|
|
||||||
|
StringBuilder sb = new StringBuilder().append("123");
|
||||||
|
LambdaTestUtils.intercept(MalformedTracerStateStringException.class,
|
||||||
|
"String does not match tracer state format",
|
||||||
|
() -> codec.extract(sb));
|
||||||
|
|
||||||
|
sb.append(":456:789");
|
||||||
|
LambdaTestUtils.intercept(MalformedTracerStateStringException.class,
|
||||||
|
"String does not match tracer state format",
|
||||||
|
() -> codec.extract(sb));
|
||||||
|
sb.append(":66");
|
||||||
|
JaegerSpanContext context = codec.extract(sb);
|
||||||
|
String expectedContextString = new String("123:456:789:66");
|
||||||
|
assertTrue(context.getTraceId().equals("123"));
|
||||||
|
assertTrue(context.toString().equals(expectedContextString));
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,21 @@
|
||||||
|
/**
|
||||||
|
* 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.hdds.tracing;
|
||||||
|
/**
|
||||||
|
Test cases for ozone tracing.
|
||||||
|
*/
|
|
@ -545,7 +545,6 @@ public final class ContainerTestHelper {
|
||||||
*/
|
*/
|
||||||
public static void verifyGetBlock(ContainerCommandRequestProto request,
|
public static void verifyGetBlock(ContainerCommandRequestProto request,
|
||||||
ContainerCommandResponseProto response, int expectedChunksCount) {
|
ContainerCommandResponseProto response, int expectedChunksCount) {
|
||||||
Assert.assertEquals(request.getTraceID(), response.getTraceID());
|
|
||||||
Assert.assertEquals(ContainerProtos.Result.SUCCESS, response.getResult());
|
Assert.assertEquals(ContainerProtos.Result.SUCCESS, response.getResult());
|
||||||
Assert.assertEquals(expectedChunksCount,
|
Assert.assertEquals(expectedChunksCount,
|
||||||
response.getGetBlock().getBlockData().getChunksCount());
|
response.getGetBlock().getBlockData().getChunksCount());
|
||||||
|
|
|
@ -112,8 +112,6 @@ public class TestContainerReplication {
|
||||||
|
|
||||||
Assert.assertNotNull(response);
|
Assert.assertNotNull(response);
|
||||||
Assert.assertEquals(ContainerProtos.Result.SUCCESS, response.getResult());
|
Assert.assertEquals(ContainerProtos.Result.SUCCESS, response.getResult());
|
||||||
Assert.assertTrue(
|
|
||||||
putBlockRequest.getTraceID().equals(response.getTraceID()));
|
|
||||||
|
|
||||||
HddsDatanodeService destinationDatanode =
|
HddsDatanodeService destinationDatanode =
|
||||||
chooseDatanodeWithoutContainer(sourcePipelines,
|
chooseDatanodeWithoutContainer(sourcePipelines,
|
||||||
|
|
|
@ -123,7 +123,6 @@ public class TestContainerMetrics {
|
||||||
ContainerCommandRequestProto request = ContainerTestHelper
|
ContainerCommandRequestProto request = ContainerTestHelper
|
||||||
.getCreateContainerRequest(containerID, pipeline);
|
.getCreateContainerRequest(containerID, pipeline);
|
||||||
ContainerCommandResponseProto response = client.sendCommand(request);
|
ContainerCommandResponseProto response = client.sendCommand(request);
|
||||||
Assert.assertTrue(request.getTraceID().equals(response.getTraceID()));
|
|
||||||
Assert.assertEquals(ContainerProtos.Result.SUCCESS,
|
Assert.assertEquals(ContainerProtos.Result.SUCCESS,
|
||||||
response.getResult());
|
response.getResult());
|
||||||
|
|
||||||
|
|
|
@ -158,7 +158,6 @@ public class TestOzoneContainer {
|
||||||
response = client.sendCommand(request);
|
response = client.sendCommand(request);
|
||||||
Assert.assertNotNull(response);
|
Assert.assertNotNull(response);
|
||||||
Assert.assertEquals(ContainerProtos.Result.SUCCESS, response.getResult());
|
Assert.assertEquals(ContainerProtos.Result.SUCCESS, response.getResult());
|
||||||
Assert.assertTrue(request.getTraceID().equals(response.getTraceID()));
|
|
||||||
|
|
||||||
// Put Block
|
// Put Block
|
||||||
putBlockRequest = ContainerTestHelper.getPutBlockRequest(
|
putBlockRequest = ContainerTestHelper.getPutBlockRequest(
|
||||||
|
@ -168,8 +167,6 @@ public class TestOzoneContainer {
|
||||||
response = client.sendCommand(putBlockRequest);
|
response = client.sendCommand(putBlockRequest);
|
||||||
Assert.assertNotNull(response);
|
Assert.assertNotNull(response);
|
||||||
Assert.assertEquals(ContainerProtos.Result.SUCCESS, response.getResult());
|
Assert.assertEquals(ContainerProtos.Result.SUCCESS, response.getResult());
|
||||||
Assert.assertTrue(putBlockRequest.getTraceID()
|
|
||||||
.equals(response.getTraceID()));
|
|
||||||
|
|
||||||
// Get Block
|
// Get Block
|
||||||
request = ContainerTestHelper.
|
request = ContainerTestHelper.
|
||||||
|
@ -187,7 +184,6 @@ public class TestOzoneContainer {
|
||||||
response = client.sendCommand(request);
|
response = client.sendCommand(request);
|
||||||
Assert.assertNotNull(response);
|
Assert.assertNotNull(response);
|
||||||
Assert.assertEquals(ContainerProtos.Result.SUCCESS, response.getResult());
|
Assert.assertEquals(ContainerProtos.Result.SUCCESS, response.getResult());
|
||||||
Assert.assertTrue(request.getTraceID().equals(response.getTraceID()));
|
|
||||||
|
|
||||||
//Delete Chunk
|
//Delete Chunk
|
||||||
request = ContainerTestHelper.getDeleteChunkRequest(
|
request = ContainerTestHelper.getDeleteChunkRequest(
|
||||||
|
@ -196,7 +192,6 @@ public class TestOzoneContainer {
|
||||||
response = client.sendCommand(request);
|
response = client.sendCommand(request);
|
||||||
Assert.assertNotNull(response);
|
Assert.assertNotNull(response);
|
||||||
Assert.assertEquals(ContainerProtos.Result.SUCCESS, response.getResult());
|
Assert.assertEquals(ContainerProtos.Result.SUCCESS, response.getResult());
|
||||||
Assert.assertTrue(request.getTraceID().equals(response.getTraceID()));
|
|
||||||
|
|
||||||
//Update an existing container
|
//Update an existing container
|
||||||
Map<String, String> containerUpdate = new HashMap<String, String>();
|
Map<String, String> containerUpdate = new HashMap<String, String>();
|
||||||
|
@ -259,8 +254,6 @@ public class TestOzoneContainer {
|
||||||
ContainerProtos.ContainerCommandResponseProto response
|
ContainerProtos.ContainerCommandResponseProto response
|
||||||
= client.sendCommand(smallFileRequest);
|
= client.sendCommand(smallFileRequest);
|
||||||
Assert.assertNotNull(response);
|
Assert.assertNotNull(response);
|
||||||
Assert.assertTrue(smallFileRequest.getTraceID()
|
|
||||||
.equals(response.getTraceID()));
|
|
||||||
|
|
||||||
final ContainerProtos.ContainerCommandRequestProto getSmallFileRequest
|
final ContainerProtos.ContainerCommandRequestProto getSmallFileRequest
|
||||||
= ContainerTestHelper.getReadSmallFileRequest(client.getPipeline(),
|
= ContainerTestHelper.getReadSmallFileRequest(client.getPipeline(),
|
||||||
|
@ -310,8 +303,6 @@ public class TestOzoneContainer {
|
||||||
Assert.assertNotNull(response);
|
Assert.assertNotNull(response);
|
||||||
Assert.assertEquals(ContainerProtos.Result.SUCCESS,
|
Assert.assertEquals(ContainerProtos.Result.SUCCESS,
|
||||||
response.getResult());
|
response.getResult());
|
||||||
Assert.assertTrue(
|
|
||||||
putBlockRequest.getTraceID().equals(response.getTraceID()));
|
|
||||||
|
|
||||||
// Close the contianer.
|
// Close the contianer.
|
||||||
request = ContainerTestHelper.getCloseContainer(
|
request = ContainerTestHelper.getCloseContainer(
|
||||||
|
@ -319,7 +310,6 @@ public class TestOzoneContainer {
|
||||||
response = client.sendCommand(request);
|
response = client.sendCommand(request);
|
||||||
Assert.assertNotNull(response);
|
Assert.assertNotNull(response);
|
||||||
Assert.assertEquals(ContainerProtos.Result.SUCCESS, response.getResult());
|
Assert.assertEquals(ContainerProtos.Result.SUCCESS, response.getResult());
|
||||||
Assert.assertTrue(request.getTraceID().equals(response.getTraceID()));
|
|
||||||
|
|
||||||
|
|
||||||
// Assert that none of the write operations are working after close.
|
// Assert that none of the write operations are working after close.
|
||||||
|
@ -330,8 +320,6 @@ public class TestOzoneContainer {
|
||||||
Assert.assertNotNull(response);
|
Assert.assertNotNull(response);
|
||||||
Assert.assertEquals(ContainerProtos.Result.CLOSED_CONTAINER_IO,
|
Assert.assertEquals(ContainerProtos.Result.CLOSED_CONTAINER_IO,
|
||||||
response.getResult());
|
response.getResult());
|
||||||
Assert.assertTrue(
|
|
||||||
writeChunkRequest.getTraceID().equals(response.getTraceID()));
|
|
||||||
|
|
||||||
// Read chunk must work on a closed container.
|
// Read chunk must work on a closed container.
|
||||||
request = ContainerTestHelper.getReadChunkRequest(client.getPipeline(),
|
request = ContainerTestHelper.getReadChunkRequest(client.getPipeline(),
|
||||||
|
@ -339,16 +327,12 @@ public class TestOzoneContainer {
|
||||||
response = client.sendCommand(request);
|
response = client.sendCommand(request);
|
||||||
Assert.assertNotNull(response);
|
Assert.assertNotNull(response);
|
||||||
Assert.assertEquals(ContainerProtos.Result.SUCCESS, response.getResult());
|
Assert.assertEquals(ContainerProtos.Result.SUCCESS, response.getResult());
|
||||||
Assert.assertTrue(request.getTraceID().equals(response.getTraceID()));
|
|
||||||
|
|
||||||
|
|
||||||
// Put block will fail on a closed container.
|
// Put block will fail on a closed container.
|
||||||
response = client.sendCommand(putBlockRequest);
|
response = client.sendCommand(putBlockRequest);
|
||||||
Assert.assertNotNull(response);
|
Assert.assertNotNull(response);
|
||||||
Assert.assertEquals(ContainerProtos.Result.CLOSED_CONTAINER_IO,
|
Assert.assertEquals(ContainerProtos.Result.CLOSED_CONTAINER_IO,
|
||||||
response.getResult());
|
response.getResult());
|
||||||
Assert.assertTrue(putBlockRequest.getTraceID()
|
|
||||||
.equals(response.getTraceID()));
|
|
||||||
|
|
||||||
// Get block must work on the closed container.
|
// Get block must work on the closed container.
|
||||||
request = ContainerTestHelper.getBlockRequest(client.getPipeline(),
|
request = ContainerTestHelper.getBlockRequest(client.getPipeline(),
|
||||||
|
@ -366,7 +350,6 @@ public class TestOzoneContainer {
|
||||||
Assert.assertNotNull(response);
|
Assert.assertNotNull(response);
|
||||||
Assert.assertEquals(ContainerProtos.Result.CLOSED_CONTAINER_IO,
|
Assert.assertEquals(ContainerProtos.Result.CLOSED_CONTAINER_IO,
|
||||||
response.getResult());
|
response.getResult());
|
||||||
Assert.assertTrue(request.getTraceID().equals(response.getTraceID()));
|
|
||||||
} finally {
|
} finally {
|
||||||
if (client != null) {
|
if (client != null) {
|
||||||
client.close();
|
client.close();
|
||||||
|
@ -407,8 +390,6 @@ public class TestOzoneContainer {
|
||||||
Assert.assertNotNull(response);
|
Assert.assertNotNull(response);
|
||||||
Assert.assertEquals(ContainerProtos.Result.SUCCESS,
|
Assert.assertEquals(ContainerProtos.Result.SUCCESS,
|
||||||
response.getResult());
|
response.getResult());
|
||||||
Assert.assertTrue(
|
|
||||||
putBlockRequest.getTraceID().equals(response.getTraceID()));
|
|
||||||
|
|
||||||
// Container cannot be deleted because force flag is set to false and
|
// Container cannot be deleted because force flag is set to false and
|
||||||
// the container is still open
|
// the container is still open
|
||||||
|
@ -419,7 +400,6 @@ public class TestOzoneContainer {
|
||||||
Assert.assertNotNull(response);
|
Assert.assertNotNull(response);
|
||||||
Assert.assertEquals(ContainerProtos.Result.DELETE_ON_OPEN_CONTAINER,
|
Assert.assertEquals(ContainerProtos.Result.DELETE_ON_OPEN_CONTAINER,
|
||||||
response.getResult());
|
response.getResult());
|
||||||
Assert.assertTrue(request.getTraceID().equals(response.getTraceID()));
|
|
||||||
|
|
||||||
// Container can be deleted, by setting force flag, even with out closing
|
// Container can be deleted, by setting force flag, even with out closing
|
||||||
request = ContainerTestHelper.getDeleteContainer(
|
request = ContainerTestHelper.getDeleteContainer(
|
||||||
|
@ -429,7 +409,6 @@ public class TestOzoneContainer {
|
||||||
Assert.assertNotNull(response);
|
Assert.assertNotNull(response);
|
||||||
Assert.assertEquals(ContainerProtos.Result.SUCCESS,
|
Assert.assertEquals(ContainerProtos.Result.SUCCESS,
|
||||||
response.getResult());
|
response.getResult());
|
||||||
Assert.assertTrue(request.getTraceID().equals(response.getTraceID()));
|
|
||||||
|
|
||||||
} finally {
|
} finally {
|
||||||
if (client != null) {
|
if (client != null) {
|
||||||
|
@ -524,7 +503,6 @@ public class TestOzoneContainer {
|
||||||
ContainerProtos.ContainerCommandResponseProto response =
|
ContainerProtos.ContainerCommandResponseProto response =
|
||||||
client.sendCommand(request);
|
client.sendCommand(request);
|
||||||
Assert.assertNotNull(response);
|
Assert.assertNotNull(response);
|
||||||
Assert.assertTrue(request.getTraceID().equals(response.getTraceID()));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public static ContainerProtos.ContainerCommandRequestProto
|
public static ContainerProtos.ContainerCommandRequestProto
|
||||||
|
@ -539,30 +517,6 @@ public class TestOzoneContainer {
|
||||||
client.sendCommand(writeChunkRequest);
|
client.sendCommand(writeChunkRequest);
|
||||||
Assert.assertNotNull(response);
|
Assert.assertNotNull(response);
|
||||||
Assert.assertEquals(ContainerProtos.Result.SUCCESS, response.getResult());
|
Assert.assertEquals(ContainerProtos.Result.SUCCESS, response.getResult());
|
||||||
Assert.assertTrue(response.getTraceID().equals(response.getTraceID()));
|
|
||||||
return writeChunkRequest;
|
return writeChunkRequest;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void runRequestWithoutTraceId(
|
|
||||||
long containerID, XceiverClientSpi client) throws Exception {
|
|
||||||
try {
|
|
||||||
client.connect();
|
|
||||||
createContainerForTesting(client, containerID);
|
|
||||||
BlockID blockID = ContainerTestHelper.getTestBlockID(containerID);
|
|
||||||
final ContainerProtos.ContainerCommandRequestProto smallFileRequest
|
|
||||||
= ContainerTestHelper.getWriteSmallFileRequest(
|
|
||||||
client.getPipeline(), blockID, 1024);
|
|
||||||
|
|
||||||
ContainerProtos.ContainerCommandResponseProto response
|
|
||||||
= client.sendCommand(smallFileRequest);
|
|
||||||
Assert.assertNotNull(response);
|
|
||||||
Assert.assertTrue(smallFileRequest.getTraceID()
|
|
||||||
.equals(response.getTraceID()));
|
|
||||||
} finally {
|
|
||||||
if (client != null) {
|
|
||||||
client.close();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -178,7 +178,6 @@ public class TestOzoneContainerWithTLS {
|
||||||
ContainerProtos.ContainerCommandResponseProto response =
|
ContainerProtos.ContainerCommandResponseProto response =
|
||||||
client.sendCommand(request);
|
client.sendCommand(request);
|
||||||
Assert.assertNotNull(response);
|
Assert.assertNotNull(response);
|
||||||
Assert.assertTrue(request.getTraceID().equals(response.getTraceID()));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private StateContext getContext(DatanodeDetails datanodeDetails) {
|
private StateContext getContext(DatanodeDetails datanodeDetails) {
|
||||||
|
|
|
@ -212,7 +212,6 @@ public class TestSecureOzoneContainer {
|
||||||
ContainerProtos.ContainerCommandResponseProto response =
|
ContainerProtos.ContainerCommandResponseProto response =
|
||||||
client.sendCommand(request);
|
client.sendCommand(request);
|
||||||
Assert.assertNotNull(response);
|
Assert.assertNotNull(response);
|
||||||
Assert.assertTrue(request.getTraceID().equals(response.getTraceID()));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private StateContext getContext(DatanodeDetails datanodeDetails) {
|
private StateContext getContext(DatanodeDetails datanodeDetails) {
|
||||||
|
|
|
@ -188,7 +188,6 @@ public class TestContainerServer {
|
||||||
Assert.assertNotNull(request.getTraceID());
|
Assert.assertNotNull(request.getTraceID());
|
||||||
|
|
||||||
ContainerCommandResponseProto response = client.sendCommand(request);
|
ContainerCommandResponseProto response = client.sendCommand(request);
|
||||||
Assert.assertEquals(request.getTraceID(), response.getTraceID());
|
|
||||||
} finally {
|
} finally {
|
||||||
if (client != null) {
|
if (client != null) {
|
||||||
client.close();
|
client.close();
|
||||||
|
@ -245,7 +244,6 @@ public class TestContainerServer {
|
||||||
ContainerTestHelper.getCreateContainerRequest(
|
ContainerTestHelper.getCreateContainerRequest(
|
||||||
ContainerTestHelper.getTestContainerID(), pipeline);
|
ContainerTestHelper.getTestContainerID(), pipeline);
|
||||||
ContainerCommandResponseProto response = client.sendCommand(request);
|
ContainerCommandResponseProto response = client.sendCommand(request);
|
||||||
Assert.assertTrue(request.getTraceID().equals(response.getTraceID()));
|
|
||||||
Assert.assertEquals(ContainerProtos.Result.SUCCESS, response.getResult());
|
Assert.assertEquals(ContainerProtos.Result.SUCCESS, response.getResult());
|
||||||
} finally {
|
} finally {
|
||||||
if (client != null) {
|
if (client != null) {
|
||||||
|
|
|
@ -40,6 +40,7 @@ import org.apache.hadoop.hdds.cli.MissingSubcommandException;
|
||||||
import org.apache.hadoop.hdds.client.ReplicationFactor;
|
import org.apache.hadoop.hdds.client.ReplicationFactor;
|
||||||
import org.apache.hadoop.hdds.conf.OzoneConfiguration;
|
import org.apache.hadoop.hdds.conf.OzoneConfiguration;
|
||||||
import org.apache.hadoop.hdds.protocol.proto.HddsProtos;
|
import org.apache.hadoop.hdds.protocol.proto.HddsProtos;
|
||||||
|
import org.apache.hadoop.hdds.tracing.StringCodec;
|
||||||
import org.apache.hadoop.hdfs.DFSUtil;
|
import org.apache.hadoop.hdfs.DFSUtil;
|
||||||
import org.apache.hadoop.ozone.MiniOzoneCluster;
|
import org.apache.hadoop.ozone.MiniOzoneCluster;
|
||||||
import org.apache.hadoop.ozone.OzoneAcl;
|
import org.apache.hadoop.ozone.OzoneAcl;
|
||||||
|
@ -80,9 +81,12 @@ import org.junit.AfterClass;
|
||||||
import org.junit.Assert;
|
import org.junit.Assert;
|
||||||
|
|
||||||
import static org.junit.Assert.assertEquals;
|
import static org.junit.Assert.assertEquals;
|
||||||
|
import static org.junit.Assert.assertFalse;
|
||||||
import static org.junit.Assert.assertNotNull;
|
import static org.junit.Assert.assertNotNull;
|
||||||
import static org.junit.Assert.assertTrue;
|
import static org.junit.Assert.assertTrue;
|
||||||
import static org.junit.Assert.fail;
|
import static org.junit.Assert.fail;
|
||||||
|
import static org.slf4j.event.Level.TRACE;
|
||||||
|
|
||||||
import org.junit.Before;
|
import org.junit.Before;
|
||||||
import org.junit.BeforeClass;
|
import org.junit.BeforeClass;
|
||||||
import org.junit.Rule;
|
import org.junit.Rule;
|
||||||
|
@ -884,6 +888,9 @@ public class TestOzoneShell {
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
public void testGetKey() throws Exception {
|
public void testGetKey() throws Exception {
|
||||||
|
GenericTestUtils.LogCapturer logs = GenericTestUtils.LogCapturer
|
||||||
|
.captureLogs(StringCodec.LOG);
|
||||||
|
GenericTestUtils.setLogLevel(StringCodec.LOG, TRACE);
|
||||||
LOG.info("Running testGetKey");
|
LOG.info("Running testGetKey");
|
||||||
String keyName = "key" + RandomStringUtils.randomNumeric(5);
|
String keyName = "key" + RandomStringUtils.randomNumeric(5);
|
||||||
OzoneBucket bucket = creatBucket();
|
OzoneBucket bucket = creatBucket();
|
||||||
|
@ -895,6 +902,9 @@ public class TestOzoneShell {
|
||||||
bucket.createKey(keyName, dataStr.length());
|
bucket.createKey(keyName, dataStr.length());
|
||||||
keyOutputStream.write(dataStr.getBytes());
|
keyOutputStream.write(dataStr.getBytes());
|
||||||
keyOutputStream.close();
|
keyOutputStream.close();
|
||||||
|
assertFalse("put key without malformed tracing",
|
||||||
|
logs.getOutput().contains("MalformedTracerStateString"));
|
||||||
|
logs.clearOutput();
|
||||||
|
|
||||||
String tmpPath = baseDir.getAbsolutePath() + "/testfile-"
|
String tmpPath = baseDir.getAbsolutePath() + "/testfile-"
|
||||||
+ UUID.randomUUID().toString();
|
+ UUID.randomUUID().toString();
|
||||||
|
@ -902,6 +912,9 @@ public class TestOzoneShell {
|
||||||
url + "/" + volumeName + "/" + bucketName + "/" + keyName,
|
url + "/" + volumeName + "/" + bucketName + "/" + keyName,
|
||||||
tmpPath};
|
tmpPath};
|
||||||
execute(shell, args);
|
execute(shell, args);
|
||||||
|
assertFalse("get key without malformed tracing",
|
||||||
|
logs.getOutput().contains("MalformedTracerStateString"));
|
||||||
|
logs.clearOutput();
|
||||||
|
|
||||||
byte[] dataBytes = new byte[dataStr.length()];
|
byte[] dataBytes = new byte[dataStr.length()];
|
||||||
try (FileInputStream randFile = new FileInputStream(new File(tmpPath))) {
|
try (FileInputStream randFile = new FileInputStream(new File(tmpPath))) {
|
||||||
|
|
Loading…
Reference in New Issue