Problemunvalidated

using `.collectList()` will load the entire file content in memory before processing — I have code that reads a file and converts and returns a flux of a list of hashmaps in groups of 10. Tension: defeating your purpose of saving memory. Outcome: using `.collectList()` will load the entire file content in memory before processing.

139ace8b-981c-4822-a7ac-b4b363b53dba

using .collectList() will load the entire file content in memory before processing — I have code that reads a file and converts and returns a flux of a list of hashmaps in groups of 10. Tension: defeating your purpose of saving memory. Outcome: using .collectList() will load the entire file content in memory before processing.