How to update a Kedro pipeline instead of replacing it?
I have a dataset which I have to increment every run, but it is instead replacing it.
The catalog is generalized, except for the result.csv, which is a concatenated file of all the other files generated by the pipelines.
"{namespace}.{dataset_name}@csv":
type: pandas.CSVDataset
filepath: data/01_raw/{namespace}/{dataset_name}.csv
versioned: True
"{namespace}.result":
type: pandas.CSVDataset
filepath: data/01_raw/{namespace}/result.csv
In the nodes.py file, I'm using a simple...