I have a workflow where I need to get rows from the input that were only added after the last build. Input is a snapshot (non-negotiable) so incremental doesn’t help.
Currently, I am making this work by having a column in the output dataset that stores the last build timestamp and at the start of every build, I am getting the max of the last build timestamp column and then filtering the input data based on the max value.
Is there a better way to achieve this? Would it be possible to include the last build timestamp as part of the TransformOutput or IncrementalTransformOutput object as a metadata?