You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
HDFS-15446. CreateSnapshotOp fails during edit log loading for /.reserved/raw/path with error java.io.FileNotFoundException: Directory does not exist: /.reserved/raw/path. Contributed by Stephen O'Donnell.
Copy file name to clipboardExpand all lines: hadoop-hdfs-project/hadoop-hdfs/src/test/java/org/apache/hadoop/hdfs/server/namenode/snapshot/TestSnapshot.java
+53Lines changed: 53 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -513,6 +513,59 @@ public void testDeletionSnapshotMtime() throws Exception {
513
513
newSnapshotStatus.getModificationTime());
514
514
}
515
515
516
+
/**
517
+
* HDFS-15446 - ensure that snapshot operations on /.reserved/raw
518
+
* paths work and the NN can load the resulting edits.
0 commit comments