Skip to content

Commit 0ee47a3

Browse files
committed
MAPREDUCE-5193. A few MR tests use block sizes which are smaller than the default minimum block size. Contributed by Andrew Wang.
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1478250 13f79535-47bb-0310-9956-ffa450edef68
1 parent 08eaa3d commit 0ee47a3

File tree

2 files changed

+32
-0
lines changed
  • hadoop-mapreduce-project

2 files changed

+32
-0
lines changed

hadoop-mapreduce-project/CHANGES.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -369,6 +369,9 @@ Release 2.0.5-beta - UNRELEASED
369369
versionInfo has parantheses like when running on a git checkout. (Hitesh Shah
370370
via vinodkv)
371371

372+
MAPREDUCE-5193. A few MR tests use block sizes which are smaller than the
373+
default minimum block size. (Andrew Wang via atm)
374+
372375
Release 2.0.4-alpha - UNRELEASED
373376

374377
INCOMPATIBLE CHANGES
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
<?xml version="1.0"?>
2+
<?xml-stylesheet type="text/xsl" href="configuration.xsl"?>
3+
<!--
4+
Licensed to the Apache Software Foundation (ASF) under one or more
5+
contributor license agreements. See the NOTICE file distributed with
6+
this work for additional information regarding copyright ownership.
7+
The ASF licenses this file to You under the Apache License, Version 2.0
8+
(the "License"); you may not use this file except in compliance with
9+
the License. You may obtain a copy of the License at
10+
11+
http://www.apache.org/licenses/LICENSE-2.0
12+
13+
Unless required by applicable law or agreed to in writing, software
14+
distributed under the License is distributed on an "AS IS" BASIS,
15+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16+
See the License for the specific language governing permissions and
17+
limitations under the License.
18+
-->
19+
20+
<!-- Put site-specific property overrides in this file. -->
21+
22+
<configuration>
23+
<!-- Disable min block size since most tests use tiny blocks -->
24+
<property>
25+
<name>dfs.namenode.fs-limits.min-block-size</name>
26+
<value>0</value>
27+
</property>
28+
29+
</configuration>

0 commit comments

Comments
 (0)