I specified DatasetA as input and implemented a job in CodeRepository that processes and outputs to DatasetB.
I wanted to prepare a separate job to delete records from DatasetB, so I implemented it in another CodeRepository,
However, the following error occurred in Checks, and I found that it is not possible to output from multiple CodeRepository for one dataset.
Alias 'xxx/DatasetB' refers to a dataset that does not belong to this repository. To determine the owner of the dataset, check the job type and source provenance in the dataset job spec. If you wish to transfer ownership to this repository, remove the jobSpec from dataset, run CI on this repository and remove the transformation from the old repository.
We do not want to incorporate the deletion process into the processing because it would complicate the process,
Is there any way to remove specific records from the Dataset?