Repository: hadoop Updated Branches: refs/heads/branch-3.1 8b9376a08 -> 50de2676a
MAPREDUCE-7052. TestFixedLengthInputFormat#testFormatCompressedIn is flaky. Contributed by Peter Bacsko (cherry picked from commit a53d62ab26e170a0338f93e228718da52e9196e4) Project: http://git-wip-us.apache.org/repos/asf/hadoop/repo Commit: http://git-wip-us.apache.org/repos/asf/hadoop/commit/50de2676 Tree: http://git-wip-us.apache.org/repos/asf/hadoop/tree/50de2676 Diff: http://git-wip-us.apache.org/repos/asf/hadoop/diff/50de2676 Branch: refs/heads/branch-3.1 Commit: 50de2676a1ed605e92d1fd9a0d0267076e0f951c Parents: 8b9376a Author: Jason Lowe <[email protected]> Authored: Thu Feb 15 15:12:57 2018 -0600 Committer: Jason Lowe <[email protected]> Committed: Thu Feb 15 15:16:39 2018 -0600 ---------------------------------------------------------------------- .../java/org/apache/hadoop/mapred/TestFixedLengthInputFormat.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hadoop/blob/50de2676/hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-jobclient/src/test/java/org/apache/hadoop/mapred/TestFixedLengthInputFormat.java ---------------------------------------------------------------------- diff --git a/hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-jobclient/src/test/java/org/apache/hadoop/mapred/TestFixedLengthInputFormat.java b/hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-jobclient/src/test/java/org/apache/hadoop/mapred/TestFixedLengthInputFormat.java index 4864dd0..5134729 100644 --- a/hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-jobclient/src/test/java/org/apache/hadoop/mapred/TestFixedLengthInputFormat.java +++ b/hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-jobclient/src/test/java/org/apache/hadoop/mapred/TestFixedLengthInputFormat.java @@ -301,7 +301,7 @@ public class TestFixedLengthInputFormat { if (i > 0) { if (i == (MAX_TESTS-1)) { // Test a split size that is less than record len - numSplits = (int)(fileSize/Math.floor(recordLength/2)); + numSplits = (int)(fileSize/ Math.max(1, Math.floor(recordLength/2))); } else { if (MAX_TESTS % i == 0) { // Let us create a split size that is forced to be --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
