AIAny
MLOps2020
Icon for item

Flyte

Orchestrates ML pipelines and agentic workflows authored in plain Python, no DSL required. Adds durable execution with automatic retries and crash recovery, infra-aware autoscaling, and caching so the same code runs locally and at production scale.

Introduction

Most ML pipeline tools force a tradeoff: a clean local dev loop or production-grade durability, rarely both. Flyte's bet is that the orchestrator should be a Kubernetes-native runtime where the workflow is just Python — the same code you test on your laptop is the code that runs, retries, and resumes across a cluster. That approach came out of Lyft, which ran pricing, ETA, and mapping on it before open-sourcing it in 2020.

What Sets It Apart
  • Workflows are real Python, not a DSL. You compose tasks as typed functions, so versioning, caching, and reproducibility become mechanical rather than aspirational — a cache hit skips recomputation by input hash.
  • Durable by default. Long-running jobs survive node failures: retries, fault tolerance, and resumption from the failure point are first-class, which matters when a 6-hour training run dies at hour 5.
  • Infra-aware orchestration. Tasks declare their resource needs and Flyte provisions and autoscales accordingly, so a heavy GPU step and a cheap glue step coexist in one graph.
适合谁

Great fit if you run ML or data pipelines on Kubernetes and want strong typing, caching, and reproducibility without inventing your own scheduler. Look elsewhere if you have no Kubernetes footprint or just need lightweight cron-style task chaining — the operational surface is heavier than a simple DAG tool. Note that the open-source core targets self-hosted clusters; managed scale and sub-second inference paths come through Union.ai, the company Flyte's core team founded after Lyft open-sourced the project.

Information

  • Websiteflyte.org
  • OrganizationsLyft, Union.ai, LF AI & Data Foundation
  • AuthorsLyft, Flyte Community
  • Published date2020/01/07

Categories

More Items

GitHub
AI Infra2026

Provides tools and samples to build context management, enrichment, and retrieval solutions on Google Cloud Knowledge Catalog — an AI-oriented data catalog that builds a dynamic knowledge graph for structured and unstructured data, suitable for RAG and agent workflows.

GitHub
MLOps2018

Orchestrates and schedules Python data pipelines and workflows with primitives for retries, caching, parameters, and deployments. Provides either a self-hosted server or managed Prefect Cloud for monitoring, observability, and integrations across common data tools.

GitHub
AI Agent2026

Acts as a local git proxy that runs an AI-driven validation pipeline in a disposable worktree, only forwarding the branch and opening a PR after every check passes. Runs review, tests, docs, and lint in isolation, applies safe auto-fixes, supports multiple agent providers, and pauses for human approval when intent would change.