NIFI-70: If ROUTE indicates FlowFile routed to same Connection it came from (and only that connection!) then drop the redundant ROUTE event

This commit is contained in:
Mark Payne 2014-12-12 12:02:49 -05:00
parent a8722317ab
commit bc94625142
1 changed files with 47 additions and 1 deletions

View File

@ -538,7 +538,14 @@ public final class StandardProcessSession implements ProcessSession, ProvenanceE
if (isSpuriousForkEvent(event, checkpoint.removedFlowFiles)) { if (isSpuriousForkEvent(event, checkpoint.removedFlowFiles)) {
continue; continue;
} }
if ( isSpuriousRouteEvent(event, checkpoint.records) ) {
continue;
}
// Check if the event indicates that the FlowFile was routed to the same
// connection from which it was pulled (and only this connection). If so, discard the event.
isSpuriousRouteEvent(event, checkpoint.records);
recordsToSubmit.add(event); recordsToSubmit.add(event);
addEventType(eventTypesPerFlowFileId, event.getFlowFileUuid(), event.getEventType()); addEventType(eventTypesPerFlowFileId, event.getFlowFileUuid(), event.getEventType());
} }
@ -776,6 +783,45 @@ public final class StandardProcessSession implements ProcessSession, ProvenanceE
return false; return false;
} }
/**
* Checks if the given event is a spurious ROUTE, meaning that the ROUTE indicates that a FlowFile
* was routed to a relationship with only 1 connection and that Connection is the Connection from which
* the FlowFile was pulled. I.e., the FlowFile was really routed nowhere.
*
* @param event
* @param records
* @return
*/
private boolean isSpuriousRouteEvent(final ProvenanceEventRecord event, final Map<FlowFileRecord, StandardRepositoryRecord> records) {
if ( event.getEventType() == ProvenanceEventType.ROUTE ) {
final String relationshipName = event.getRelationship();
final Relationship relationship = new Relationship.Builder().name(relationshipName).build();
final Collection<Connection> connectionsForRelationship = this.context.getConnections(relationship);
// If the number of connections for this relationship is not 1, then we can't ignore this ROUTE event,
// as it may be cloning the FlowFile and adding to multiple connections.
if ( connectionsForRelationship.size() == 1 ) {
for ( final Map.Entry<FlowFileRecord, StandardRepositoryRecord> entry : records.entrySet() ) {
final FlowFileRecord flowFileRecord = entry.getKey();
if ( event.getFlowFileUuid().equals(flowFileRecord.getAttribute(CoreAttributes.UUID.key())) ) {
final StandardRepositoryRecord repoRecord = entry.getValue();
if ( repoRecord.getOriginalQueue() == null ) {
return false;
}
final String originalQueueId = repoRecord.getOriginalQueue().getIdentifier();
final Connection destinationConnection = connectionsForRelationship.iterator().next();
final String destinationQueueId = destinationConnection.getFlowFileQueue().getIdentifier();
return originalQueueId.equals(destinationQueueId);
}
}
}
}
return false;
}
@Override @Override
public void rollback() { public void rollback() {
rollback(false); rollback(false);