Hi All, Just a quick question, We all know that we...
# ask-community
n
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
Interesting question, I hadn’t dug into this before. According to the `ScheduleDefinition`’s documentation, you can pass an argument called `solid_selection`:
Copy code
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)