declarative yaml workflow definition with pebble templating
Kestra enables workflow definition through declarative YAML syntax that gets parsed and validated against a Flow model schema. The system uses Pebble templating engine (integrated via PebbleExpressionService in core/runners) to enable dynamic variable interpolation, conditional logic, and expression evaluation within workflow definitions. YAML is deserialized into strongly-typed Flow objects with built-in validation, allowing developers to define complex orchestration logic without imperative code while maintaining type safety and IDE support through schema validation.
Unique: Uses Pebble templating engine integrated directly into RunContext for expression evaluation, enabling type-safe variable resolution and conditional logic within YAML definitions without requiring separate template preprocessing steps
vs alternatives: Simpler than Airflow DAGs (no Python required) and more readable than Terraform for workflow logic, with native templating support built into the execution context rather than bolted on
plugin-based task execution with 500+ pre-built integrations
Kestra implements a modular plugin system where tasks are loaded dynamically from a registry of 500+ pre-built plugins covering databases, cloud platforms, messaging systems, and data tools. Each plugin is a self-contained module with its own build.gradle configuration that implements task interfaces and registers handlers with the core execution engine. The plugin system includes automatic documentation generation and schema validation, allowing developers to extend Kestra with custom tasks by implementing standard interfaces without modifying core code.
Unique: Provides 500+ pre-built plugins with automatic schema documentation generation and standardized task interfaces, enabling zero-code integration with external systems while maintaining a pluggable architecture that doesn't require core modifications for extensions
vs alternatives: More extensive pre-built connector library than Airflow (500+ vs ~300 operators) and simpler plugin development than custom Airflow operators due to standardized task contracts and automatic documentation
script task execution with multiple language support (python, bash, node.js, etc.)
Kestra provides script task types that execute arbitrary code in multiple languages (Python, Bash, Node.js, PowerShell, etc.) within containerized environments. The Script Tasks system (core/runners) handles language detection, dependency installation, and execution isolation, allowing developers to embed custom logic directly in workflows without creating separate plugins. Scripts can access the execution context through environment variables and stdin, and return results through stdout or files, enabling flexible integration of custom code with the orchestration platform.
Unique: Supports script execution in multiple languages (Python, Bash, Node.js, PowerShell) with automatic container isolation and execution context injection, enabling custom code embedding without plugin development
vs alternatives: More flexible than Airflow's PythonOperator because it supports multiple languages and provides better isolation, while simpler than building custom plugins for one-off scripts
built-in ai task integration for llm-powered workflow steps
Kestra includes native AI task types that integrate with LLM providers (OpenAI, Anthropic, etc.) to enable AI-powered workflow steps. These tasks accept prompts, context, and configuration parameters, send requests to LLM APIs, and return structured results that can be used in downstream tasks. The AI integration is implemented as standard tasks within the plugin system, allowing workflows to incorporate AI-powered decision-making, content generation, and data analysis without external orchestration.
Unique: Provides native AI task types integrated into the plugin system with direct LLM provider support, enabling AI-powered workflow steps without external orchestration or custom API clients
vs alternatives: More integrated than building custom LLM calls in scripts and simpler than managing separate AI orchestration platforms, with native support for multiple LLM providers
flow versioning and git-based workflow management
Kestra enables workflows to be stored in Git repositories and synced with the Kestra server, providing version control, change tracking, and collaborative workflow development. Workflows are defined as YAML files that can be committed to Git, enabling teams to use standard Git workflows (branches, pull requests, code review) for workflow changes. The system supports bidirectional sync between Git and Kestra, allowing workflows to be edited in the UI or in Git and synchronized automatically.
Unique: Integrates Git-based workflow management with bidirectional sync, enabling workflows to be versioned and reviewed through standard Git workflows while maintaining sync with the Kestra server
vs alternatives: More integrated than Airflow's DAG versioning and enables true infrastructure-as-code practices with Git as the source of truth for workflow definitions
secrets management with encrypted storage and namespace isolation
Kestra provides a secrets management system that stores sensitive credentials (API keys, database passwords, etc.) in encrypted form within the persistent data layer. Secrets are scoped to namespaces and can be referenced in workflow definitions using a special syntax (e.g., `{{ secret.api_key }}`), which are resolved at execution time. The system supports multiple secret backends (encrypted database storage, external vaults) and provides audit logging for secret access.
Unique: Implements namespace-scoped encrypted secret storage with runtime resolution in workflow definitions, enabling secure credential management without exposing secrets in YAML or logs
vs alternatives: Simpler than external vault integration (HashiCorp Vault) for basic use cases and more integrated than Airflow's variable system because secrets are encrypted by default
flow versioning and git integration for workflow management
Enables version control of workflows through Git integration, allowing workflows to be stored in Git repositories and synced with Kestra. Each workflow version is tracked with commit history, enabling rollback to previous versions. The system supports multiple deployment strategies (manual sync, automatic CI/CD, polling). Workflows can be deployed from Git branches, enabling environment-specific configurations (dev, staging, prod) without duplicating workflow definitions.
Unique: Integrates Git as a first-class workflow storage backend, enabling workflows to be managed as code with full version control. Supports multiple deployment strategies (manual, CI/CD, polling) for flexible workflow promotion.
vs alternatives: More integrated than external Git-based deployment tools while simpler than full GitOps platforms. Enables workflows-as-code practices similar to Airflow but with tighter Git integration.
distributed execution with controller-worker architecture
Kestra implements a distributed execution model with a Controller component that manages workflow scheduling and state, and Worker components that execute individual tasks in isolation. The architecture uses a message queue (Kafka or in-memory) for task distribution and state synchronization across workers. Workers pull tasks from the queue, execute them in containerized environments (Docker or native), and report results back to the Controller, enabling horizontal scaling and fault isolation without requiring shared state between workers.
Unique: Implements a stateless Worker model where tasks are pulled from a distributed queue and executed in isolation, with results reported back to a centralized Controller, enabling true horizontal scaling without shared state between workers
vs alternatives: More scalable than Airflow's single-scheduler model and simpler than Kubernetes-native orchestration (Argo) because workers don't require Kubernetes knowledge and can run on any infrastructure with Docker
+7 more capabilities