Is it possible to disable `_validate_unique_output...
# questions
n
Is it possible to disable
_validate_unique_outputs(nodes)
via hooks or by implementing a modified
Pipeline
class?
d
You can monkeypatch most anything. 🙈 So if you really want to do this (I assume, at your own risk), I would do that; there's not really a recommended way via hooks or modifying
Pipeline
.
j
@Nelson Zambrano could you detail a bit more what are you trying to achieve? for the record, there have been previous discussions about this in https://github.com/kedro-org/kedro/issues/806
n
+1 on understanding the need, why do you want multiple nodes to output the same dataset (potentially overwriting each other in non-deterministic order)?