DataFlow in Expression Language

From QPR ProcessAnalyzer Wiki
Revision as of 15:59, 7 December 2022 by Ollvihe (talk | contribs) (Created page with "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...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
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.