I keep hitting issues trying to schedule the mater...
# ask-community
m
I keep hitting issues trying to schedule the materialization of statically partitioned assets (in this case I want all partitions to be materialized on each run) How can we do this in Dagster?
dagster bot responded by community 1
dagster bot answered by content 1
n
I think you can call
get_partition_keys
on your static partition and pass that to the
partition_key
argument of the RunRequest in your schedule
m
I see - have you come across any sample code?
n
From the docs https://docs.dagster.io/concepts/partitions-schedules-sensors/partitions#dynamically-partitioned-assets not for your specific use case but demonstrates the RunRequest
m
Amazing, thank you