https://kedro.org/ logo
#questions
Title
# questions
v

Vassilis Kalofolias

02/15/2023, 2:42 PM
Hello, I have a quick question: What is the use-case for
dataset.confirm()
? Documentation is not clear, also it is not implemented in any dataset except
IncrementalDataSet
.
d

datajoely

02/15/2023, 2:48 PM
it’s not part of the AbstractDataSet classes, it’s part of the mechanism of how the IncrementalDataSet checkpoints. https://kedro.readthedocs.io/en/stable/_modules/kedro/io/core.html#AbstractDataSet what are you trying to understand?
v

Vassilis Kalofolias

02/15/2023, 3:36 PM
OK I see, I thought it could be used to somehow validate data quality.
d

datajoely

02/15/2023, 3:38 PM
no for that - your best bet is hooks
v

Vassilis Kalofolias

02/15/2023, 3:38 PM
Thanks for the quick answer! I'll check out hooks.
6 Views