Token导航 LogoToken导航TokenDH.com
开发规范需要联网github未标认证来源可访问许可证需确认审计提醒

dagster-best-practices达格斯特最佳实践

Agent Skill

dagster-best-practices 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

360

周安装

15

GitHub Stars

137

下载量

120
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:dagster-best-practices(达格斯特最佳实践)
来源仓库:https://github.com/dagster-io/skills
仓库路径:skills/dagster-best-practices
安装命令:
npx skills add https://github.com/dagster-io/skills --skill dagster-best-practices
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/dagster-io/skills --skill dagster-best-practices

简介

Dagster Best Practices 提供生产级数据管道构建模式与架构决策建议。

  • 适用于资产设计、调度策略、资源管理与测试方法论标准化指导。
  • 推荐按业务域划分资产组并使用传感器替代定时任务提升灵活性。
  • 需结合具体项目规模选择合适抽象层级避免过度工程化增加运维负担。
  • dagster-best-practices 属于开发规范类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Dagster Best Practices Skill

Expert guidance for building production-quality Dagster projects with recommended patterns and architectural decisions.

When to Use This Skill

Auto-invoke when users ask about:

  • "what's the best way to..." / "how should I..." / "recommended approach for..."
  • "how do I structure assets" / "asset design patterns"
  • "choosing automation" / "schedules vs sensors" / "automation conditions"
  • "resource patterns" / "managing resources" / "dependency injection"
  • "testing strategies" / "how to test assets"
  • "ETL patterns" / "data pipeline patterns"
  • "project structure" / "organizing code" / "components vs definitions"
  • "dbt integration patterns"
  • "partition strategies"
  • Any architectural or design question about Dagster

Architecture Decision Tree

Choose the right Dagster pattern based on what you're building:

What do you need guidance on?

├─ Structuring assets?
│  ├─ Basic asset design → references/assets.md#basic-patterns
│  ├─ Asset dependencies → references/assets.md#dependencies
│  ├─ Partitioned assets → references/assets.md#partitions
│  ├─ Multi-assets → references/assets.md#multi-assets
│  ├─ Asset groups → references/assets.md#organization
│  └─ Asset metadata → references/assets.md#metadata
│
├─ Choosing automation?
│  ├─ Modern approach → references/automation.md#declarative-automation (recommended)
│  ├─ Time-based → references/automation.md#schedules
│  ├─ Event-driven → references/automation.md#sensors
│  ├─ Partition automation → references/automation.md#partition-automation
│  └─ Backfills → references/automation.md#backfills
│
├─ Managing resources?
│  ├─ Database connections → references/resources.md#database-resources
│  ├─ API clients → references/resources.md#api-resources
│  ├─ Environment config → references/resources.md#environment-variables
│  ├─ Resource dependencies → references/resources.md#dependencies
│  └─ Testing with resources → references/resources.md#testing
│
├─ Testing strategies?
│  ├─ Unit testing assets → references/testing.md#unit-tests
│  ├─ Integration tests → references/testing.md#integration-tests
│  ├─ Asset checks → references/testing.md#asset-checks
│  ├─ Testing with resources → references/testing.md#mock-resources
│  └─ Test fixtures → references/testing.md#fixtures
│
├─ ETL patterns?
│  ├─ dbt integration → references/etl-patterns.md#dbt
│  ├─ dlt pipelines → references/etl-patterns.md#dlt
│  ├─ Sling replication → references/etl-patterns.md#sling
│  ├─ Extract-Load-Transform → references/etl-patterns.md#elt
│  └─ Data quality → references/etl-patterns.md#quality
│
└─ Project structure?
   ├─ Single project → references/project-structure.md#single-project
   ├─ Workspace (multi-project) → references/project-structure.md#workspaces
   ├─ Components vs definitions → references/project-structure.md#components
   ├─ Code locations → references/project-structure.md#code-locations
   └─ Directory conventions → references/project-structure.md#conventions

When to Use This Skill vs. Others

