Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

HDFS-15496. Add UI for deleted snapshots #2212

Merged
merged 3 commits into from
Aug 13, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -174,60 +174,6 @@ private static int maxLength(int n, Object value) {
return Math.max(n, String.valueOf(value).length());
}

/**
* To be used to for collection of snapshot jmx.
*/
public static class Bean {
private final String path;
private final int snapshotID;
private final long modificationTime;
private final short permission;
private final String owner;
private final String group;
private final boolean isDeleted;


public Bean(String path, int snapshotID, long
modificationTime, short permission, String owner, String group,
boolean isDeleted) {
this.path = path;
this.snapshotID = snapshotID;
this.modificationTime = modificationTime;
this.permission = permission;
this.owner = owner;
this.group = group;
this.isDeleted = isDeleted;
}

public String getPath() {
return path;
}

public int getSnapshotID() {
return snapshotID;
}

public long getModificationTime() {
return modificationTime;
}

public short getPermission() {
return permission;
}

public String getOwner() {
return owner;
}

public String getGroup() {
return group;
}

public boolean isDeleted() {
return isDeleted;
}
}

static String getSnapshotPath(String snapshottableDir,
String snapshotRelativePath) {
String parentFullPathStr =
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -82,18 +82,20 @@ public String toString() {
}

public static class Bean {
private final String snapshotID;
private final int snapshotID;
private final String snapshotDirectory;
private final long modificationTime;
private final String status;

public Bean(String snapshotID, String snapshotDirectory,
long modificationTime) {
public Bean(int snapshotID, String snapshotDirectory,
long modificationTime, boolean isMarkedAsDeleted) {
this.snapshotID = snapshotID;
this.snapshotDirectory = snapshotDirectory;
this.modificationTime = modificationTime;
this.status = isMarkedAsDeleted ? "DELETED" : "ACTIVE";
}

public String getSnapshotID() {
public int getSnapshotID() {
return snapshotID;
}

Expand All @@ -104,5 +106,9 @@ public String getSnapshotDirectory() {
public long getModificationTime() {
return modificationTime;
}

public String getStatus() {
return status;
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -746,16 +746,19 @@ public static SnapshottableDirectoryStatus.Bean toBean(INodeDirectory d) {
d.getDirectorySnapshottableFeature().getNumSnapshots(),
d.getDirectorySnapshottableFeature().getSnapshotQuota(),
d.getModificationTime(),
Short.valueOf(Integer.toOctalString(
d.getFsPermissionShort())),
Short.parseShort(Integer.toOctalString(d.getFsPermissionShort())),
d.getUserName(),
d.getGroupName());
}

public static SnapshotInfo.Bean toBean(Snapshot s) {
Snapshot.Root dir = s.getRoot();
return new SnapshotInfo.Bean(
s.getRoot().getLocalName(), s.getRoot().getFullPathName(),
s.getRoot().getModificationTime());
s.getId(),
dir.getFullPathName(),
dir.getModificationTime(),
dir.isMarkedAsDeleted()
);
}

private List<INodeDirectory> getSnapshottableDirsForGc() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -287,13 +287,15 @@
<th>Snapshot ID</th>
<th>Snapshot Directory</th>
<th>Modification Time</th>
<th>Status</th>
</tr>
</thead>
{#Snapshots}
<tr>
<td>{snapshotID}</td>
<td>{snapshotDirectory}</td>
<td>{modificationTime|date_tostring}</td>
<td>{status}</td>
</tr>
{/Snapshots}
</table>
Expand Down