HDFS-13356. Balancer:Set default value of minBlockSize to 10mb. Contributed by Bharat Viswanadham

This commit is contained in:
Bharat Viswanadham 2018-04-23 16:09:01 -07:00
parent 7ab08a9c37
commit 9b5375e0c1
1 changed files with 4 additions and 1 deletions

View File

@ -43,7 +43,10 @@ import "HdfsServer.proto";
message GetBlocksRequestProto {
required DatanodeIDProto datanode = 1; // Datanode ID
required uint64 size = 2; // Size in bytes
optional uint64 minBlockSize = 3 [default = 0]; // Minimum Block Size in bytes
// Minimum Block Size in bytes, adding default value to 10MB, as this might
// cause problem during rolling upgrade, when balancers are upgraded later.
// For more info refer HDFS-13356
optional uint64 minBlockSize = 3 [default = 10485760];
}