User NeedUse This SkillAlternative Skill
"what's the best way to X"✅ Yes - architectural guidance
"how do I structure assets"✅ Yes - asset design patterns
"which integration should I use"❌ No/dagster-integrations
"create an asset"❌ No/dg for scaffolding
"launch my assets"❌ No/dg for execution
"Python code standards"❌ No/dignified-python
"how do I test assets"✅ Yes - testing strategies
"schedule patterns"✅ Yes - automation guidance
"dbt best practices"✅ Yes - dbt patterns
"implement X pipeline"❌ First learn patterns here, then use /dg

Core Philosophy

Think in Assets: Dagster is built around the asset abstraction—persistent objects like tables, files, or models that your pipeline produces. Assets provide:

  • Clear Lineage: Explicit dependencies define data flow
  • Better Observability: Track what data exists and how it was created
  • Improved Testability: Assets are just Python functions that can be tested directly
  • Declarative Pipelines: Focus on *what* to produce, not *how* to execute

Assets over Ops: For most data pipelines, prefer assets over ops. Use ops only when the asset abstraction doesn't fit (non-data workflows, complex execution patterns).

Environment Separation: Use resources and EnvVar to maintain separate configurations for dev, staging, and production without code changes.


Quick Reference

If you're writing...Check this section/reference
@dg.assetAssets or references/assets.md
ConfigurableResourceResources or references/resources.md
AutomationConditionDeclarative Automation or references/automation.md
@dg.schedule or ScheduleDefinitionAutomation or references/automation.md
@dg.sensorSensors or references/automation.md
PartitionsDefinitionPartitions or references/automation.md
Tests with dg.materialize()Testing or references/testing.md
@asset_checkreferences/testing.md#asset-checks
@dlt_assets or @sling_assetsreferences/etl-patterns.md
@dbt_assetsdbt Integration or dbt-development skill
Definitions or code locationsreferences/project-structure.md
Components (defs.yaml)references/project-structure.md#components

Core Concepts

Asset: A persistent object (table, file, model) that your pipeline produces. Define with @dg.asset.

Resource: External services/tools (databases, APIs) shared across assets. Define with ConfigurableResource.

Job: A selection of assets to execute together. Create with dg.define_asset_job().

Schedule: Time-based automation for jobs. Create with dg.ScheduleDefinition.

Sensor: Event-driven automation that watches for changes. Define with @dg.sensor.

Partition: Logical divisions of data (by date, category). Define with PartitionsDefinition.

Definitions: The container for all Dagster objects in a code location.

Component: Reusable, declarative building blocks that generate Definitions from configuration (YAML). Use for standardized patterns.

Declarative Automation: Modern automation framework where you set conditions on assets rather than scheduling jobs.


Assets Quick Reference

Basic Asset

import dagster as dg

@dg.asset
def my_asset() -> None:
    """Asset description appears in the UI."""
    # Your computation logic here
    pass

Asset with Dependencies

@dg.asset
def downstream_asset(upstream_asset) -> dict:
    """Depends on upstream_asset by naming it as a parameter."""
    return {"processed": upstream_asset}

Asset with Metadata

@dg.asset(
    group_name="analytics",
    key_prefix=["warehouse", "staging"],
    description="Cleaned customer data",
    owners=["team:data-engineering", "alice@example.com"],
    tags={"priority": "high", "domain": "sales"},
    code_version="1.2.0",
)
def customers() -> None:
    pass

Best Practices:

  • Naming: Use nouns describing what is produced (customers, daily_revenue), not verbs (load_customers)
  • Tags: Primary mechanism for organization (use liberally)
  • Owners: Specify team or individual owners for accountability
  • code_version: Track when asset logic changes for lineage

Resources Quick Reference

Define a Resource

from dagster import ConfigurableResource

class DatabaseResource(ConfigurableResource):
    connection_string: str

    def query(self, sql: str) -> list:
        # Implementation here
        pass

Use in Assets

@dg.asset
def my_asset(database: DatabaseResource) -> None:
    results = database.query("SELECT * FROM table")

Register in Definitions

dg.Definitions(
    assets=[my_asset],
    resources={"database": DatabaseResource(connection_string="...")},
)

Automation Quick Reference

Schedule

