HBASE-2967 Failed split: IOE 'File is Corrupt' -- sync length not being written out to SequenceFile
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@995256 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
bd7e091b2d
commit
cf43037b3b
|
@ -509,6 +509,8 @@ Release 0.21.0 - Unreleased
|
|||
HBASE-2964 Deadlock when RS tries to RPC to itself inside SplitTransaction
|
||||
HBASE-1485 Wrong or indeterminate behavior when there are duplicate
|
||||
versions of a column (pranav via jgray)
|
||||
HBASE-2967 Failed split: IOE 'File is Corrupt!' -- sync length not being
|
||||
written out to SequenceFile
|
||||
|
||||
IMPROVEMENTS
|
||||
HBASE-1760 Cleanup TODOs in HTable
|
||||
|
|
|
@ -120,7 +120,6 @@ public class SequenceFileLogWriter implements HLog.Writer {
|
|||
|
||||
@Override
|
||||
public void sync() throws IOException {
|
||||
this.writer.sync();
|
||||
if (this.syncFs != null) {
|
||||
try {
|
||||
this.syncFs.invoke(this.writer, HLog.NO_ARGS);
|
||||
|
|
Loading…
Reference in New Issue