HDFS-8001 RpcProgramNfs3 : wrong parsing of dfs.blocksize. Contributed by Remi Catherinot
This commit is contained in:
parent
60ce825a71
commit
4d14816c26
|
@ -187,7 +187,7 @@ public class RpcProgramNfs3 extends RpcProgram implements Nfs3Interface {
|
|||
clientCache = new DFSClientCache(config);
|
||||
replication = (short) config.getInt(DFSConfigKeys.DFS_REPLICATION_KEY,
|
||||
DFSConfigKeys.DFS_REPLICATION_DEFAULT);
|
||||
blockSize = config.getLong(DFSConfigKeys.DFS_BLOCK_SIZE_KEY,
|
||||
blockSize = config.getLongBytes(DFSConfigKeys.DFS_BLOCK_SIZE_KEY,
|
||||
DFSConfigKeys.DFS_BLOCK_SIZE_DEFAULT);
|
||||
bufferSize = config.getInt(
|
||||
CommonConfigurationKeysPublic.IO_FILE_BUFFER_SIZE_KEY,
|
||||
|
|
|
@ -1351,6 +1351,9 @@ Release 2.7.0 - UNRELEASED
|
|||
HDFS-8036. Use snapshot path as source when using snapshot diff report in
|
||||
DistCp. (Jing Zhao via wheat9)
|
||||
|
||||
HDFS-8001 RpcProgramNfs3 : wrong parsing of dfs.blocksize
|
||||
(Remi Catherinot via brandonli)
|
||||
|
||||
BREAKDOWN OF HDFS-7584 SUBTASKS AND RELATED JIRAS
|
||||
|
||||
HDFS-7720. Quota by Storage Type API, tools and ClientNameNode
|
||||
|
|
Loading…
Reference in New Issue