import dagster as dg
from my_project.defs.jobs import my_job

my_schedule = dg.ScheduleDefinition(
    job=my_job,
    cron_schedule="0 0 * * *",  # Daily at midnight
)

Common Cron Patterns

PatternMeaning
0 * * * *Every hour
0 0 * * *Daily at midnight
0 0 * * 1Weekly on Monday
0 0 1 * *Monthly on the 1st
0 0 5 * *Monthly on the 5th

Declarative Automation Quick Reference

Modern automation pattern: Set conditions on assets instead of scheduling jobs.

AutomationCondition Examples

from dagster import AutomationCondition

# Update when upstream data changes
@dg.asset(
    automation_condition=AutomationCondition.on_missing()
)
def my_asset() -> None:
    pass

# Update daily at a specific time
@dg.asset(
    automation_condition=AutomationCondition.on_cron("0 9 * * *")
)
def daily_report() -> None:
    pass

# Combine conditions
@dg.asset(
    automation_condition=(
        AutomationCondition.on_missing()
        | AutomationCondition.on_cron("0 0 * * *")
    )
)
def flexible_asset() -> None:
    pass

Benefits over Schedules:

  • More expressive condition logic
  • Asset-native (no separate job definitions needed)
  • Automatic dependency-aware execution
  • Better for complex automation scenarios

When to Use:

  • Asset-centric pipelines with complex update logic
  • Condition-based triggers (data availability, freshness)
  • Prefer over schedules for new projects

Sensors Quick Reference

Basic Sensor Pattern

@dg.sensor(job=my_job)
def my_sensor(context: dg.SensorEvaluationContext):
    # 1. Read cursor (previous state)
    previous_state = json.loads(context.cursor) if context.cursor else {}
    current_state = {}
    runs_to_request = []

    # 2. Check for changes
    for item in get_items_to_check():
        current_state[item.id] = item.modified_at
        if item.id not in previous_state or previous_state[item.id] != item.modified_at:
            runs_to_request.append(dg.RunRequest(
                run_key=f"run_{item.id}_{item.modified_at}",
                run_config={...}
            ))

    # 3. Return result with updated cursor
    return dg.SensorResult(
        run_requests=runs_to_request,
        cursor=json.dumps(current_state)
    )

Key: Use cursors to track state between sensor evaluations.


Partitions Quick Reference

Time-Based Partition

weekly_partition = dg.WeeklyPartitionsDefinition(start_date="2023-01-01")

@dg.asset(partitions_def=weekly_partition)
def weekly_data(context: dg.AssetExecutionContext) -> None:
    partition_key = context.partition_key  # e.g., "2023-01-01"
    # Process data for this partition

Static Partition

region_partition = dg.StaticPartitionsDefinition(["us-east", "us-west", "eu"])

@dg.asset(partitions_def=region_partition)
def regional_data(context: dg.AssetExecutionContext) -> None:
    region = context.partition_key

Partition Types

TypeUse Case
DailyPartitionsDefinitionOne partition per day
WeeklyPartitionsDefinitionOne partition per week
MonthlyPartitionsDefinitionOne partition per month
HourlyPartitionsDefinitionOne partition per hour
StaticPartitionsDefinitionFixed set of partitions
DynamicPartitionsDefinitionPartitions created at runtime
MultiPartitionsDefinitionCombine multiple partition dimensions

Best Practice: Limit partitions to 100,000 or fewer per asset for optimal UI performance.


Testing Quick Reference

Direct Function Testing

def test_my_asset():
    result = my_asset()
    assert result == expected_value

Testing with Materialization

def test_asset_graph():
    result = dg.materialize(
        assets=[asset_a, asset_b],
        resources={"database": mock_database},
    )
    assert result.success
    assert result.output_for_node("asset_b") == expected

Mocking Resources

from unittest.mock import Mock

def test_with_mocked_resource():
    mocked_resource = Mock()
    mocked_resource.query.return_value = [{"id": 1}]

    result = dg.materialize(
        assets=[my_asset],
        resources={"database": mocked_resource},
    )
    assert result.success

Asset Checks

