Skip to content

Commit

Permalink
0002603: Retry batches from staging instead of sending them again
Browse files Browse the repository at this point in the history
  • Loading branch information
erilong committed Jun 2, 2016
1 parent 2b14b93 commit 3fad3ec
Showing 1 changed file with 2 additions and 1 deletion.
Expand Up @@ -575,8 +575,9 @@ public FutureOutgoingBatch call() throws Exception {
FutureOutgoingBatch outgoingBatch = new FutureOutgoingBatch(extractBatch, false);
if (!status.shouldExtractSkip) {
try {
boolean isRetry = isRetry(extractBatch, targetNode);
outgoingBatch = new FutureOutgoingBatch(extractOutgoingBatch(processInfo, targetNode,
dataWriter, extractBatch, streamToFileEnabled, true, mode), isRetry(extractBatch, targetNode));
dataWriter, extractBatch, streamToFileEnabled, true, mode), isRetry);
status.batchExtractCount++;
status.byteExtractCount += extractBatch.getByteCount();

Expand Down

0 comments on commit 3fad3ec

Please sign in to comment.