-
Notifications
You must be signed in to change notification settings - Fork 93
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* vs dagster * Apply suggestions from code review Co-authored-by: Anna Geller <[email protected]> --------- Co-authored-by: Anna Geller <[email protected]>
- Loading branch information
1 parent
728c291
commit 5eec858
Showing
6 changed files
with
336 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
<template> | ||
<div class="container-fluid"> | ||
<div class="hero container"> | ||
<div class="row"> | ||
<div class="col-md-6 align-items-center d-flex"> | ||
<div> | ||
<h1 data-aos="fade-right">The differences between Kestra and Dagster</h1> | ||
<p class="baseline" data-aos="fade-left">How to Choose the Right Orchestration Platform</p> | ||
<div class="cta"> | ||
<NuxtLink href="/docs/getting-started" class="btn btn-lg btn-primary mx-2 mt-2" data-aos="zoom-in"> | ||
Get started with Kestra | ||
</NuxtLink> | ||
</div> | ||
</div> | ||
</div> | ||
<div class="col-md-6 d-flex justify-content-center" data-aos="zoom-in"> | ||
<img class="zoom img-fluid" src="/landing/vs/dagster/header.svg" alt="Kestra compared to dagster"/> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</template> | ||
|
||
<script> | ||
export default { | ||
} | ||
</script> | ||
|
||
<style lang="scss" scoped> | ||
@import "../../../assets/styles/variable"; | ||
.container-fluid { | ||
background: #090311 url("/landing/vs/dagster/header-bg.svg") no-repeat bottom center; | ||
background-size: cover; | ||
color: var(--bs-white); | ||
padding-top: 80px; | ||
margin-top: -80px; | ||
} | ||
</style> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,204 @@ | ||
<template> | ||
<div class="container"> | ||
<Section> | ||
<div> | ||
<h2>Kestra vs. Dagster</h2> | ||
<p>Kestra is an open-source orchestrator designed to bring Infrastructure as Code (IaC) best practices to all workflows — from those orchestrating mission-critical operations, business processes, and data pipelines to simple Zapier-style automation. Built with an API-first philosophy, Kestra enables users to define and manage data pipelines through a simple YAML configuration file. This approach frees you from being tied to a specific client implementation, allowing for greater flexibility and easier integration with various tools and services.</p> | ||
<p>Dagster is an entirely different product — it's focused on orchestrating data assets, not on orchestrating tasks, processes, business operations, microservices, and applications as Kestra does. While Kestra can orchestrate data workflows in a generic way, Dagster is more specialized in that area.</p> | ||
</div> | ||
|
||
<div clas="mt-5"> | ||
<h3>Similarities</h3> | ||
<ul> | ||
<li>Both provide a declarative interface.</li> | ||
<li>CI/CD integration is supported by both tools.</li> | ||
<li>Both tools aim to streamline the orchestration of workflows.</li> | ||
</ul> | ||
</div> | ||
|
||
<div clas="mt-5"> | ||
<h3>Differences</h3> | ||
<ul> | ||
<li>Kestra is language-agnostic, while Dagster is designed primarily for Python.</li> | ||
<li>Kestra offers API-first design principles while Dagster is client-code first.</li> | ||
<li>Kestra leverages a simple YAML configuration for setting up tasks and pipelines, whereas Dagster relies on Python-based DSL and Software-Defined Assets.</li> | ||
<li>Kestra offers a quick setup, getting you to a scheduled workflow in minutes. Dagster has a steeper learning curve as you need to know the framework and their way of doing things which has both its own pros and cons.</li> | ||
</ul> | ||
</div> | ||
|
||
<div class="mt-5"> | ||
<h2>Declarative Paradigms</h2> | ||
<p>Dagster embraces a Python-first environment, with its Software-Defined Assets (SDAs). This approach naturally attracts those who are comfortable in a Pythonic ecosystem. SDAs serve not just as units of computation but as documented assets within the framework. By isolating the business logic from I/O operations, they grant engineers fine-grained control over data lineage, aiding debugging and understanding of asset states. This Python-centric philosophy extends into Dagster’s environmental abstraction, allowing users to swap out external services and runtimes without altering any user code. Dagster is designed for data engineers and analytics engineers who desire a platform that accommodates a complex Python-based asset lifecycle.</p> | ||
<p>On the other side, Kestra aims for an agnostic approach to programming languages and focuses on the YAML-based orchestration. Data pipeline orchestration can be language-neutral and still maintain robustness and scalability. YAML serves as the primary interface through which workflows are defined. This inclusivity manifests in its ability to incorporate business logic written in languages as diverse as SQL, R, Rust, and even Bash. Consequently, Kestra finds its audience among senior software engineers, especially those who work in diverse tech stacks.</p> | ||
<p> Both Kestra and Dagster offer unique answers to the question of what declarative orchestration can be. While Dagster may appeal to those who favor a Pythonic richness in their workflows, Kestra attracts those who seek language flexibility, scalability, and a more inclusive approach to defining orchestration logic. The choice between the two will, therefore, depend heavily on the specific technical needs, the programming languages your team is comfortable with, and your long-term vision for data pipeline or workflow management.</p> | ||
</div> | ||
|
||
<div class="mt-5"> | ||
<h2>Approach to Workflow Definitions</h2> | ||
<p>Kestra offers a YAML-based workflow definition interface that simplifies the creation and management of workflows. This contrasts with Dagster’s Python DSL, which, while offering several advantages, adds a layer of complexity and leads to difficulties in maintaining custom Python wrappers over time.</p> | ||
</div> | ||
|
||
<div class="mt-5"> | ||
<h2>Workflow Deployment</h2> | ||
<p>Kestra allows for workflow deployments directly from its integrated UI code editor. Moreover, it supports Terraform and integrates with various CI/CD systems like GitHub Actions.</p> | ||
<p>In contrast, the deployment patterns in Dagster might be more challenging, especially in the open-source version .</p> | ||
</div> | ||
|
||
<div class="mt-5"> | ||
<h2>Developer Experience</h2> | ||
<p>Kestra offers a more comprehensive developer experience with built-in documentation and a code editor, as well as a live-updating topology view. Dagster focuses on data engineers who know Python. In contrast, Kestra supports software engineers working on any technology stack.</p> | ||
</div> | ||
|
||
<div class="mt-5"> | ||
<h2>Cross-role Collaboration and Accessibility</h2> | ||
<p>Kestra’s user-friendly interface aims to invite not just engineers but also business stakeholders into the data pipeline process. Dagster comes with a steeper learning curve; it introduces many concepts that can be overwhelming when onboarding new colleagues and stakeholders to the platform.</p> | ||
</div> | ||
</Section> | ||
|
||
<Section class="modern mb-5"> | ||
<div class="row"> | ||
<div class="col-lg-6 col-sm-12 text-center" data-aos="fade-left"> | ||
<img class="zoom img-fluid" src="/landing/vs/dagster/modern-data-stack.png" width="375" alt="Kestra plugins"/> | ||
</div> | ||
<div class="col-lg-6 col-sm-12 pe-5 mt-5 mt-lg-0" data-aos="fade-right"> | ||
<h3>Integration</h3> | ||
<p>Kestra excels with its flexible and extensible plugin ecosystem. Its REST API allows seamless interaction with third-party systems. Dagster, being Python-dependent, can encounter issues related to package dependency conflicts.</p> | ||
</div> | ||
</div> | ||
</Section> | ||
|
||
<div class="table-responsive mb-5"> | ||
<table class="table table-bordered mb-0"> | ||
<thead> | ||
<tr> | ||
<th>Feature/Aspect</th> | ||
<th>Kestra</th> | ||
<th>Dagster</th> | ||
</tr> | ||
</thead> | ||
<tbody> | ||
<tr> | ||
<td>Core Focus</td> | ||
<td>Orchestrating workflows, tasks, operations, and data pipelines</td> | ||
<td>Orchestrating data assets</td> | ||
</tr> | ||
<tr> | ||
<td>Language Support</td> | ||
<td>Language-agnostic (YAML for orchestration)</td> | ||
<td>Python-first</td> | ||
</tr> | ||
<tr> | ||
<td>Declarative Interface</td> | ||
<td>Yes — API-first with YAML syntax exposed for simplicity</td> | ||
<td>Yes — client-side implementation with Python DSL</td> | ||
</tr> | ||
<tr> | ||
<td>Ease of Setup</td> | ||
<td>Quick setup, scheduled workflow in minutes</td> | ||
<td>Steeper learning curve, requires an understanding of the framework</td> | ||
</tr> | ||
<tr> | ||
<td>Developer Experience</td> | ||
<td>Built-in code editor, live-updating DAG view, documentation and blueprints</td> | ||
<td>Tailored for senior data engineers experienced in Python</td> | ||
</tr> | ||
<tr> | ||
<td>Workflow Definitions</td> | ||
<td>YAML-based</td> | ||
<td>Python DSL</td> | ||
</tr> | ||
<tr> | ||
<td>Integration/Extensibility</td> | ||
<td>Plugin ecosystem, REST API, webhooks and event triggers</td> | ||
<td>Integrations via Python libraries (may lead to dependency conflicts) and GraphQL API</td> | ||
</tr> | ||
<tr> | ||
<td>Cross-role Collaboration</td> | ||
<td>Designed for all engineers and business users</td> | ||
<td>Designed for data engineers maintaining a data warehouse</td> | ||
</tr> | ||
<tr> | ||
<td>Data Lineage & Debugging</td> | ||
<td>Task level metadata through metrics and outputs</td> | ||
<td>Fine-grained control via Software-Defined Assets</td> | ||
</tr> | ||
<tr> | ||
<td>Business Logic Support</td> | ||
<td>SQL, Python, R, Rust, Bash, and more.</td> | ||
<td>Primarily Python</td> | ||
</tr> | ||
</tbody> | ||
</table> | ||
</div> | ||
</div> | ||
|
||
<BottomCallToAction /> | ||
</template> | ||
|
||
|
||
<script setup> | ||
import Typewriter from "vue-material-design-icons/Typewriter.vue"; | ||
import BugOutline from "vue-material-design-icons/BugOutline.vue"; | ||
import Lan from "vue-material-design-icons/Lan.vue"; | ||
import Read from "vue-material-design-icons/Read.vue"; | ||
import Git from "vue-material-design-icons/Git.vue"; | ||
import AlertCircleOutline from "vue-material-design-icons/AlertCircleOutline.vue"; | ||
</script> | ||
|
||
<script> | ||
import Section from '../../layout/Section.vue'; | ||
import BottomCallToAction from '../../layout/BottomCallToAction.vue'; | ||
export default { | ||
components: {Section, BottomCallToAction} | ||
} | ||
</script> | ||
|
||
<style lang="scss" scoped> | ||
@import "../../../assets/styles/variable"; | ||
table { | ||
border: 1px solid var(--bs-gray-300); | ||
thead { | ||
border-bottom: 2px solid var(--bs-gray-300); | ||
} | ||
th { | ||
background: var(--bs-gray-200); | ||
} | ||
td { | ||
background: var(--bs-gray-100); | ||
} | ||
th, td { | ||
padding: 1.5rem; | ||
} | ||
} | ||
section.modern { | ||
background: linear-gradient(134deg, #9535D0 2.10%, #6A22BB 4.58%, #461A97 11.00%, #36188D 21.11%, #321974 34.99%, #25185C 47.08%, #24155B 64.06%, #25155B 76.00%, #450F95 91.93%, #4F39B3 96.26%, #893FE5 99.33%); | ||
color: var(--bs-white); | ||
border-radius: var(--bs-border-radius-xl); | ||
padding: calc($spacer * 3) 0; | ||
:deep(.main) { | ||
padding-top: 0; | ||
} | ||
@include media-breakpoint-up(lg) { | ||
.row { | ||
padding: 0 6rem; | ||
} | ||
} | ||
@include media-breakpoint-down(lg) { | ||
.row { | ||
padding: 0 3rem; | ||
} | ||
} | ||
} | ||
</style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
<template> | ||
<div> | ||
<Head> | ||
<Title>Dagster vs Kestra</Title> | ||
<Meta name="description" content="What are the differences between Kestra and Dagster" /> | ||
</Head> | ||
|
||
<Header /> | ||
<Main /> | ||
</div> | ||
</template> | ||
|
||
<script setup> | ||
</script> | ||
|
||
<script> | ||
import Header from '~/components/vs/dagster/Header.vue'; | ||
import Main from '~/components/vs/dagster/Main.vue'; | ||
export default { | ||
components: {Header, Main} | ||
} | ||
</script> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.
5eec858
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.
Successfully deployed to the following URLs:
kestra-io – ./
kestra-io-git-main-kestra.vercel.app
kestra-io-kestra.vercel.app
kestra.io
kestra-io.vercel.app
www.kestra.io