Enabling input streaming for a DSQL map
Use input streaming to avoid memory issues when working with large input data.
In a regular DSQL map execution, the input is first loaded into memory before the DSQL script is executed. While this provides the best performances, it may cause memory issues when the input data is large. With input streaming, the records are processed in blocks of 1000 records and the memory is freed after each block.
You can only enable streaming on one element in your map. If you enable it on another element, streaming will be disabled on the first element.