Skip to content
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

Open
wants to merge 5 commits into
base: master
Choose a base branch
from

Conversation

cmpadden
Copy link
Contributor

Summary & Motivation

Current docs promote __init__ methods for defining YAML schema. This updates the tutorial to use data classes.

How I Tested These Changes

yarn start

Changelog

NOCHANGELOG

from dagster import Definitions
from dagster_components import (
Component,
ComponentLoadContext,
Resolvable,
)

@dataclass(frozen=True)
Copy link
Contributor Author

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.

Copy link
Member

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

Copy link
Contributor Author

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?

@cmpadden cmpadden requested review from neverett and schrockn March 31, 2025 21:15
Copy link

github-actions bot commented Mar 31, 2025

Deploy preview for dagster-docs ready!

Preview available at https://dagster-docs-njwkrbt51-elementl.vercel.app
https://colton-docs-favor-dataclasses-component-authoring.archive.dagster-docs.io

Direct link to changed pages:

@cmpadden cmpadden requested a review from OwenKephart April 2, 2025 17:00
Copy link
Contributor

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

@schrockn
Copy link
Member

schrockn commented Apr 2, 2025

So I think we should scaffold @dataclass by default (because I don't think most people will care they just want to be able add attributes easily) but then have a flag to opt-out for people who use another system.

@@ -9,17 +9,12 @@
import dagster as dg


@dataclass
@dataclass(frozen=True)
Copy link
Member

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.

Copy link
Member

@schrockn schrockn left a 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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants