HADOOP-6614. RunJar should provide more diags when it can't create a temp file. Contributed by Jonathan Hsieh
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1204388 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
d4306d4bd1
commit
eec2782287
@ -118,9 +118,6 @@ Release 0.23.1 - Unreleased
|
|||||||
HADOOP-7802. Hadoop scripts unconditionally source
|
HADOOP-7802. Hadoop scripts unconditionally source
|
||||||
"$bin"/../libexec/hadoop-config.sh. (Bruno Mahé via tomwhite)
|
"$bin"/../libexec/hadoop-config.sh. (Bruno Mahé via tomwhite)
|
||||||
|
|
||||||
HADOOP-6614. RunJar should provide more diags when it can't create
|
|
||||||
a temp file. (Jonathan Hsieh via eli)
|
|
||||||
|
|
||||||
OPTIMIZATIONS
|
OPTIMIZATIONS
|
||||||
|
|
||||||
BUG FIXES
|
BUG FIXES
|
||||||
@ -131,6 +128,9 @@ Release 0.23.1 - Unreleased
|
|||||||
HADOOP-7787. Make source tarball use conventional name.
|
HADOOP-7787. Make source tarball use conventional name.
|
||||||
(Bruno Mahé via tomwhite)
|
(Bruno Mahé via tomwhite)
|
||||||
|
|
||||||
|
HADOOP-6614. RunJar should provide more diags when it can't create
|
||||||
|
a temp file. (Jonathan Hsieh via eli)
|
||||||
|
|
||||||
Release 0.23.0 - 2011-11-01
|
Release 0.23.0 - 2011-11-01
|
||||||
|
|
||||||
INCOMPATIBLE CHANGES
|
INCOMPATIBLE CHANGES
|
||||||
|
@ -149,7 +149,18 @@ public static void main(String[] args) throws Throwable {
|
|||||||
File tmpDir = new File(new Configuration().get("hadoop.tmp.dir"));
|
File tmpDir = new File(new Configuration().get("hadoop.tmp.dir"));
|
||||||
ensureDirectory(tmpDir);
|
ensureDirectory(tmpDir);
|
||||||
|
|
||||||
final File workDir = File.createTempFile("hadoop-unjar", "", tmpDir);
|
final File workDir;
|
||||||
|
try {
|
||||||
|
workDir = File.createTempFile("hadoop-unjar", "", tmpDir);
|
||||||
|
} catch (IOException ioe) {
|
||||||
|
// If user has insufficient perms to write to tmpDir, default
|
||||||
|
// "Permission denied" message doesn't specify a filename.
|
||||||
|
System.err.println("Error creating temp dir in hadoop.tmp.dir "
|
||||||
|
+ tmpDir + " due to " + ioe.getMessage());
|
||||||
|
System.exit(-1);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
if (!workDir.delete()) {
|
if (!workDir.delete()) {
|
||||||
System.err.println("Delete failed for " + workDir);
|
System.err.println("Delete failed for " + workDir);
|
||||||
System.exit(-1);
|
System.exit(-1);
|
||||||
|
Loading…
Reference in New Issue
Block a user