HDFS-8179. DFSClient#getServerDefaults returns null within 1 hour of system start. (Contributed by Xiaoyu Yao)
This commit is contained in:
parent
d50e8f0928
commit
c92f6f3605
|
@ -19,6 +19,7 @@ package org.apache.hadoop.fs;
|
|||
|
||||
import java.io.IOException;
|
||||
|
||||
import org.apache.commons.logging.LogFactory;
|
||||
import org.apache.hadoop.classification.InterfaceAudience;
|
||||
import org.apache.hadoop.classification.InterfaceStability;
|
||||
import org.apache.hadoop.conf.Configuration;
|
||||
|
@ -33,6 +34,9 @@ import org.apache.hadoop.conf.Configured;
|
|||
@InterfaceAudience.Public
|
||||
@InterfaceStability.Stable
|
||||
public class Trash extends Configured {
|
||||
private static final org.apache.commons.logging.Log LOG =
|
||||
LogFactory.getLog(Trash.class);
|
||||
|
||||
private TrashPolicy trashPolicy; // configured trash policy instance
|
||||
|
||||
/**
|
||||
|
@ -84,6 +88,7 @@ public class Trash extends Configured {
|
|||
} catch (Exception e) {
|
||||
// If we can not determine that trash is enabled server side then
|
||||
// bail rather than potentially deleting a file when trash is enabled.
|
||||
LOG.warn("Failed to get server trash configuration", e);
|
||||
throw new IOException("Failed to get server trash configuration", e);
|
||||
}
|
||||
Trash trash = new Trash(fullyResolvedFs, conf);
|
||||
|
|
|
@ -134,11 +134,11 @@ public class TrashPolicyDefault extends TrashPolicy {
|
|||
for (int i = 0; i < 2; i++) {
|
||||
try {
|
||||
if (!fs.mkdirs(baseTrashPath, PERMISSION)) { // create current
|
||||
LOG.warn("Can't create(mkdir) trash directory: "+baseTrashPath);
|
||||
LOG.warn("Can't create(mkdir) trash directory: " + baseTrashPath);
|
||||
return false;
|
||||
}
|
||||
} catch (IOException e) {
|
||||
LOG.warn("Can't create trash directory: "+baseTrashPath);
|
||||
LOG.warn("Can't create trash directory: " + baseTrashPath, e);
|
||||
cause = e;
|
||||
break;
|
||||
}
|
||||
|
|
|
@ -561,6 +561,9 @@ Release 2.7.1 - UNRELEASED
|
|||
HDFS-8153. Error Message points to wrong parent directory in case of
|
||||
path component name length error (Anu Engineer via jitendra)
|
||||
|
||||
HDFS-8179. DFSClient#getServerDefaults returns null within 1
|
||||
hour of system start. (Xiaoyu Yao via Arpit Agarwal)
|
||||
|
||||
Release 2.7.0 - UNRELEASED
|
||||
|
||||
INCOMPATIBLE CHANGES
|
||||
|
|
|
@ -651,10 +651,12 @@ public class DFSClient implements java.io.Closeable, RemotePeerFactory,
|
|||
*/
|
||||
public FsServerDefaults getServerDefaults() throws IOException {
|
||||
long now = Time.monotonicNow();
|
||||
if (now - serverDefaultsLastUpdate > SERVER_DEFAULTS_VALIDITY_PERIOD) {
|
||||
if ((serverDefaults == null) ||
|
||||
(now - serverDefaultsLastUpdate > SERVER_DEFAULTS_VALIDITY_PERIOD)) {
|
||||
serverDefaults = namenode.getServerDefaults();
|
||||
serverDefaultsLastUpdate = now;
|
||||
}
|
||||
assert serverDefaults != null;
|
||||
return serverDefaults;
|
||||
}
|
||||
|
||||
|
|
|
@ -52,6 +52,7 @@ import org.apache.hadoop.fs.CommonConfigurationKeysPublic;
|
|||
import org.apache.hadoop.fs.CreateFlag;
|
||||
import org.apache.hadoop.fs.FSDataInputStream;
|
||||
import org.apache.hadoop.fs.FSDataOutputStream;
|
||||
import org.apache.hadoop.fs.FsServerDefaults;
|
||||
import org.apache.hadoop.fs.FileChecksum;
|
||||
import org.apache.hadoop.fs.FileStatus;
|
||||
import org.apache.hadoop.fs.FileSystem;
|
||||
|
@ -997,4 +998,18 @@ public class TestDistributedFileSystem {
|
|||
cluster.shutdown();
|
||||
}
|
||||
}
|
||||
|
||||
@Test(timeout=60000)
|
||||
public void testGetServerDefaults() throws IOException {
|
||||
Configuration conf = new HdfsConfiguration();
|
||||
MiniDFSCluster cluster = new MiniDFSCluster.Builder(conf).build();
|
||||
try {
|
||||
cluster.waitActive();
|
||||
DistributedFileSystem dfs = cluster.getFileSystem();
|
||||
FsServerDefaults fsServerDefaults = dfs.getServerDefaults();
|
||||
Assert.assertNotNull(fsServerDefaults);
|
||||
} finally {
|
||||
cluster.shutdown();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue