mirror of https://github.com/apache/nifi.git
NIFI-10: Added FETCH and DOWNLOAD Provenance Events; updated FlowController to use DOWNLOAD event instead of SEND whenever a user downloads/views content via Provenance Event
This commit is contained in:
parent
51f564024a
commit
fc2aa2764c
|
@ -46,6 +46,11 @@ public enum ProvenanceEventType {
|
|||
*/
|
||||
SEND,
|
||||
|
||||
/**
|
||||
* Indicates that the contents of a FlowFile were downloaded by a user or external entity.
|
||||
*/
|
||||
DOWNLOAD,
|
||||
|
||||
/**
|
||||
* Indicates a provenance event for the conclusion of an object's life for
|
||||
* some reason other than object expiration
|
||||
|
|
|
@ -612,7 +612,7 @@ public class FlowController implements EventAccess, ControllerServiceProvider, R
|
|||
startConnectable(connectable);
|
||||
}
|
||||
} catch (final Throwable t) {
|
||||
LOG.error("Unable to start {} due to {}", new Object[]{connectable, t.toString()});
|
||||
LOG.error("Unable to start {} due to {}", new Object[] {connectable, t.toString()});
|
||||
if (LOG.isDebugEnabled()) {
|
||||
LOG.error("", t);
|
||||
}
|
||||
|
@ -627,7 +627,7 @@ public class FlowController implements EventAccess, ControllerServiceProvider, R
|
|||
remoteGroupPort.getRemoteProcessGroup().startTransmitting(remoteGroupPort);
|
||||
startedTransmitting++;
|
||||
} catch (final Throwable t) {
|
||||
LOG.error("Unable to start transmitting with {} due to {}", new Object[]{remoteGroupPort, t});
|
||||
LOG.error("Unable to start transmitting with {} due to {}", new Object[] {remoteGroupPort, t});
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -642,7 +642,7 @@ public class FlowController implements EventAccess, ControllerServiceProvider, R
|
|||
startConnectable(connectable);
|
||||
}
|
||||
} catch (final Throwable t) {
|
||||
LOG.error("Unable to start {} due to {}", new Object[]{connectable, t});
|
||||
LOG.error("Unable to start {} due to {}", new Object[] {connectable, t});
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -1083,7 +1083,7 @@ public class FlowController implements EventAccess, ControllerServiceProvider, R
|
|||
try {
|
||||
flowFileRepository.close();
|
||||
} catch (final Throwable t) {
|
||||
LOG.warn("Unable to shut down FlowFileRepository due to {}", new Object[]{t});
|
||||
LOG.warn("Unable to shut down FlowFileRepository due to {}", new Object[] {t});
|
||||
}
|
||||
|
||||
if (this.timerDrivenEngineRef.get().isTerminated() && eventDrivenEngineRef.get().isTerminated()) {
|
||||
|
@ -3180,7 +3180,7 @@ public class FlowController implements EventAccess, ControllerServiceProvider, R
|
|||
|
||||
// Register a Provenance Event to indicate that we replayed the data.
|
||||
final ProvenanceEventRecord sendEvent = new StandardProvenanceEventRecord.Builder()
|
||||
.setEventType(ProvenanceEventType.SEND)
|
||||
.setEventType(ProvenanceEventType.DOWNLOAD)
|
||||
.setFlowFileUUID(provEvent.getFlowFileUuid())
|
||||
.setAttributes(provEvent.getAttributes(), Collections.<String, String> emptyMap())
|
||||
.setCurrentContentClaim(resourceClaim.getContainer(), resourceClaim.getSection(), resourceClaim.getId(), offset, size)
|
||||
|
@ -3367,7 +3367,7 @@ public class FlowController implements EventAccess, ControllerServiceProvider, R
|
|||
// Update the FlowFile Repository to indicate that we have added the FlowFile to the flow
|
||||
final StandardRepositoryRecord record = new StandardRepositoryRecord(queue, flowFileRecord);
|
||||
record.setDestination(queue);
|
||||
flowFileRepository.updateRepository(Collections.<RepositoryRecord>singleton(record));
|
||||
flowFileRepository.updateRepository(Collections.<RepositoryRecord> singleton(record));
|
||||
|
||||
// Enqueue the data
|
||||
queue.put(flowFileRecord);
|
||||
|
@ -3436,9 +3436,7 @@ public class FlowController implements EventAccess, ControllerServiceProvider, R
|
|||
LOG.debug(
|
||||
String.format(
|
||||
"Sending bulletins to cluster manager at %s",
|
||||
dateFormatter.format(new Date())
|
||||
)
|
||||
);
|
||||
dateFormatter.format(new Date())));
|
||||
}
|
||||
|
||||
} catch (final UnknownServiceAddressException usae) {
|
||||
|
|
Loading…
Reference in New Issue