|
@@ -1742,6 +1742,7 @@ public class FSNamesystem implements Namesystem, FSNamesystemMBean,
|
|
|
|
|
|
if (res.updateAccessTime()) {
|
|
|
String src = srcArg;
|
|
|
+ checkOperation(OperationCategory.WRITE);
|
|
|
writeLock();
|
|
|
final long now = now();
|
|
|
try {
|
|
@@ -1896,6 +1897,7 @@ public class FSNamesystem implements Namesystem, FSNamesystemMBean,
|
|
|
final String operationName = "concat";
|
|
|
HdfsFileStatus stat = null;
|
|
|
boolean success = false;
|
|
|
+ checkOperation(OperationCategory.WRITE);
|
|
|
writeLock();
|
|
|
try {
|
|
|
checkOperation(OperationCategory.WRITE);
|
|
@@ -6330,6 +6332,7 @@ public class FSNamesystem implements Namesystem, FSNamesystemMBean,
|
|
|
String clientName, ExtendedBlock oldBlock, ExtendedBlock newBlock,
|
|
|
DatanodeID[] newNodes, String[] newStorageIDs, boolean logRetryCache)
|
|
|
throws IOException {
|
|
|
+ checkOperation(OperationCategory.WRITE);
|
|
|
LOG.info("updatePipeline(" + oldBlock.getLocalBlock()
|
|
|
+ ", newGS=" + newBlock.getGenerationStamp()
|
|
|
+ ", newLength=" + newBlock.getNumBytes()
|
|
@@ -7462,6 +7465,7 @@ public class FSNamesystem implements Namesystem, FSNamesystemMBean,
|
|
|
boolean logRetryCache) throws IOException {
|
|
|
final String operationName = "deleteSnapshot";
|
|
|
boolean success = false;
|
|
|
+ checkOperation(OperationCategory.WRITE);
|
|
|
writeLock();
|
|
|
BlocksMapUpdateInfo blocksToBeDeleted = null;
|
|
|
try {
|
|
@@ -7501,6 +7505,7 @@ public class FSNamesystem implements Namesystem, FSNamesystemMBean,
|
|
|
checkOperation(OperationCategory.READ);
|
|
|
readLock();
|
|
|
try {
|
|
|
+ checkOperation(OperationCategory.READ);
|
|
|
if (!isRollingUpgrade()) {
|
|
|
return null;
|
|
|
}
|
|
@@ -7694,6 +7699,7 @@ public class FSNamesystem implements Namesystem, FSNamesystemMBean,
|
|
|
if (!flags.contains(CacheFlag.FORCE)) {
|
|
|
cacheManager.waitForRescanIfNeeded();
|
|
|
}
|
|
|
+ checkOperation(OperationCategory.WRITE);
|
|
|
writeLock();
|
|
|
try {
|
|
|
checkOperation(OperationCategory.WRITE);
|
|
@@ -7725,6 +7731,7 @@ public class FSNamesystem implements Namesystem, FSNamesystemMBean,
|
|
|
if (!flags.contains(CacheFlag.FORCE)) {
|
|
|
cacheManager.waitForRescanIfNeeded();
|
|
|
}
|
|
|
+ checkOperation(OperationCategory.WRITE);
|
|
|
writeLock();
|
|
|
try {
|
|
|
checkOperation(OperationCategory.WRITE);
|
|
@@ -7749,6 +7756,7 @@ public class FSNamesystem implements Namesystem, FSNamesystemMBean,
|
|
|
void removeCacheDirective(long id, boolean logRetryCache) throws IOException {
|
|
|
final String operationName = "removeCacheDirective";
|
|
|
boolean success = false;
|
|
|
+ checkOperation(OperationCategory.WRITE);
|
|
|
writeLock();
|
|
|
try {
|
|
|
checkOperation(OperationCategory.WRITE);
|
|
@@ -7791,6 +7799,7 @@ public class FSNamesystem implements Namesystem, FSNamesystemMBean,
|
|
|
void addCachePool(CachePoolInfo req, boolean logRetryCache)
|
|
|
throws IOException {
|
|
|
final String operationName = "addCachePool";
|
|
|
+ checkOperation(OperationCategory.WRITE);
|
|
|
writeLock();
|
|
|
boolean success = false;
|
|
|
String poolInfoStr = null;
|
|
@@ -7815,6 +7824,7 @@ public class FSNamesystem implements Namesystem, FSNamesystemMBean,
|
|
|
void modifyCachePool(CachePoolInfo req, boolean logRetryCache)
|
|
|
throws IOException {
|
|
|
final String operationName = "modifyCachePool";
|
|
|
+ checkOperation(OperationCategory.WRITE);
|
|
|
writeLock();
|
|
|
boolean success = false;
|
|
|
try {
|
|
@@ -7839,6 +7849,7 @@ public class FSNamesystem implements Namesystem, FSNamesystemMBean,
|
|
|
void removeCachePool(String cachePoolName, boolean logRetryCache)
|
|
|
throws IOException {
|
|
|
final String operationName = "removeCachePool";
|
|
|
+ checkOperation(OperationCategory.WRITE);
|
|
|
writeLock();
|
|
|
boolean success = false;
|
|
|
try {
|