A "recursive" or "snapshot" DataFlow is a DataFlow that uses itself as an input.
DataFlows (neither SQL nor Magic ETL types) cannot append data natively like connectors. However, if you need to create a DataFlow that appends data, you can do so by running it once and then using the output as part of the input for the next run. This way, every time the DataFlow runs, it includes the data from before and also appends the new data onto itself.
Video - What is a Recursive DataFlow?
To create a recursive DataFlow in Magic ETL,
-
Create and run a Magic ETL DataFlow.
-
Once the DataFlow has finished running, load the output DataSet as an input DataSet.
The DataSet name will show the output DataSet name followed by "1."
You should now have two DataSets in the DataFlow—the updating original DataSet and the historical DataSet.
You now need to find a column to use as a constraint. This helps determine when to replace data in your historical DataSet with new data. Constraint columns are normally ID columns or date columns or have other unique identifiers. In this example we use the `Date` column as a constraint. -
Use Select Columns to select only the constraint column.
-
Use Remove Duplicates to return a unique list of constraints.
-
Use Add Constants to create a new column that tells you when a row needs to be deleted.
-
Use an Outer Join to join your deletion-identifying column to the unique constraint column in your historical DataSet. If you selected the historical DataSet on the left side of the join, as shown below, use a left outer join. If you select the historical DataSet on the right side of the join, use a right outer join. (Do not select Inner Join, as this could result in a loss of data.)
-
Filter any rows from your DataSet that contain the value "Delete Me" (or whatever identifier you came up with in step 5).
This returns only rows from the historical DataSet that do not exist in the new updating DataSet. -
Use Select Columns to remove the additional unique constraint column (`Date`) and the unique deletion-identifying column.
-
Use Append to join the historical DataSet and new updating DataSet.
If all steps have been done correctly, both DataSets will show "No changes." -
Connect the Append tile to your output.
Once complete, your Magic ETL should look like the following:
Troubleshooting/FAQ
See DataFlow and DataFusion Troubleshooting and FAQ or Top 5 issues Users Experience with DataFlows to see common issues and errors seen when building DataFlows.
Comments
0 comments
Please sign in to leave a comment.