Dagster Pipes is a toolkit for building integrations between Dagster and external execution environments. It standardizes the process of passing parameters, injecting context information, ingesting logs, and collecting metadata all while remaining agnostic to how remote computations are launched in those environments. This enables the separation of orchestration and business logic in the Dagster ecosystem.
It is particularly useful for the process of incorporating pre-existing code, business logic, and execution environments into Dagster. With Dagster Pipes and a few lines of code, you can execute your code through the orchestrator. In turn, you can stream logs and metadata back to Dagster so you can leverage its observability, lineage, cataloging, and debugging capabilities.
With Dagster Pipes, you can:
Dagster Pipes provides a protocol between the orchestration environment (Dagster) and external execution (ex: Databricks), and a toolkit for building implementations of that protocol.
When Dagster Pipes is invoked, several steps will be carried out in Dagster's orchestration process and in the external process, such as Databricks.
When Dagster Pipes is called in a Dagster asset or op, Dagster launches the external process with parameters and context information (ex: partition_key
, asset_key
, etc.)
The process starts and loads the context info provided by Dagster. While the process runs, execution data, logs, and any specified metadata are streamed back to Dagster.
After Dagster receives the data from the external process, it’ll be visible in the Dagster UI.
While Dagster Pipes is lightweight and flexible, there are a few limitations to be aware of:
Step launchers and Pipes can't currently be used together. Dagster Pipes is a lightweight alternative to step launchers. Think of this as an either-or situation - you can use step launchers or you can use Dagster Pipes. If your external code requires the core Dagster module (see below), you should use step launchers instead of Pipes.
Some Dagster concepts aren't supported for use in external processes. Dagster Pipes (dagster-pipes
) doesn't include the core Dagster (dagster
) library. As such, concepts like resources and I/O managers, which are included in dagster
, aren't available for use in external processes executed by Dagster Pipes.
For example, I/O managers aren't currently supported. A work-around is demonstrated in the step launchers migration guide.
Ready to get started with Dagster Pipes? Depending on what your goal is, how you approach using Dagster Pipes can differ.
If you’re writing scripts that are being orchestrated, all you’ll need to do is lightly modify your existing scripts. Check out the Dagster Pipes tutorial to get up and running.
If you need to orchestrate scripts others have written, you can use our ready-to-go integrations to execute scripts in your chosen technology:
If you don’t see your integration or you want to fully customize your Pipes experience, check out the Dagster Pipes details and customization guide to learn how to create a custom experience.