HDFS-16232. Fix java doc for BlockReaderRemote#newBlockReader (#3456)

This commit is contained in:
litao 2021-09-24 13:14:25 +08:00 committed by GitHub
parent 98e2781dde
commit 3113a119af
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 14 additions and 9 deletions

View File

@ -375,15 +375,20 @@ public class BlockReaderRemote implements BlockReader {
* Create a new BlockReader specifically to satisfy a read.
* This method also sends the OP_READ_BLOCK request.
*
* @param file File location
* @param block The block object
* @param blockToken The block token for security
* @param startOffset The read offset, relative to block head
* @param len The number of bytes to read
* @param verifyChecksum Whether to verify checksum
* @param clientName Client name
* @param peer The Peer to use
* @param datanodeID The DatanodeID this peer is connected to
* @param file File location.
* @param block The block object.
* @param blockToken The block token for security.
* @param startOffset The read offset, relative to block head.
* @param len The number of bytes to read.
* @param verifyChecksum Whether to verify checksum.
* @param clientName Client name.
* @param peer The Peer to use.
* @param datanodeID The DatanodeID this peer is connected to.
* @param peerCache Caches TCP and UNIX domain sockets for reuse.
* @param cachingStrategy Caching strategy to use when reading the block.
* @param networkDistance Return the distance between two nodes by
* comparing their network paths.
* @param configuration Configuration of client.
* @return New BlockReader instance, or null on error.
*/
public static BlockReader newBlockReader(String file,