HADOOP-8753. LocalDirAllocator throws ArithmeticException: divide by zero when there is no available space on configured local dir. Contributed by Benoy Antony.
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1550570 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
8a79be36bd
commit
288506022f
|
@ -282,6 +282,9 @@ Trunk (Unreleased)
|
||||||
|
|
||||||
HADOOP-10044 Improve the javadoc of rpc code (sanjay Radia)
|
HADOOP-10044 Improve the javadoc of rpc code (sanjay Radia)
|
||||||
|
|
||||||
|
HADOOP-8753. LocalDirAllocator throws "ArithmeticException: / by zero" when
|
||||||
|
there is no available space on configured local dir. (Benoy Antony via hitesh)
|
||||||
|
|
||||||
OPTIMIZATIONS
|
OPTIMIZATIONS
|
||||||
|
|
||||||
HADOOP-7761. Improve the performance of raw comparisons. (todd)
|
HADOOP-7761. Improve the performance of raw comparisons. (todd)
|
||||||
|
|
|
@ -365,6 +365,10 @@ public class LocalDirAllocator {
|
||||||
totalAvailable += availableOnDisk[i];
|
totalAvailable += availableOnDisk[i];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (totalAvailable == 0){
|
||||||
|
throw new DiskErrorException("No space available in any of the local directories.");
|
||||||
|
}
|
||||||
|
|
||||||
// Keep rolling the wheel till we get a valid path
|
// Keep rolling the wheel till we get a valid path
|
||||||
Random r = new java.util.Random();
|
Random r = new java.util.Random();
|
||||||
while (numDirsSearched < numDirs && returnPath == null) {
|
while (numDirsSearched < numDirs && returnPath == null) {
|
||||||
|
|
Loading…
Reference in New Issue