Varghese
Varghese

Reputation: 21

Flowfile attributes in Nifi

I wanted to monitor the JVM heap usage in Nifi. How can we increase the load of flow file attributes.I have tried the heap usage monitoring with respect to content size.

Upvotes: 0

Views: 1028

Answers (1)

Bryan Bende
Bryan Bende

Reputation: 18630

The GenerateFlowFile processor can be used to generate whatever type of flow files you want.

Any user-defined attributes in the processor will become attributes on each flow file, and the content of the flow files can be controller with the Custom Text property.

The speed of flow files being produced can be controlled by the scheduling strategy of the processor. It defaults to 0 seconds which means it will run as fast as possible, so you will probably want to start out with something slower initially.

Upvotes: 2

Related Questions