File tree Expand file tree Collapse file tree 2 files changed +32
-0
lines changed
hadoop-mapreduce-client/hadoop-mapreduce-client-jobclient/src/test/resources Expand file tree Collapse file tree 2 files changed +32
-0
lines changed Original file line number Diff line number Diff 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+
372375Release 2.0.4-alpha - UNRELEASED
373376
374377 INCOMPATIBLE CHANGES
Original file line number Diff line number Diff line change 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 >
You can’t perform that action at this time.
0 commit comments