Merge -r 1170285:1170286 from branch-0.20-security to trunk to fix MAPREDUCE-2549.
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1170288 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
88ff272cfd
commit
4d90df82a9
@ -36,6 +36,7 @@
|
||||
import org.apache.hadoop.conf.Configuration;
|
||||
import org.apache.hadoop.eclipse.Activator;
|
||||
import org.apache.hadoop.fs.FileSystem;
|
||||
import org.apache.hadoop.io.IOUtils;
|
||||
import org.apache.hadoop.mapred.JobClient;
|
||||
import org.apache.hadoop.mapred.JobConf;
|
||||
import org.apache.hadoop.mapred.JobID;
|
||||
@ -420,8 +421,14 @@ public void setLocationName(String newName) {
|
||||
*/
|
||||
public void storeSettingsToFile(File file) throws IOException {
|
||||
FileOutputStream fos = new FileOutputStream(file);
|
||||
this.conf.writeXml(fos);
|
||||
fos.close();
|
||||
try {
|
||||
this.conf.writeXml(fos);
|
||||
fos.close();
|
||||
fos = null;
|
||||
} finally {
|
||||
IOUtils.closeStream(fos);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
/* @inheritDoc */
|
||||
|
@ -28,6 +28,7 @@
|
||||
import org.apache.hadoop.eclipse.ErrorMessageDialog;
|
||||
import org.apache.hadoop.eclipse.server.HadoopServer;
|
||||
import org.apache.hadoop.eclipse.server.JarModule;
|
||||
import org.apache.hadoop.io.IOUtils;
|
||||
import org.apache.hadoop.mapred.JobConf;
|
||||
import org.eclipse.core.resources.IFile;
|
||||
import org.eclipse.core.runtime.CoreException;
|
||||
@ -164,8 +165,13 @@ public boolean performFinish() {
|
||||
// confDir);
|
||||
File confFile = new File(confDir, "core-site.xml");
|
||||
FileOutputStream fos = new FileOutputStream(confFile);
|
||||
conf.writeXml(fos);
|
||||
fos.close();
|
||||
try {
|
||||
conf.writeXml(fos);
|
||||
fos.close();
|
||||
fos = null;
|
||||
} finally {
|
||||
IOUtils.closeStream(fos);
|
||||
}
|
||||
|
||||
} catch (IOException ioe) {
|
||||
ioe.printStackTrace();
|
||||
|
@ -23,6 +23,7 @@
|
||||
import java.util.*;
|
||||
|
||||
import org.apache.hadoop.classification.InterfaceAudience;
|
||||
import org.apache.hadoop.io.IOUtils;
|
||||
|
||||
/**
|
||||
* This is a class used to get the current environment
|
||||
@ -62,17 +63,24 @@ public Environment() throws IOException {
|
||||
|
||||
Process pid = Runtime.getRuntime().exec(command);
|
||||
BufferedReader in = new BufferedReader(new InputStreamReader(pid.getInputStream()));
|
||||
while (true) {
|
||||
String line = in.readLine();
|
||||
if (line == null) break;
|
||||
int p = line.indexOf("=");
|
||||
if (p != -1) {
|
||||
String name = line.substring(0, p);
|
||||
String value = line.substring(p + 1);
|
||||
setProperty(name, value);
|
||||
try {
|
||||
while (true) {
|
||||
String line = in.readLine();
|
||||
if (line == null)
|
||||
break;
|
||||
int p = line.indexOf("=");
|
||||
if (p != -1) {
|
||||
String name = line.substring(0, p);
|
||||
String value = line.substring(p + 1);
|
||||
setProperty(name, value);
|
||||
}
|
||||
}
|
||||
in.close();
|
||||
in = null;
|
||||
} finally {
|
||||
IOUtils.closeStream(in);
|
||||
}
|
||||
in.close();
|
||||
|
||||
try {
|
||||
pid.waitFor();
|
||||
} catch (InterruptedException e) {
|
||||
|
Loading…
Reference in New Issue
Block a user