https://dagster.io/ logo
Title
d

Daniel Kim

07/03/2021, 9:44 PM
Hello! Is there an ability to load or reveal default values into dagit's Playground tab? I have a pipeline where I am using the same resource values for configuration to be used by multiple solids. I am providing the default values using dagster's
Field()
class. It would be nice to be able to reveal or show what the default values are. For example, perhaps in dagit's Playground, it would load or show the following:
resources:
  values:
    config:
      start_date_yyyymmdd: <today's date>
      end_date_yyyymmdd: <tomorrow's date>
The justification for this is the person executing the pipeline may not know what the default values are. As a workaround, I could mention what the default values are in the solids' docstrings or the solid definition's
description=
parameter.
Ooops, there is an open issue for this already.