Can Apache NIFI "ExecuteSQL Processor" stream large set of select result in chunks say 'x' MB?
2
votes
2 Answers
6
votes
The ExecuteSQL Processor can "stream" large numbers of rows in the sense that it will stream the data directly to FlowFile content (which will not be held in-memory/heap) so it is very memory efficient. It does not, at this time, chunk the results, though. There is a ticket https://issues.apache.org/jira/browse/NIFI-1251 to provide such capabilities, though.