[
https://issues.apache.org/jira/browse/HDFS-16861?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17643601#comment-17643601
]
ASF GitHub Bot commented on HDFS-16861:
---------------------------------------
tomscut commented on code in PR #5184:
URL: https://github.com/apache/hadoop/pull/5184#discussion_r1040246881
##########
hadoop-hdfs-project/hadoop-hdfs-rbf/src/test/java/org/apache/hadoop/hdfs/server/federation/router/TestRouterAllResolver.java:
##########
@@ -191,6 +193,16 @@ private void testAll(final String path) throws Exception {
assertDirsEverywhere(path, 9);
assertFilesDistributed(path, 15);
+ // Test truncate
+ String testTruncateFile = path + "/dir2/dir22/dir220/file-truncate.txt";
+ createTestFile(routerFs, testTruncateFile);
+ Path testTruncateFilePath = new Path(testTruncateFile);
+ routerFs.truncate(testTruncateFilePath, 10);
+ TestFileTruncate.checkBlockRecovery(testTruncateFilePath,
+ (DistributedFileSystem) routerFs);
+ assertEquals("Truncate file fails", 10,
Review Comment:
Two spaces here.
> RBF. Truncate API always fails when dirs use AllResolver oder on Router
> -------------------------------------------------------------------------
>
> Key: HDFS-16861
> URL: https://issues.apache.org/jira/browse/HDFS-16861
> Project: Hadoop HDFS
> Issue Type: Bug
> Components: rbf
> Affects Versions: 3.4.0
> Reporter: Max Xie
> Assignee: Max Xie
> Priority: Major
> Labels: pull-request-available
> Attachments: image-2022-12-05-17-35-19-841.png
>
>
> # prepare a directory in a HASH_ALL/SPACE/RANDOM mount point.
> # put a test file with 1024 bytes to this directory
> # truncate the file with 100 new length and this op will fail and throw a
> exception that the file does not exist.
>
> After dig it, we should ignore the result of Truncate API in
> RouterClientProtocol because
> Truncate can return true/false, so don't expect a result.
> After fix it , the code is
> !image-2022-12-05-17-35-19-841.png!
>
--
This message was sent by Atlassian Jira
(v8.20.10#820010)
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]