HDFS-15835. Erasure coding: Add/remove logs for the better readability/debugging. Contributed by Bhavik Patel.

(cherry picked from commit 25af8901a9)
This commit is contained in:
Takanobu Asanuma 2021-02-19 14:44:58 +09:00
parent a9d3500894
commit 1125e3f0c0
3 changed files with 6 additions and 5 deletions

View File

@ -343,6 +343,7 @@ public synchronized ErasureCodingPolicy addPolicy(
policiesByName.values().toArray(new ErasureCodingPolicyInfo[0]);
allPersistedPolicies.put(policy.getId(),
new ErasureCodingPolicyInfo(policy));
LOG.info("Added erasure coding policy " + policy);
return policy;
}
@ -414,7 +415,7 @@ public synchronized boolean disablePolicy(String name) {
enabledPolicies =
enabledPoliciesByName.values().toArray(new ErasureCodingPolicy[0]);
info.setState(ErasureCodingPolicyState.DISABLED);
LOG.info("Disable the erasure coding policy " + name);
LOG.info("Disabled the erasure coding policy " + name);
allPersistedPolicies.put(info.getPolicy().getId(),
createPolicyInfo(info.getPolicy(),
ErasureCodingPolicyState.DISABLED));
@ -448,7 +449,7 @@ public synchronized boolean enablePolicy(String name) {
enabledPoliciesByName.values().toArray(new ErasureCodingPolicy[0]);
allPersistedPolicies.put(ecPolicy.getId(),
createPolicyInfo(info.getPolicy(), ErasureCodingPolicyState.ENABLED));
LOG.info("Enable the erasure coding policy " + name);
LOG.info("Enabled the erasure coding policy " + name);
return true;
}

View File

@ -8077,7 +8077,6 @@ boolean disableErasureCodingPolicy(String ecPolicyName,
checkOperation(OperationCategory.WRITE);
checkErasureCodingSupported(operationName);
boolean success = false;
LOG.info("Disable the erasure coding policy " + ecPolicyName);
try {
writeLock();
try {

View File

@ -2262,10 +2262,10 @@ public void setErasureCodingPolicy(String src, String ecPolicyName)
try {
if (ecPolicyName == null) {
ecPolicyName = defaultECPolicyName;
LOG.trace("No policy name is specified, " +
LOG.debug("No policy name is specified, " +
"set the default policy name instead");
}
LOG.trace("Set erasure coding policy " + ecPolicyName + " on " + src);
LOG.debug("Set erasure coding policy {} on {}", ecPolicyName, src);
namesystem.setErasureCodingPolicy(src, ecPolicyName, cacheEntry != null);
success = true;
} finally {
@ -2516,6 +2516,7 @@ public void unsetErasureCodingPolicy(String src) throws IOException {
}
boolean success = false;
try {
LOG.debug("Unset erasure coding policy on {}", src);
namesystem.unsetErasureCodingPolicy(src, cacheEntry != null);
success = true;
} finally {