HDFS-11312. Fix incompatible tag number change for nonDfsUsed in DatanodeInfoProto. Contributed by Sean Mackrory.
This commit is contained in:
parent
7979939428
commit
d51f8ba808
|
@ -88,6 +88,7 @@ message DatanodeInfoProto {
|
||||||
optional uint64 lastUpdate = 6 [default = 0];
|
optional uint64 lastUpdate = 6 [default = 0];
|
||||||
optional uint32 xceiverCount = 7 [default = 0];
|
optional uint32 xceiverCount = 7 [default = 0];
|
||||||
optional string location = 8;
|
optional string location = 8;
|
||||||
|
optional uint64 nonDfsUsed = 9;
|
||||||
enum AdminState {
|
enum AdminState {
|
||||||
NORMAL = 0;
|
NORMAL = 0;
|
||||||
DECOMMISSION_INPROGRESS = 1;
|
DECOMMISSION_INPROGRESS = 1;
|
||||||
|
@ -101,7 +102,6 @@ message DatanodeInfoProto {
|
||||||
optional uint64 cacheUsed = 12 [default = 0];
|
optional uint64 cacheUsed = 12 [default = 0];
|
||||||
optional uint64 lastUpdateMonotonic = 13 [default = 0];
|
optional uint64 lastUpdateMonotonic = 13 [default = 0];
|
||||||
optional string upgradeDomain = 14;
|
optional string upgradeDomain = 14;
|
||||||
optional uint64 nonDfsUsed = 15;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue