mirror of https://github.com/apache/nifi.git
NIFI-730: Make cancel request actually cancel
This commit is contained in:
parent
5867193bc1
commit
a2ae99f899
|
@ -77,7 +77,7 @@ public class DropFlowFileRequest implements DropFlowFileStatus {
|
|||
}
|
||||
|
||||
@Override
|
||||
public DropFlowFileState getState() {
|
||||
public synchronized DropFlowFileState getState() {
|
||||
return state;
|
||||
}
|
||||
|
||||
|
|
|
@ -952,6 +952,11 @@ public final class StandardFlowFileQueue implements FlowFileQueue {
|
|||
|
||||
QueueSize droppedSize;
|
||||
try {
|
||||
if (dropRequest.getState() == DropFlowFileState.CANCELED) {
|
||||
logger.info("Cancel requested for DropFlowFileRequest {}", requestIdentifier);
|
||||
return;
|
||||
}
|
||||
|
||||
droppedSize = drop(activeQueueRecords, requestor);
|
||||
logger.debug("For DropFlowFileRequest {}, Dropped {} from active queue", requestIdentifier, droppedSize);
|
||||
} catch (final IOException ioe) {
|
||||
|
@ -972,6 +977,11 @@ public final class StandardFlowFileQueue implements FlowFileQueue {
|
|||
|
||||
logger.debug("For DropFlowFileRequest {}, Swap Queue has {} elements, Swapped Record Count = {}, Swapped Content Size = {}",
|
||||
requestIdentifier, swapQueue.size(), swapSize.getObjectCount(), swapSize.getByteCount());
|
||||
if (dropRequest.getState() == DropFlowFileState.CANCELED) {
|
||||
logger.info("Cancel requested for DropFlowFileRequest {}", requestIdentifier);
|
||||
return;
|
||||
}
|
||||
|
||||
droppedSize = drop(swapQueue, requestor);
|
||||
} catch (final IOException ioe) {
|
||||
logger.error("Failed to drop the FlowFiles from queue {} due to {}", StandardFlowFileQueue.this.getIdentifier(), ioe.toString());
|
||||
|
@ -995,6 +1005,11 @@ public final class StandardFlowFileQueue implements FlowFileQueue {
|
|||
|
||||
List<FlowFileRecord> swappedIn = null;
|
||||
try {
|
||||
if (dropRequest.getState() == DropFlowFileState.CANCELED) {
|
||||
logger.info("Cancel requested for DropFlowFileRequest {}", requestIdentifier);
|
||||
return;
|
||||
}
|
||||
|
||||
swappedIn = swapManager.swapIn(swapLocation, StandardFlowFileQueue.this);
|
||||
droppedSize = drop(swappedIn, requestor);
|
||||
} catch (final IOException ioe) {
|
||||
|
|
Loading…
Reference in New Issue