https://dagster.io/ logo
Title
n

Nilesh Pandey

01/13/2022, 2:35 PM
Hi All, Just a quick question, We all know that we can a schedule a pipeline in Dagster. I know we can control the execution of specific solid in a pipeline via Dagit manually, but is it possible to schedule a specific solid and not the whole pipeline ?
a

Alex Service

01/13/2022, 2:41 PM
Interesting question, I hadn’t dug into this before. According to the `ScheduleDefinition`’s documentation, you can pass an argument called `solid_selection`:
solid_selection (Optional[List[str]]): A list of solid subselection (including single solid names) to execute when the schedule runs. e.g. ``['*some_solid+', 'other_solid']``
I found this in
dagster.core.definitions.schedule_definition
It also appears in the docs here (same place)