This is an automated email from the ASF dual-hosted git repository.
ayushsaxena pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/hadoop.git
The following commit(s) were added to refs/heads/trunk by this push:
new 454420e HDFS-14708.
TestLargeBlockReport#testBlockReportSucceedsWithLargerLengthLimit fails in
trunk. Contributed by Lisheng Sun.
454420e is described below
commit 454420e4f25c7e6c29bbeff3ca055dda59dd5b7b
Author: Ayush Saxena <[email protected]>
AuthorDate: Tue Aug 13 08:27:20 2019 +0530
HDFS-14708.
TestLargeBlockReport#testBlockReportSucceedsWithLargerLengthLimit fails in
trunk. Contributed by Lisheng Sun.
---
.../org/apache/hadoop/hdfs/server/datanode/TestLargeBlockReport.java | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git
a/hadoop-hdfs-project/hadoop-hdfs/src/test/java/org/apache/hadoop/hdfs/server/datanode/TestLargeBlockReport.java
b/hadoop-hdfs-project/hadoop-hdfs/src/test/java/org/apache/hadoop/hdfs/server/datanode/TestLargeBlockReport.java
index bd9c0a2..f5a6892 100644
---
a/hadoop-hdfs-project/hadoop-hdfs/src/test/java/org/apache/hadoop/hdfs/server/datanode/TestLargeBlockReport.java
+++
b/hadoop-hdfs-project/hadoop-hdfs/src/test/java/org/apache/hadoop/hdfs/server/datanode/TestLargeBlockReport.java
@@ -18,6 +18,7 @@
package org.apache.hadoop.hdfs.server.datanode;
import static
org.apache.hadoop.fs.CommonConfigurationKeys.IPC_MAXIMUM_DATA_LENGTH;
+import static
org.apache.hadoop.fs.CommonConfigurationKeys.IPC_MAXIMUM_DATA_LENGTH_DEFAULT;
import static org.junit.Assert.*;
import java.util.ArrayList;
@@ -91,7 +92,7 @@ public class TestLargeBlockReport {
@Test
public void testBlockReportSucceedsWithLargerLengthLimit() throws Exception {
- conf.setInt(IPC_MAXIMUM_DATA_LENGTH, 128 * 1024 * 1024); // 128 MB
+ conf.setInt(IPC_MAXIMUM_DATA_LENGTH, IPC_MAXIMUM_DATA_LENGTH_DEFAULT * 2);
initCluster();
StorageBlockReport[] reports = createReports(6000000);
nnProxy.blockReport(bpRegistration, bpId, reports,
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]