DataFlow in Expression Language
Jump to navigation
Jump to search
DataFlow is an object representing a stream for tabular data. Difference to the DataFrame is that the DataFrame contains all its contents stored to the system memory. If there is lot of data, also lot of memory is required when using the DataFrame. On the other hand, in the DataFlow, the tabular contents "flows" from a source and is stored to a destination. Data can be manipulated, while having only a small portion of the entire data in memory at the same time. Thus DataFlows are suitable for ETL where the data volumes are large.
DataFrame properties | Description |
---|---|
Persist (String*) | Write DataFlow into datatable. Works similarly as the name function in the See the DataFrames. |