dagster-malloy
dagster-malloy is an unofficial community integration library providing Dagster support for Malloy models (.malloy) and notebooks (.malloynb).
Features
-
Malloy as Dagster assets: Expose Malloy queries, dashboards and notebooks as Dagster assets including rich metadata (compiled SQL, Malloy source code, column schema, row preview, code references, and execution duration).
-
Complete data lineage: Automatically resolve Malloy source dependencies — including joined sources — to build a complete asset graph visible in the Dagster UI.
-
Materialization: Queries are compiled and executed via
malloy-clior themalloyPython SDK. Results are surfaced as Apache Arrow, enabling zero-copy handoff to downstream assets. -
Data quality checks: Write validation queries directly in Malloy and have them run automatically as Dagster asset checks. Failed checks block downstream materializations, appear in the Dagster UI timeline, and are tracked in the asset health history — without any extra orchestration code.
# Verify Customer IDs are non-null query: check_valid_customer_ids is orders -> { where: customer_id is null aggregate: invalid_count is count() }
Quickstart
Try dagster-malloy using:
uvx dagster-malloy-demo
This generates a sample project (./malloy_demo) and launches the Dagster UI at http://127.0.0.1:3000.
Installation
uv add dagster-malloy
To enable DataFrame outputs via pandas:
uv add "dagster-malloy[pandas]"
To enable the in-process Python SDK backend:
uv add "dagster-malloy[python-backend]"
Usage
1. Loading Malloy assets
Use load_malloy_assets to discover and construct Dagster assets from .malloy files or .malloynb notebooks in a directory:
from pathlib import Path
from dagster import Definitions
from dagster_malloy import load_malloy_assets, MalloyResource
malloy_assets = load_malloy_assets(path=Path(__file__).parent / "models")
defs = Definitions(
assets=[malloy_assets],
resources={
"malloy": MalloyResource(
execution_mode="auto", # 'cli' (default), 'python', or 'auto'
),
},
)
2. Execution engines
dagster-malloy supports two execution backends via MalloyResource:
cli(Default / Recommended): Executes compilation and query execution usingmalloy-cli/npx malloy-cli.python: Executes queries in-process using themalloyPython SDK (malloy.Runtime).auto: Selectscliifmalloy-cliornpxis on$PATH, otherwise falls back topython.
resource = MalloyResource(
execution_mode="cli",
cli_path="npx malloy-cli", # Custom CLI executable path
config_path="path/to/malloy-config.json",
)
3. Custom translator (MalloyTranslator)
Subclass MalloyTranslator to customize asset keys, tags, group names, metadata, or upstream dependencies:
from dagster import AssetKey
from dagster_malloy import MalloyTranslator, MalloyTranslatorData, load_malloy_assets
class CustomMalloyTranslator(MalloyTranslator):
def get_asset_key(self, data: MalloyTranslatorData) -> AssetKey:
return AssetKey(["analytics", data.query_info.name])
def get_group_name(self, data: MalloyTranslatorData) -> str:
return "malloy_models"
malloy_assets = load_malloy_assets(
path="./models",
translator=CustomMalloyTranslator(),
)
4. Data quality checks
Use build_malloy_asset_checks to discover check queries in a .malloy file and register them as Dagster AssetCheckResult checks attached to a target asset:
from dagster import AssetKey
from dagster_malloy import build_malloy_asset_checks
checks = build_malloy_asset_checks(
file_path="./models/sales.malloy",
target_asset_key=AssetKey(["sales", "customer_analytics"]),
)
A query is recognised as a check if it's name starts with check_, test_, assert_ (eg. query: check_valid_ids is ...) or if it's annotated with # @check, # @test or # @assert before the query definition.
A check passes when the query returns zero rows, or when the first row contains invalid_count = 0 or fail_count = 0.
Example Project
A self-contained runnable example project is available in dagster_malloy_demo with instructions to run locally.
To clone and run the example locally:
git clone https://github.com/mathisdrn/dagster-malloy.git
cd dagster-malloy/dagster_malloy_demo
uv run generate_data.py
uv run dg dev -f definitions.py
Open http://127.0.0.1:3000 to view the asset catalog and lineage graph.
Contributing
Contributions, issues, and pull requests are welcome! Feel free to open an issue or submit a pull request on GitHub.
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file dagster_malloy-0.1.4.tar.gz.
File metadata
- Download URL: dagster_malloy-0.1.4.tar.gz
- Upload date:
- Size: 497.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via:
uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b0fce9030d9cb43c9534fba68d4433ab97242d45630460c4c31a1b02640bd9e6
|
|
| MD5 |
e40085730788e4c8212446c225bc7c3e
|
|
| BLAKE2b-256 |
f3063a53c34f962be8d26325b0566184437e6fd9d886547dbecd74511cb0f4ca
|
File details
Details for the file dagster_malloy-0.1.4-py3-none-any.whl.
File metadata
- Download URL: dagster_malloy-0.1.4-py3-none-any.whl
- Upload date:
- Size: 149.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via:
uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
371445868a5c4815fa30466f996867a4db445dfb16818f3d7984af2af2fe95bb
|
|
| MD5 |
eda583c56b44b2918c8eba4e4f38ab23
|
|
| BLAKE2b-256 |
3300e29ac17039e9c8c353132c9f423d44149a26c5a8daeaf5e84e37ff48e239
|