@dg.asset_check(asset=my_asset)
def validate_non_empty(my_asset):
    return dg.AssetCheckResult(
        passed=len(my_asset) > 0,
        metadata={"row_count": len(my_asset)},
    )

dbt Integration

For dbt integration, prefer the component-based approach for standard dbt projects. Use Pythonic assets only when you need custom logic or fine-grained control.

Component-Based dbt (Recommended)

Use DbtProjectComponent with remote Git repository:

# defs/transform/defs.yaml
type: dagster_dbt.DbtProjectComponent

attributes:
  project:
    repo_url: https://github.com/dagster-io/jaffle-platform.git
    repo_relative_path: jdbt
  dbt:
    target: dev

When to use:

  • Standard dbt transformations
  • Remote dbt project in Git repository
  • Declarative configuration preferred
  • Component reusability desired

For private repositories:

attributes:
  project:
    repo_url: https://github.com/your-org/dbt-project.git
    repo_relative_path: dbt
    token: "{{ env.GIT_TOKEN }}"
  dbt:
    target: dev

Pythonic dbt Assets

For custom logic or local development:

from dagster_dbt import DbtCliResource, dbt_assets
from pathlib import Path

dbt_project_dir = Path(__file__).parent / "dbt_project"

@dbt_assets(manifest=dbt_project_dir / "target" / "manifest.json")
def my_dbt_assets(context: dg.AssetExecutionContext, dbt: DbtCliResource):
    yield from dbt.cli(["build"], context=context).stream()

dg.Definitions(
    assets=[my_dbt_assets],
    resources={"dbt": DbtCliResource(project_dir=dbt_project_dir)},
)

When to use:

  • Custom transformation logic needed
  • Local development with frequent dbt code changes
  • Fine-grained control over dbt execution

Full patterns: See Dagster dbt docs


When to Load References

Load references/assets.md when:

  • Defining complex asset dependencies
  • Adding metadata, groups, or key prefixes
  • Working with asset factories
  • Understanding asset materialization patterns

Load references/resources.md when:

  • Creating custom ConfigurableResource classes
  • Integrating with databases, APIs, or cloud services
  • Understanding resource scoping and lifecycle

Load references/automation.md when:

  • Creating schedules with complex cron patterns
  • Building sensors with cursors and state management
  • Implementing partitions and backfills
  • Using declarative automation conditions
  • Automating dbt or other integration runs

Load references/testing.md when:

  • Writing unit tests for assets
  • Mocking resources and dependencies
  • Using dg.materialize() for integration tests
  • Creating asset checks for data validation

Load references/etl-patterns.md when:

  • Using dlt for embedded ETL
  • Using Sling for database replication
  • Loading data from files or APIs
  • Integrating external ETL tools

Load references/project-structure.md when:

  • Setting up a new Dagster project
  • Configuring Definitions and code locations
  • Using dg CLI for scaffolding
  • Organizing large projects with Components

Project Structure

Recommended Layout

my_project/
├── pyproject.toml
├── src/
│   └── my_project/
│       ├── definitions.py     # Main Definitions
│       └── defs/
│           ├── assets/
│           │   ├── __init__.py
│           │   └── my_assets.py
│           ├── jobs.py
│           ├── schedules.py
│           ├── sensors.py
│           └── resources.py
└── tests/
    └── test_assets.py

Definitions Pattern (Modern)

Auto-Discovery (Simplest):

# src/my_project/definitions.py
from dagster import Definitions
from dagster_dg import load_defs

# Automatically discovers all definitions in defs/ folder
defs = Definitions.merge(
    load_defs()
)

Combining Components with Pythonic Assets:

# src/my_project/definitions.py
from dagster import Definitions
from dagster_dg import load_defs
from my_project.assets import custom_assets

# Load component definitions from defs/ folder
component_defs = load_defs()

# Define pythonic assets separately
pythonic_defs = Definitions(
    assets=custom_assets,
    resources={...}
)

# Merge them together
defs = Definitions.merge(component_defs, pythonic_defs)

Traditional (Explicit):

# src/my_project/definitions.py
from dagster import Definitions
from my_project.defs import assets, jobs, schedules, resources

