svn merge -c 1581936 from trunk for HDFS-6115. Call flush() for every append on block scan verification log.
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-2@1581937 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
847ef81ec6
commit
e034eb46d8
|
@ -464,6 +464,9 @@ Release 2.4.0 - UNRELEASED
|
||||||
HDFS-6130. NPE when upgrading namenode from fsimages older than -32.
|
HDFS-6130. NPE when upgrading namenode from fsimages older than -32.
|
||||||
(wheat9)
|
(wheat9)
|
||||||
|
|
||||||
|
HDFS-6115. Call flush() for every append on block scan verification log.
|
||||||
|
(Vinayakumar B via szetszwo)
|
||||||
|
|
||||||
BREAKDOWN OF HDFS-5698 SUBTASKS AND RELATED JIRAS
|
BREAKDOWN OF HDFS-5698 SUBTASKS AND RELATED JIRAS
|
||||||
|
|
||||||
HDFS-5717. Save FSImage header in protobuf. (Haohui Mai via jing9)
|
HDFS-5717. Save FSImage header in protobuf. (Haohui Mai via jing9)
|
||||||
|
|
|
@ -55,6 +55,7 @@ class RollingLogsImpl implements RollingLogs {
|
||||||
+ " is not yet opened.");
|
+ " is not yet opened.");
|
||||||
}
|
}
|
||||||
out.print(csq);
|
out.print(csq);
|
||||||
|
out.flush();
|
||||||
}
|
}
|
||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue