Channels
announcements
introduce-yourself
resources
random
plugins-integrations
user-research
questions
questions-so
job-posting
help-
circleci-status
dependencies-releases
Powered by
#questions
Title
# questions
s
Sasha Collin
01/03/2023, 9:17 PM
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
Deepyaman Datta
01/04/2023, 4:57 PM
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
Sasha Collin
01/04/2023, 4:57 PM
ok clear, thx !
Post