|
@@ -640,6 +640,7 @@ public class DFSClient implements java.io.Closeable, RemotePeerFactory,
|
|
|
* @see ClientProtocol#getPreferredBlockSize(String)
|
|
|
*/
|
|
|
public long getBlockSize(String f) throws IOException {
|
|
|
+ checkOpen();
|
|
|
TraceScope scope = getPathTraceScope("getBlockSize", f);
|
|
|
try {
|
|
|
return namenode.getPreferredBlockSize(f);
|
|
@@ -656,6 +657,7 @@ public class DFSClient implements java.io.Closeable, RemotePeerFactory,
|
|
|
* @see ClientProtocol#getServerDefaults()
|
|
|
*/
|
|
|
public FsServerDefaults getServerDefaults() throws IOException {
|
|
|
+ checkOpen();
|
|
|
long now = Time.monotonicNow();
|
|
|
if ((serverDefaults == null) ||
|
|
|
(now - serverDefaultsLastUpdate > SERVER_DEFAULTS_VALIDITY_PERIOD)) {
|
|
@@ -847,6 +849,7 @@ public class DFSClient implements java.io.Closeable, RemotePeerFactory,
|
|
|
* @see ClientProtocol#reportBadBlocks(LocatedBlock[])
|
|
|
*/
|
|
|
public void reportBadBlocks(LocatedBlock[] blocks) throws IOException {
|
|
|
+ checkOpen();
|
|
|
namenode.reportBadBlocks(blocks);
|
|
|
}
|
|
|
|
|
@@ -920,6 +923,7 @@ public class DFSClient implements java.io.Closeable, RemotePeerFactory,
|
|
|
*/
|
|
|
public BlockLocation[] getBlockLocations(String src, long start,
|
|
|
long length) throws IOException, UnresolvedLinkException {
|
|
|
+ checkOpen();
|
|
|
TraceScope scope = getPathTraceScope("getBlockLocations", src);
|
|
|
try {
|
|
|
LocatedBlocks blocks = getLocatedBlocks(src, start, length);
|
|
@@ -954,6 +958,7 @@ public class DFSClient implements java.io.Closeable, RemotePeerFactory,
|
|
|
public BlockStorageLocation[] getBlockStorageLocations(
|
|
|
List<BlockLocation> blockLocations) throws IOException,
|
|
|
UnsupportedOperationException, InvalidBlockTokenException {
|
|
|
+ checkOpen();
|
|
|
if (!getConf().isHdfsBlocksMetadataEnabled()) {
|
|
|
throw new UnsupportedOperationException("Datanode-side support for " +
|
|
|
"getVolumeBlockLocations() must also be enabled in the client " +
|
|
@@ -1420,6 +1425,7 @@ public class DFSClient implements java.io.Closeable, RemotePeerFactory,
|
|
|
*/
|
|
|
public void createSymlink(String target, String link, boolean createParent)
|
|
|
throws IOException {
|
|
|
+ checkOpen();
|
|
|
TraceScope scope = getPathTraceScope("createSymlink", target);
|
|
|
try {
|
|
|
final FsPermission dirPerm = applyUMask(null);
|
|
@@ -1542,6 +1548,7 @@ public class DFSClient implements java.io.Closeable, RemotePeerFactory,
|
|
|
*/
|
|
|
public boolean setReplication(String src, short replication)
|
|
|
throws IOException {
|
|
|
+ checkOpen();
|
|
|
TraceScope scope = getPathTraceScope("setReplication", src);
|
|
|
try {
|
|
|
return namenode.setReplication(src, replication);
|
|
@@ -1565,6 +1572,7 @@ public class DFSClient implements java.io.Closeable, RemotePeerFactory,
|
|
|
*/
|
|
|
public void setStoragePolicy(String src, String policyName)
|
|
|
throws IOException {
|
|
|
+ checkOpen();
|
|
|
TraceScope scope = getPathTraceScope("setStoragePolicy", src);
|
|
|
try {
|
|
|
namenode.setStoragePolicy(src, policyName);
|
|
@@ -1584,6 +1592,7 @@ public class DFSClient implements java.io.Closeable, RemotePeerFactory,
|
|
|
* @return All the existing storage policies
|
|
|
*/
|
|
|
public BlockStoragePolicy[] getStoragePolicies() throws IOException {
|
|
|
+ checkOpen();
|
|
|
TraceScope scope = Trace.startSpan("getStoragePolicies", traceSampler);
|
|
|
try {
|
|
|
return namenode.getStoragePolicies();
|
|
@@ -2231,6 +2240,7 @@ public class DFSClient implements java.io.Closeable, RemotePeerFactory,
|
|
|
* @see ClientProtocol#setSafeMode(HdfsConstants.SafeModeAction,boolean)
|
|
|
*/
|
|
|
public boolean setSafeMode(SafeModeAction action) throws IOException {
|
|
|
+ checkOpen();
|
|
|
return setSafeMode(action, false);
|
|
|
}
|
|
|
|
|
@@ -2433,6 +2443,7 @@ public class DFSClient implements java.io.Closeable, RemotePeerFactory,
|
|
|
|
|
|
public RemoteIterator<CacheDirectiveEntry> listCacheDirectives(
|
|
|
CacheDirectiveInfo filter) throws IOException {
|
|
|
+ checkOpen();
|
|
|
return new CacheDirectiveIterator(namenode, filter, traceSampler);
|
|
|
}
|
|
|
|
|
@@ -2473,6 +2484,7 @@ public class DFSClient implements java.io.Closeable, RemotePeerFactory,
|
|
|
}
|
|
|
|
|
|
public RemoteIterator<CachePoolEntry> listCachePools() throws IOException {
|
|
|
+ checkOpen();
|
|
|
return new CachePoolIterator(namenode, traceSampler);
|
|
|
}
|
|
|
|
|
@@ -2482,6 +2494,7 @@ public class DFSClient implements java.io.Closeable, RemotePeerFactory,
|
|
|
* @see ClientProtocol#saveNamespace()
|
|
|
*/
|
|
|
void saveNamespace() throws AccessControlException, IOException {
|
|
|
+ checkOpen();
|
|
|
TraceScope scope = Trace.startSpan("saveNamespace", traceSampler);
|
|
|
try {
|
|
|
namenode.saveNamespace();
|
|
@@ -2499,6 +2512,7 @@ public class DFSClient implements java.io.Closeable, RemotePeerFactory,
|
|
|
* @see ClientProtocol#rollEdits()
|
|
|
*/
|
|
|
long rollEdits() throws AccessControlException, IOException {
|
|
|
+ checkOpen();
|
|
|
TraceScope scope = Trace.startSpan("rollEdits", traceSampler);
|
|
|
try {
|
|
|
return namenode.rollEdits();
|
|
@@ -2521,6 +2535,7 @@ public class DFSClient implements java.io.Closeable, RemotePeerFactory,
|
|
|
*/
|
|
|
boolean restoreFailedStorage(String arg)
|
|
|
throws AccessControlException, IOException{
|
|
|
+ checkOpen();
|
|
|
TraceScope scope = Trace.startSpan("restoreFailedStorage", traceSampler);
|
|
|
try {
|
|
|
return namenode.restoreFailedStorage(arg);
|
|
@@ -2537,6 +2552,7 @@ public class DFSClient implements java.io.Closeable, RemotePeerFactory,
|
|
|
* @see ClientProtocol#refreshNodes()
|
|
|
*/
|
|
|
public void refreshNodes() throws IOException {
|
|
|
+ checkOpen();
|
|
|
TraceScope scope = Trace.startSpan("refreshNodes", traceSampler);
|
|
|
try {
|
|
|
namenode.refreshNodes();
|
|
@@ -2551,6 +2567,7 @@ public class DFSClient implements java.io.Closeable, RemotePeerFactory,
|
|
|
* @see ClientProtocol#metaSave(String)
|
|
|
*/
|
|
|
public void metaSave(String pathname) throws IOException {
|
|
|
+ checkOpen();
|
|
|
TraceScope scope = Trace.startSpan("metaSave", traceSampler);
|
|
|
try {
|
|
|
namenode.metaSave(pathname);
|
|
@@ -2568,6 +2585,7 @@ public class DFSClient implements java.io.Closeable, RemotePeerFactory,
|
|
|
* @see ClientProtocol#setBalancerBandwidth(long)
|
|
|
*/
|
|
|
public void setBalancerBandwidth(long bandwidth) throws IOException {
|
|
|
+ checkOpen();
|
|
|
TraceScope scope = Trace.startSpan("setBalancerBandwidth", traceSampler);
|
|
|
try {
|
|
|
namenode.setBalancerBandwidth(bandwidth);
|
|
@@ -2580,6 +2598,7 @@ public class DFSClient implements java.io.Closeable, RemotePeerFactory,
|
|
|
* @see ClientProtocol#finalizeUpgrade()
|
|
|
*/
|
|
|
public void finalizeUpgrade() throws IOException {
|
|
|
+ checkOpen();
|
|
|
TraceScope scope = Trace.startSpan("finalizeUpgrade", traceSampler);
|
|
|
try {
|
|
|
namenode.finalizeUpgrade();
|
|
@@ -2589,6 +2608,7 @@ public class DFSClient implements java.io.Closeable, RemotePeerFactory,
|
|
|
}
|
|
|
|
|
|
RollingUpgradeInfo rollingUpgrade(RollingUpgradeAction action) throws IOException {
|
|
|
+ checkOpen();
|
|
|
TraceScope scope = Trace.startSpan("rollingUpgrade", traceSampler);
|
|
|
try {
|
|
|
return namenode.rollingUpgrade(action);
|
|
@@ -2674,6 +2694,7 @@ public class DFSClient implements java.io.Closeable, RemotePeerFactory,
|
|
|
* @see ClientProtocol#getContentSummary(String)
|
|
|
*/
|
|
|
ContentSummary getContentSummary(String src) throws IOException {
|
|
|
+ checkOpen();
|
|
|
TraceScope scope = getPathTraceScope("getContentSummary", src);
|
|
|
try {
|
|
|
return namenode.getContentSummary(src);
|
|
@@ -2692,6 +2713,7 @@ public class DFSClient implements java.io.Closeable, RemotePeerFactory,
|
|
|
*/
|
|
|
void setQuota(String src, long namespaceQuota, long storagespaceQuota)
|
|
|
throws IOException {
|
|
|
+ checkOpen();
|
|
|
// sanity check
|
|
|
if ((namespaceQuota <= 0 && namespaceQuota != HdfsConstants.QUOTA_DONT_SET &&
|
|
|
namespaceQuota != HdfsConstants.QUOTA_RESET) ||
|
|
@@ -2725,6 +2747,7 @@ public class DFSClient implements java.io.Closeable, RemotePeerFactory,
|
|
|
*/
|
|
|
void setQuotaByStorageType(String src, StorageType type, long quota)
|
|
|
throws IOException {
|
|
|
+ checkOpen();
|
|
|
if (quota <= 0 && quota != HdfsConstants.QUOTA_DONT_SET &&
|
|
|
quota != HdfsConstants.QUOTA_RESET) {
|
|
|
throw new IllegalArgumentException("Invalid values for quota :" +
|
|
@@ -3070,11 +3093,13 @@ public class DFSClient implements java.io.Closeable, RemotePeerFactory,
|
|
|
}
|
|
|
|
|
|
public DFSInotifyEventInputStream getInotifyEventStream() throws IOException {
|
|
|
+ checkOpen();
|
|
|
return new DFSInotifyEventInputStream(traceSampler, namenode);
|
|
|
}
|
|
|
|
|
|
public DFSInotifyEventInputStream getInotifyEventStream(long lastReadTxid)
|
|
|
throws IOException {
|
|
|
+ checkOpen();
|
|
|
return new DFSInotifyEventInputStream(traceSampler, namenode, lastReadTxid);
|
|
|
}
|
|
|
|