Channels
dagster-de
topic-async-execution
dagster-jp
dagster-cube
gigs-freelance
dagster-wandb
dagster-feedback
dagster-machine-learning
dagster-bigquery
dagster-support
dagster-dask
dagster-snowflake
dagster-releases
dagster-dbt
faq-read-me-before-posting
tools
dagster-ext
project-flexible-range-backfills
data-platform-design
events
dagster-serverless
dagster-noteable
introductions
dagster-airflow
dagster-cloud
random
dagster-airbyte
dagster-spatial
announcements
github-discussions
豆瓣酱帮
dagstereo
dagster-ecs
dagster-kubernetes
jobs
dagster-showcase
data-quality-asset-checks
Powered by
#announcements
Title
c
Cris
07/24/2020, 3:37 PM
Hi! I was wondering if there's a way to generate shell solids with arguments that come as additional config or as inputs to the solid using dagster-shell? I ended up replicating part of the code in dagster shell but it looks kinda messy
a
alex
07/24/2020, 3:46 PM
are you using
shell_solid
?
take a look at
https://github.com/dagster-io/dagster/blob/master/python_modules/libraries/dagster-shell/dagster_shell/solids.py
you could always write your own solid that wraps
execute
imported from dagster_shell.utils
c
Cris
07/24/2020, 11:34 PM
Yes! Im doing the part that wraps execute
Post