HDFS-9799. Reimplement getCurrentTrashDir to remove incompatibility. (zhz)
Change-Id: I7834bcebffed38cb384db5395ddb8b6dd9e79a0b
This commit is contained in:
parent
26ce37a1a6
commit
64d39b83cc
|
@ -2668,9 +2668,8 @@ public abstract class FileSystem extends Configured implements Closeable {
|
|||
*
|
||||
* @param path the trash root of the path to be determined.
|
||||
* @return the default implementation returns "/user/$USER/.Trash".
|
||||
* @throws IOException
|
||||
*/
|
||||
public Path getTrashRoot(Path path) throws IOException {
|
||||
public Path getTrashRoot(Path path) {
|
||||
return this.makeQualified(new Path(getHomeDirectory().toUri().getPath(),
|
||||
TRASH_PREFIX));
|
||||
}
|
||||
|
@ -2682,29 +2681,31 @@ public abstract class FileSystem extends Configured implements Closeable {
|
|||
* @return all the trash root directories.
|
||||
* Default FileSystem returns .Trash under users' home directories if
|
||||
* /user/$USER/.Trash exists.
|
||||
* @throws IOException
|
||||
*/
|
||||
public Collection<FileStatus> getTrashRoots(boolean allUsers)
|
||||
throws IOException {
|
||||
public Collection<FileStatus> getTrashRoots(boolean allUsers) {
|
||||
Path userHome = new Path(getHomeDirectory().toUri().getPath());
|
||||
List<FileStatus> ret = new ArrayList<FileStatus>();
|
||||
if (!allUsers) {
|
||||
Path userTrash = new Path(userHome, TRASH_PREFIX);
|
||||
if (exists(userTrash)) {
|
||||
ret.add(getFileStatus(userTrash));
|
||||
}
|
||||
} else {
|
||||
Path homeParent = userHome.getParent();
|
||||
if (exists(homeParent)) {
|
||||
FileStatus[] candidates = listStatus(homeParent);
|
||||
for (FileStatus candidate : candidates) {
|
||||
Path userTrash = new Path(candidate.getPath(), TRASH_PREFIX);
|
||||
if (exists(userTrash)) {
|
||||
candidate.setPath(userTrash);
|
||||
ret.add(candidate);
|
||||
List<FileStatus> ret = new ArrayList<>();
|
||||
try {
|
||||
if (!allUsers) {
|
||||
Path userTrash = new Path(userHome, TRASH_PREFIX);
|
||||
if (exists(userTrash)) {
|
||||
ret.add(getFileStatus(userTrash));
|
||||
}
|
||||
} else {
|
||||
Path homeParent = userHome.getParent();
|
||||
if (exists(homeParent)) {
|
||||
FileStatus[] candidates = listStatus(homeParent);
|
||||
for (FileStatus candidate : candidates) {
|
||||
Path userTrash = new Path(candidate.getPath(), TRASH_PREFIX);
|
||||
if (exists(userTrash)) {
|
||||
candidate.setPath(userTrash);
|
||||
ret.add(candidate);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
} catch (IOException e) {
|
||||
LOG.warn("Cannot get all trash roots", e);
|
||||
}
|
||||
return ret;
|
||||
}
|
||||
|
|
|
@ -645,13 +645,12 @@ public class FilterFileSystem extends FileSystem {
|
|||
}
|
||||
|
||||
@Override
|
||||
public Path getTrashRoot(Path path) throws IOException {
|
||||
public Path getTrashRoot(Path path) {
|
||||
return fs.getTrashRoot(path);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Collection<FileStatus> getTrashRoots(boolean allUsers)
|
||||
throws IOException {
|
||||
public Collection<FileStatus> getTrashRoots(boolean allUsers) {
|
||||
return fs.getTrashRoots(allUsers);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -89,7 +89,7 @@ public abstract class TrashPolicy extends Configured {
|
|||
* It returns the trash location correctly for the path specified no matter
|
||||
* the path is in encryption zone or not.
|
||||
*/
|
||||
public abstract Path getCurrentTrashDir() throws IOException;
|
||||
public abstract Path getCurrentTrashDir();
|
||||
|
||||
/**
|
||||
* Get the current trash directory for path specified based on the Trash
|
||||
|
|
|
@ -196,7 +196,7 @@ public class TrashPolicyDefault extends TrashPolicy {
|
|||
}
|
||||
|
||||
@Override
|
||||
public Path getCurrentTrashDir() throws IOException {
|
||||
public Path getCurrentTrashDir() {
|
||||
return new Path(fs.getTrashRoot(null), CURRENT);
|
||||
}
|
||||
|
||||
|
@ -250,12 +250,7 @@ public class TrashPolicyDefault extends TrashPolicy {
|
|||
now = Time.now();
|
||||
if (now >= end) {
|
||||
Collection<FileStatus> trashRoots;
|
||||
try {
|
||||
trashRoots = fs.getTrashRoots(true); // list all home dirs
|
||||
} catch (IOException e) {
|
||||
LOG.warn("Trash can't list all trash roots: "+e+" Sleeping.");
|
||||
continue;
|
||||
}
|
||||
trashRoots = fs.getTrashRoots(true); // list all trash dirs
|
||||
|
||||
for (FileStatus trashRoot : trashRoots) { // dump each trash
|
||||
if (!trashRoot.isDirectory())
|
||||
|
|
|
@ -2333,27 +2333,31 @@ public class DistributedFileSystem extends FileSystem {
|
|||
/**
|
||||
* Get the root directory of Trash for a path in HDFS.
|
||||
* 1. File in encryption zone returns /ez1/.Trash/username
|
||||
* 2. File not in encryption zone returns /users/username/.Trash
|
||||
* 2. File not in encryption zone, or encountered exception when checking
|
||||
* the encryption zone of the path, returns /users/username/.Trash
|
||||
* Caller appends either Current or checkpoint timestamp for trash destination
|
||||
* @param path the trash root of the path to be determined.
|
||||
* @return trash root
|
||||
* @throws IOException
|
||||
*/
|
||||
@Override
|
||||
public Path getTrashRoot(Path path) throws IOException {
|
||||
public Path getTrashRoot(Path path) {
|
||||
if ((path == null) || path.isRoot() || !dfs.isHDFSEncryptionEnabled()) {
|
||||
return super.getTrashRoot(path);
|
||||
}
|
||||
|
||||
String parentSrc = path.getParent().toUri().getPath();
|
||||
EncryptionZone ez = dfs.getEZForPath(parentSrc);
|
||||
if ((ez != null)) {
|
||||
return this.makeQualified(
|
||||
new Path(ez.getPath() + "/" + FileSystem.TRASH_PREFIX +
|
||||
dfs.ugi.getShortUserName()));
|
||||
} else {
|
||||
return super.getTrashRoot(path);
|
||||
try {
|
||||
EncryptionZone ez = dfs.getEZForPath(parentSrc);
|
||||
if ((ez != null)) {
|
||||
return this.makeQualified(
|
||||
new Path(ez.getPath() + "/" + FileSystem.TRASH_PREFIX +
|
||||
dfs.ugi.getShortUserName()));
|
||||
}
|
||||
} catch (IOException e) {
|
||||
DFSClient.LOG.warn("Exception in checking the encryption zone for the " +
|
||||
"path " + parentSrc + ". " + e.getMessage());
|
||||
}
|
||||
return super.getTrashRoot(path);
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -2361,32 +2365,37 @@ public class DistributedFileSystem extends FileSystem {
|
|||
* 1. File deleted from non-encryption zone /user/username/.Trash
|
||||
* 2. File deleted from encryption zones
|
||||
* e.g., ez1 rooted at /ez1 has its trash root at /ez1/.Trash/$USER
|
||||
* @allUsers return trashRoots of all users if true, used by emptier
|
||||
* @param allUsers return trashRoots of all users if true, used by emptier
|
||||
* @return trash roots of HDFS
|
||||
* @throws IOException
|
||||
*/
|
||||
@Override
|
||||
public Collection<FileStatus> getTrashRoots(boolean allUsers) throws IOException {
|
||||
List<FileStatus> ret = new ArrayList<FileStatus>();
|
||||
public Collection<FileStatus> getTrashRoots(boolean allUsers) {
|
||||
List<FileStatus> ret = new ArrayList<>();
|
||||
// Get normal trash roots
|
||||
ret.addAll(super.getTrashRoots(allUsers));
|
||||
|
||||
// Get EZ Trash roots
|
||||
final RemoteIterator<EncryptionZone> it = dfs.listEncryptionZones();
|
||||
while (it.hasNext()) {
|
||||
Path ezTrashRoot = new Path(it.next().getPath(), FileSystem.TRASH_PREFIX);
|
||||
if (allUsers) {
|
||||
for (FileStatus candidate : listStatus(ezTrashRoot)) {
|
||||
if (exists(candidate.getPath())) {
|
||||
ret.add(candidate);
|
||||
try {
|
||||
// Get EZ Trash roots
|
||||
final RemoteIterator<EncryptionZone> it = dfs.listEncryptionZones();
|
||||
while (it.hasNext()) {
|
||||
Path ezTrashRoot = new Path(it.next().getPath(),
|
||||
FileSystem.TRASH_PREFIX);
|
||||
if (allUsers) {
|
||||
for (FileStatus candidate : listStatus(ezTrashRoot)) {
|
||||
if (exists(candidate.getPath())) {
|
||||
ret.add(candidate);
|
||||
}
|
||||
}
|
||||
} else {
|
||||
Path userTrash = new Path(ezTrashRoot, System.getProperty(
|
||||
"user.name"));
|
||||
if (exists(userTrash)) {
|
||||
ret.add(getFileStatus(userTrash));
|
||||
}
|
||||
}
|
||||
} else {
|
||||
Path userTrash = new Path(ezTrashRoot, System.getProperty("user.name"));
|
||||
if (exists(userTrash)) {
|
||||
ret.add(getFileStatus(userTrash));
|
||||
}
|
||||
}
|
||||
} catch (IOException e){
|
||||
DFSClient.LOG.warn("Cannot get all encrypted trash roots", e);
|
||||
}
|
||||
return ret;
|
||||
}
|
||||
|
|
|
@ -1769,6 +1769,8 @@ Release 2.8.0 - UNRELEASED
|
|||
HDFS-9815. Move o.a.h.fs.Hdfs to hadoop-hdfs-client.
|
||||
(Vinayakumar B via wheat9)
|
||||
|
||||
HDFS-9799. Reimplement getCurrentTrashDir to remove incompatibility. (zhz)
|
||||
|
||||
Release 2.7.3 - UNRELEASED
|
||||
|
||||
INCOMPATIBLE CHANGES
|
||||
|
|
Loading…
Reference in New Issue