Hello team! Is it possible to call a subdataset fr...
# questions
s
Hello team! Is it possible to call a subdataset from a partitioned dataset directly from a pipeline? ie doing something like this:
Copy code
node(func=func, inputs="partitioned_dataset_name:dataset_name", ....)
thanks!
d
Partitions are lazily loaded, so you can pass the partition key as a parameter but use the full partitioned dataset (it's not going to load all the partitions).
s
ok clear, thx !