0 votes
in Apache by
Explain Apache NiFi Architecture

1 Answer

0 votes
by

Apache NiFi has a well-thought-out architecture. Once data is fetched from external sources, it is represented as FlowFile inside Apache NiFi architecture.

NiFi Architecture

NiFi Architecture

Here are key components of NiFi architecture

Nifi ComponentDescription
FlowFileFlowFile is original data with meta-information attached to it. It allows you to process not only CSV or other record-based data, but also pictures, videos, audio, or any other binary data.
Flowfile processorPerforms the work which acts as a building block of data flow in NiFi.
Flow controllerKeeps a record of how processes are connected. It manages the threads and allocations thereof which all processes use.
Web ServerWeb server hosts NiFi’s HTTP-based commands and API.
ExtensionThere are many types of NiFi extensions which operate and execute within the JVM.
ConnectionActs as a linkage between processors that contain a queue and relationship(s) which affects where data is routed.
Back PressureStop the system of becoming overrun by controlling the quantity or data size of flow files that can be stored in the queue.
Process GroupA process group is a set of processes and their connections, which receives and send data with the help of ports.
Flowfile RepositoryIn the FlowFile Repository, NiFi keeps track of the state of what details it has about a given FlowFile which is active in the flow.
Content RepositoryThe Content Repository is an area where the actual content bytes of a given FlowFile exist.
Provenance Repository

Source: https://www.guru99.com/
The Provenance Repository is an area where all provenance event data is gathered.



 

Related questions

0 votes
0 votes
asked Jun 24, 2022 in Apache by sharadyadav1986
0 votes
asked Jun 23, 2022 in Apache by Robin
0 votes
asked Jun 23, 2022 in Apache by Robin
0 votes
asked Apr 18, 2021 in Apache by SakshiSharma
...