-
Notifications
You must be signed in to change notification settings - Fork 1.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[docs] updates docs to favor @dataclass for component authoring #28900
base: master
Are you sure you want to change the base?
[docs] updates docs to favor @dataclass for component authoring #28900
Conversation
...es/docs_snippets/docs_snippets/guides/components/shell-script-component/with-custom-scope.py
Outdated
Show resolved
Hide resolved
from dagster import Definitions | ||
from dagster_components import ( | ||
Component, | ||
ComponentLoadContext, | ||
Resolvable, | ||
) | ||
|
||
@dataclass(frozen=True) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This also updates the template used in scaffolding, please let me know if this is okay.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
so the scaffolding is worthy of discussion. we specifically wanted to be agnostic to this, as not everyone uses dataclasses
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ah understood, for now I will revert that change in this PR.
How do you feel about being opinionated about using data classes in the tutorial? Should we have a tab selection and present both options, or is showing the dataclass sufficient?
...ocs_snippets/docs_snippets/guides/components/shell-script-component/2-shell-command-empty.py
Outdated
Show resolved
Hide resolved
Deploy preview for dagster-docs ready! Preview available at https://dagster-docs-njwkrbt51-elementl.vercel.app Direct link to changed pages: |
should we add a little bit of docs explanation for the dataclass usage? like make it clear that dataclass usage is optional but gets rid of boilerplate |
So I think we should scaffold |
@@ -9,17 +9,12 @@ | |||
import dagster as dg | |||
|
|||
|
|||
@dataclass | |||
@dataclass(frozen=True) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
although we use frozen
internally our scaffolding does not product it so it might just be confusing.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let's drop frozen and I think you should rebase on my changes
Summary & Motivation
Current docs promote
__init__
methods for defining YAML schema. This updates the tutorial to use data classes.How I Tested These Changes
Changelog
NOCHANGELOG