HADOOP-12042. Users may see TrashPolicy if hdfs dfs -rm is run (Contributed by Andreina J)
(cherry picked from commit 7366e42563
)
This commit is contained in:
parent
983c1d3969
commit
09d68d645a
|
@ -315,6 +315,9 @@ Release 2.8.0 - UNRELEASED
|
|||
HADOOP-11959. WASB should configure client side socket timeout in storage
|
||||
client blob request options. (Ivan Mitic via cnauroth)
|
||||
|
||||
HADOOP-12042. Users may see TrashPolicy if hdfs dfs -rm is run
|
||||
(Andreina J via vinayakumarb)
|
||||
|
||||
Release 2.7.1 - UNRELEASED
|
||||
|
||||
INCOMPATIBLE CHANGES
|
||||
|
|
|
@ -89,9 +89,6 @@ public class TrashPolicyDefault extends TrashPolicy {
|
|||
this.emptierInterval = (long)(conf.getFloat(
|
||||
FS_TRASH_CHECKPOINT_INTERVAL_KEY, FS_TRASH_CHECKPOINT_INTERVAL_DEFAULT)
|
||||
* MSECS_PER_MINUTE);
|
||||
LOG.info("Namenode trash configuration: Deletion interval = " +
|
||||
(this.deletionInterval / MSECS_PER_MINUTE) + " minutes, Emptier interval = " +
|
||||
(this.emptierInterval / MSECS_PER_MINUTE) + " minutes.");
|
||||
}
|
||||
|
||||
private Path makeTrashRelativePath(Path basePath, Path rmFilePath) {
|
||||
|
@ -251,6 +248,10 @@ public class TrashPolicyDefault extends TrashPolicy {
|
|||
" minutes that is used for deletion instead");
|
||||
this.emptierInterval = deletionInterval;
|
||||
}
|
||||
LOG.info("Namenode trash configuration: Deletion interval = "
|
||||
+ (deletionInterval / MSECS_PER_MINUTE)
|
||||
+ " minutes, Emptier interval = "
|
||||
+ (emptierInterval / MSECS_PER_MINUTE) + " minutes.");
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
Loading…
Reference in New Issue