LittleHorse is a high-throughput, low-latency orchestration engine written in Java that enables developers to codify business processes spanning agents, microservices, integrations, and workflows using a Business-as-Code approach. The platform is built on Apache Kafka and Kafka Streams, providing two-way rich integrations with the Kafka ecosystem so that workflows can be triggered by Kafka events and emit state changes back to Kafka in real time. This architecture allows LittleHorse to handle the operational complexity of distributed systems while keeping workflow definitions closely aligned with actual business logic.
The core value proposition of LittleHorse addresses several pain points in microservice orchestration. Rather than manually wiring microservices together with RPC calls or message queues, developers define workflows that LittleHorse executes durably. The platform abstracts away concerns like retries, timeouts, dead-letter queues, distributed tracing, asynchronous scheduling, and backpressure management, allowing teams to focus on business process logic rather than infrastructure plumbing. The Business-as-Code model enables product and engineering teams to maintain better alignment by expressing processes in code that mirrors actual business workflows.
LittleHorse provides multi-language SDK support across Java, Go, Python, JavaScript, and C#, with client packages available through standard package managers including Maven Central, PyPI, npm, and NuGet. The platform includes a dashboard accessible at localhost:8080 for inspecting workflow runs and their execution state. The project also provides lhctl, a command-line interface for interacting with the LittleHorse server and investigating workflow executions.
The project is licensed under the GNU Affero General Public License Version 3 for server and dashboard code, while SDKs, lhctl, examples, and other packages use the Apache License 2.0. LittleHorse follows Semantic Versioning after version 1.0 and maintains a documented project lifecycle with guidelines for releases and deprecation strategy. The platform includes comprehensive quickstart examples and documentation at littlehorse.io/docs, with an active Slack community for user engagement. The architecture separates concerns into task definitions (units of work), workflow specifications, and a workflow engine that ensures correct execution while task workers handle integrations with external systems and databases.