Hey team!
Semantic versioning is not supported by templates, meaning that transforms are forced into snapshot modes after a template deployment if a transform has a semantic version > 1. I have been trying to read from the output in snapshot mode and try to union that with the input and replace the output dataset by the result of the union but it looks like reading from the output in snapshot mode is not supported, I have been trying
previous_output_df = output_df.dataframe('current', schema=schema_test)
previous_output_df = output_df.dataframe('previous', schema=schema_test)
but previous_output_df.isEmpty() is always True. Does anyone using templates and semantic versioning in your transforms have a good way around this? It seems that reading from the output in a Java transform is allowed but not in a Python transform
Thanks!!