Skip to content

Commit

Permalink
0003010: Batches get stranded in ready state in staging on a cluster
Browse files Browse the repository at this point in the history
because the ack that moves them to done occurs on a different server.
Can't delete memory batches on DONE now that READY is gone.
  • Loading branch information
chenson42 committed Mar 12, 2017
1 parent 28dbfdc commit 643a083
Showing 1 changed file with 0 additions and 4 deletions.
Expand Up @@ -148,10 +148,6 @@ public void setState(State state) {
}
}

if (memoryBuffer != null && state == State.DONE) {
this.memoryBuffer.setLength(0);
this.memoryBuffer = null;
}
refreshLastUpdateTime();
this.state = state;
this.file = buildFile(state);
Expand Down

0 comments on commit 643a083

Please sign in to comment.