defs = Definitions(
    assets=assets,
    jobs=jobs,
    schedules=schedules,
    resources=resources,
)

Scaffolding with dg CLI

# Create new project
uvx create-dagster my_project

# Scaffold new asset file
dg scaffold defs dagster.asset assets/new_asset.py

# Scaffold schedule
dg scaffold defs dagster.schedule schedules.py

# Scaffold sensor
dg scaffold defs dagster.sensor sensors.py

# Validate definitions
dg check defs

Common Patterns

Job Definition

trip_update_job = dg.define_asset_job(
    name="trip_update_job",
    selection=["taxi_trips", "taxi_zones"],
)

Run Configuration

from dagster import Config

class MyAssetConfig(Config):
    filename: str
    limit: int = 100

@dg.asset
def configurable_asset(config: MyAssetConfig) -> None:
    print(f"Processing {config.filename} with limit {config.limit}")

Asset Dependencies with External Sources

@dg.asset(deps=["external_table"])
def derived_asset() -> None:
    """Depends on external_table which isn't managed by Dagster."""
    pass

Anti-Patterns to Avoid

Anti-PatternBetter Approach
Hardcoding credentials in assetsUse ConfigurableResource with env vars
Giant assets that do everythingSplit into focused, composable assets
Ignoring asset return typesUse type annotations for clarity
Skipping tests for assetsTest assets like regular Python functions
Not using partitions for time-seriesUse DailyPartitionsDefinition etc.
Putting all assets in one fileOrganize by domain in separate modules

CLI Quick Reference

dg CLI (Recommended for Modern Projects)

# Development
dg dev                          # Start Dagster UI (port 3000)
dg check defs                   # Validate definitions load correctly
dg list defs                    # Show all loaded definitions
dg list components              # Show available components

# Scaffolding
dg scaffold defs dagster.asset assets/file.py
dg scaffold defs dagster.schedule schedules.py
dg scaffold defs dagster.sensor sensors.py
dg scaffold defs dagster.resources resources.py

# Execution
dg launch --assets my_asset                    # Materialize specific asset
dg launch --assets asset1 asset2               # Multiple assets
dg launch --assets "*"                         # Materialize all assets
dg launch --assets "tag:priority=high"         # Assets by tag
dg launch --assets "group:sales_analytics"     # Assets by group
dg launch --assets "kind:dbt"                  # Assets by kind
dg launch --job my_job                         # Execute a job

# Partitions
dg launch --assets my_asset --partition 2024-01-15              # Single partition
dg launch --assets my_asset --partition-range "2024-01-01...2024-01-31"  # Backfill range

# Configuration
dg launch --assets my_asset --config-json '{"ops": {"my_asset": {"config": {"param": "value"}}}}'

# Environment Variables
uv run dg launch --assets my_asset             # Auto-loads .env with uv
set -a; source .env; set +a; dg launch --assets my_asset  # Manual .env loading

# See /dg:launch command for comprehensive launch documentation

dagster CLI (Legacy/General Purpose)

# Use for non-dg projects or advanced scenarios
dagster dev                     # Start Dagster UI
dagster job execute -j my_job   # Execute a job
dagster asset materialize -a my_asset  # Materialize an asset

Use dg CLI for projects created with create-dagster. It provides auto-discovery, scaffolding, and modern workflow support.


References

  • Assets: references/assets.md - Detailed asset patterns and launching guidance
  • Resources: references/resources.md - Resource configuration
  • Automation: references/automation.md - Schedules, sensors, partitions
  • Testing: references/testing.md - Testing patterns and asset checks
  • ETL Patterns: references/etl-patterns.md - dlt, Sling, file/API ingestion
  • Project Structure: references/project-structure.md - Definitions, Components
  • Launch Command: /dg:launch - Comprehensive asset launching documentation
  • Official Docs: https://docs.dagster.io
  • API Reference: https://docs.dagster.io/api/dagster

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

36.06%
按下载量换算43

Claude

32.33%
按下载量换算39

Cursor

19.21%
按下载量换算23

Gemini CLI

9.8%
按下载量换算12

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills