Hello, Is there a way to prevent Kedro from loadi...
# questions
n
Hello, Is there a way to prevent Kedro from loading a data set that's used as input to multiple nodes every time it's being used? (using ThreadRunner)
s
Upload the data and keep it in as MemoryDataset
d
There’s also a
CachedDataSet
wrapper for this
n
@Nelson Zambrano If it's memory dataset - the data is keep in memory and get garbage collected when it's not needed so there isn't penalty there
🥳 1
n
Is using
CachedDataSet
a good choice for a scenario where a dataset isn't a
MemoryDataSet
but is accessed by multiple nodes? @Nok Lam Chan
👍🏼 1
n
I think so