MAPREDUCE-6715. Fix Several Unsafe Practices (Contributed by Yufei Gu via Daniel Templeton)
(cherry picked from commit 0b8a7c18dd
)
This commit is contained in:
parent
9c61858ee7
commit
d1aa844dc6
|
@ -136,7 +136,12 @@ class CleanupQueue {
|
||||||
LOG.debug("DELETED " + context.fullPath);
|
LOG.debug("DELETED " + context.fullPath);
|
||||||
}
|
}
|
||||||
} catch (InterruptedException t) {
|
} catch (InterruptedException t) {
|
||||||
|
if (context == null) {
|
||||||
|
LOG.warn("Interrupted deletion of an invalid path: Path deletion "
|
||||||
|
+ "context is null.");
|
||||||
|
} else {
|
||||||
LOG.warn("Interrupted deletion of " + context.fullPath);
|
LOG.warn("Interrupted deletion of " + context.fullPath);
|
||||||
|
}
|
||||||
return;
|
return;
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
LOG.warn("Error deleting path " + context.fullPath + ": " + e);
|
LOG.warn("Error deleting path " + context.fullPath + ": " + e);
|
||||||
|
|
|
@ -411,8 +411,14 @@ public class MapTask extends Task {
|
||||||
LOG.warn(msg, e);
|
LOG.warn(msg, e);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (lastException != null) {
|
||||||
throw new IOException("Initialization of all the collectors failed. " +
|
throw new IOException("Initialization of all the collectors failed. " +
|
||||||
"Error in last collector was :" + lastException.getMessage(), lastException);
|
"Error in last collector was:" + lastException.toString(),
|
||||||
|
lastException);
|
||||||
|
} else {
|
||||||
|
throw new IOException("Initialization of all the collectors failed.");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@SuppressWarnings("unchecked")
|
@SuppressWarnings("unchecked")
|
||||||
|
|
|
@ -113,19 +113,18 @@ public class TextOutputFormat<K, V> extends FileOutputFormat<K, V> {
|
||||||
if (isCompressed) {
|
if (isCompressed) {
|
||||||
Class<? extends CompressionCodec> codecClass =
|
Class<? extends CompressionCodec> codecClass =
|
||||||
getOutputCompressorClass(job, GzipCodec.class);
|
getOutputCompressorClass(job, GzipCodec.class);
|
||||||
codec = (CompressionCodec) ReflectionUtils.newInstance(codecClass, conf);
|
codec = ReflectionUtils.newInstance(codecClass, conf);
|
||||||
extension = codec.getDefaultExtension();
|
extension = codec.getDefaultExtension();
|
||||||
}
|
}
|
||||||
Path file = getDefaultWorkFile(job, extension);
|
Path file = getDefaultWorkFile(job, extension);
|
||||||
FileSystem fs = file.getFileSystem(conf);
|
FileSystem fs = file.getFileSystem(conf);
|
||||||
if (!isCompressed) {
|
|
||||||
FSDataOutputStream fileOut = fs.create(file, false);
|
FSDataOutputStream fileOut = fs.create(file, false);
|
||||||
return new LineRecordWriter<K, V>(fileOut, keyValueSeparator);
|
if (isCompressed) {
|
||||||
} else {
|
return new LineRecordWriter<>(
|
||||||
FSDataOutputStream fileOut = fs.create(file, false);
|
new DataOutputStream(codec.createOutputStream(fileOut)),
|
||||||
return new LineRecordWriter<K, V>(new DataOutputStream
|
|
||||||
(codec.createOutputStream(fileOut)),
|
|
||||||
keyValueSeparator);
|
keyValueSeparator);
|
||||||
|
} else {
|
||||||
|
return new LineRecordWriter<>(fileOut, keyValueSeparator);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -437,18 +437,22 @@ public class ShuffleSchedulerImpl<K,V> implements ShuffleScheduler<K,V> {
|
||||||
wait();
|
wait();
|
||||||
}
|
}
|
||||||
|
|
||||||
MapHost host = null;
|
|
||||||
Iterator<MapHost> iter = pendingHosts.iterator();
|
Iterator<MapHost> iter = pendingHosts.iterator();
|
||||||
|
// Safe to take one because we know pendingHosts isn't empty
|
||||||
|
MapHost host = iter.next();
|
||||||
int numToPick = random.nextInt(pendingHosts.size());
|
int numToPick = random.nextInt(pendingHosts.size());
|
||||||
for (int i=0; i <= numToPick; ++i) {
|
for (int i = 0; i < numToPick; ++i) {
|
||||||
host = iter.next();
|
host = iter.next();
|
||||||
}
|
}
|
||||||
|
|
||||||
pendingHosts.remove(host);
|
pendingHosts.remove(host);
|
||||||
host.markBusy();
|
host.markBusy();
|
||||||
|
|
||||||
LOG.debug("Assigning " + host + " with " + host.getNumKnownMapOutputs() +
|
if (LOG.isDebugEnabled()) {
|
||||||
" to " + Thread.currentThread().getName());
|
LOG.debug(
|
||||||
|
"Assigning " + host + " with " + host.getNumKnownMapOutputs() + " to "
|
||||||
|
+ Thread.currentThread().getName());
|
||||||
|
}
|
||||||
SHUFFLE_START.set(Time.monotonicNow());
|
SHUFFLE_START.set(Time.monotonicNow());
|
||||||
|
|
||||||
return host;
|
return host;
|
||||||
|
@ -477,8 +481,10 @@ public class ShuffleSchedulerImpl<K,V> implements ShuffleScheduler<K,V> {
|
||||||
host.addKnownMap(id);
|
host.addKnownMap(id);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
LOG.debug("assigned " + includedMaps + " of " + totalSize + " to " +
|
if (LOG.isDebugEnabled()) {
|
||||||
host + " to " + Thread.currentThread().getName());
|
LOG.debug("assigned " + includedMaps + " of " + totalSize + " to " + host
|
||||||
|
+ " to " + Thread.currentThread().getName());
|
||||||
|
}
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -153,6 +153,11 @@ public class Pentomino {
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (piece == null) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
// for each point where the piece was placed, mark it with the piece name
|
// for each point where the piece was placed, mark it with the piece name
|
||||||
for(ColumnName item: row) {
|
for(ColumnName item: row) {
|
||||||
if (item instanceof Point) {
|
if (item instanceof Point) {
|
||||||
|
|
|
@ -73,14 +73,14 @@ class TeraScheduler {
|
||||||
|
|
||||||
List<String> readFile(String filename) throws IOException {
|
List<String> readFile(String filename) throws IOException {
|
||||||
List<String> result = new ArrayList<String>(10000);
|
List<String> result = new ArrayList<String>(10000);
|
||||||
BufferedReader in = new BufferedReader(
|
try (BufferedReader in = new BufferedReader(
|
||||||
new InputStreamReader(new FileInputStream(filename), Charsets.UTF_8));
|
new InputStreamReader(new FileInputStream(filename), Charsets.UTF_8))) {
|
||||||
String line = in.readLine();
|
String line = in.readLine();
|
||||||
while (line != null) {
|
while (line != null) {
|
||||||
result.add(line);
|
result.add(line);
|
||||||
line = in.readLine();
|
line = in.readLine();
|
||||||
}
|
}
|
||||||
in.close();
|
}
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue