-
Notifications
You must be signed in to change notification settings - Fork 616
HDDS-11141. Avoid pipeline Action CLOSE log flood in datanode XceiverServerRatis #8325
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 2 commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
0c6ec37
HDDS-11141. skipping logs for closed pipelines
priyeshkaratha dc6bcd1
Addressing review comments.
priyeshkaratha aec2b5b
addressing review comments
priyeshkaratha 6a90b20
log only if addPipelineActionIfAbsent return true
priyeshkaratha 6732461
Adding test to existing testcase to avoid cluster creation
priyeshkaratha 8d2e9d1
Update hadoop-hdds/container-service/src/main/java/org/apache/hadoop/…
priyeshkaratha File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
100 changes: 100 additions & 0 deletions
100
...on-test/src/test/java/org/apache/hadoop/hdds/scm/pipeline/TestPipelineCloseLogsFlood.java
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,100 @@ | ||
| /* | ||
| * 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.scm.pipeline; | ||
|
|
||
| import static org.assertj.core.api.Assertions.assertThat; | ||
|
|
||
| import java.io.IOException; | ||
| import java.io.OutputStream; | ||
| import java.util.HashMap; | ||
| import java.util.concurrent.TimeUnit; | ||
| import org.apache.commons.lang3.StringUtils; | ||
| import org.apache.hadoop.hdds.client.ReplicationConfig; | ||
| import org.apache.hadoop.hdds.client.ReplicationFactor; | ||
| import org.apache.hadoop.hdds.client.ReplicationType; | ||
| import org.apache.hadoop.hdds.conf.OzoneConfiguration; | ||
| import org.apache.hadoop.ozone.MiniOzoneCluster; | ||
| import org.apache.hadoop.ozone.client.OzoneBucket; | ||
| import org.apache.hadoop.ozone.client.OzoneClient; | ||
| import org.apache.hadoop.ozone.client.OzoneClientFactory; | ||
| import org.apache.hadoop.ozone.container.common.transport.server.ratis.XceiverServerRatis; | ||
| import org.apache.ozone.test.GenericTestUtils; | ||
| import org.junit.jupiter.api.AfterEach; | ||
| import org.junit.jupiter.api.BeforeEach; | ||
| import org.junit.jupiter.api.Test; | ||
| import org.junit.jupiter.api.Timeout; | ||
| import org.slf4j.event.Level; | ||
|
|
||
| /** | ||
| * Tests pipeline close logs. | ||
| */ | ||
| @Timeout(300) | ||
| public class TestPipelineCloseLogsFlood { | ||
|
priyeshkaratha marked this conversation as resolved.
Outdated
|
||
| private static final String FLOOD_TOKEN = "pipeline Action CLOSE"; | ||
| private static final String DATANODE_SLOWNESS_TIMEOUT = "hdds.ratis.raft.server.rpc.slowness.timeout"; | ||
| private static final String NO_LEADER_TIMEOUT = "hdds.ratis.raft.server.notification.no-leader.timeout"; | ||
|
priyeshkaratha marked this conversation as resolved.
Outdated
|
||
| private static final String VOLUME_NAME = "vol1"; | ||
| private static final String BUCKET_NAME = "bucket1"; | ||
|
|
||
| private MiniOzoneCluster cluster; | ||
| private OzoneClient client; | ||
| private OzoneConfiguration conf; | ||
|
|
||
| @BeforeEach | ||
| public void setUp() throws Exception { | ||
| conf = new OzoneConfiguration(); | ||
| conf.setTimeDuration(DATANODE_SLOWNESS_TIMEOUT, 10, TimeUnit.SECONDS); | ||
|
priyeshkaratha marked this conversation as resolved.
Outdated
|
||
| conf.setTimeDuration(NO_LEADER_TIMEOUT, 10, TimeUnit.SECONDS); | ||
|
|
||
| MiniOzoneCluster.Builder builder = MiniOzoneCluster.newBuilder(conf) | ||
| .setNumDatanodes(3); | ||
| cluster = builder.build(); | ||
| cluster.waitForClusterToBeReady(); | ||
| client = OzoneClientFactory.getRpcClient(conf); | ||
| } | ||
|
|
||
| @AfterEach | ||
| public void tearDown() throws IOException { | ||
| if (cluster != null) { | ||
| cluster.shutdown(); | ||
| } | ||
| client.close(); | ||
| } | ||
|
|
||
| @Test | ||
| public void testPipelineCloseLogFloodDoesntOccur() throws Exception { | ||
| GenericTestUtils.LogCapturer logCapturer = GenericTestUtils.LogCapturer.captureLogs(XceiverServerRatis.class); | ||
| GenericTestUtils.setLogLevel(XceiverServerRatis.class, Level.WARN); | ||
|
priyeshkaratha marked this conversation as resolved.
Outdated
|
||
|
|
||
| client.getObjectStore().createVolume(VOLUME_NAME); | ||
| client.getObjectStore().getVolume(VOLUME_NAME).createBucket(BUCKET_NAME); | ||
| OzoneBucket ozoneBucket = client.getObjectStore().getVolume(VOLUME_NAME).getBucket(BUCKET_NAME); | ||
| ReplicationConfig config = ReplicationConfig.fromTypeAndFactor(ReplicationType.RATIS, ReplicationFactor.THREE); | ||
|
|
||
| try (OutputStream out = ozoneBucket.createKey("key", 1024, config, new HashMap<>())) { | ||
| out.write(new byte[1024]); | ||
| } | ||
|
priyeshkaratha marked this conversation as resolved.
Outdated
|
||
| // Kill one follower DN so that the pipeline becomes unhealthy | ||
| cluster.shutdownHddsDatanode(1); | ||
| Thread.sleep(15_000L); | ||
|
priyeshkaratha marked this conversation as resolved.
Outdated
|
||
| logCapturer.stopCapturing(); | ||
| int occurrences = StringUtils.countMatches(logCapturer.getOutput(), FLOOD_TOKEN); | ||
| //Follower slowness will happen for 2 pipelines since we are shutting down one node | ||
| assertThat(occurrences).isEqualTo(2); | ||
| } | ||
| } | ||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.