Yyeger
Continuum - a library for durable and crash-resistant workflows
Continuum is an OTP-native durable execution engine for Elixir, backed by Postgres. IIt’s an Elixir-native answer to Temporal in other ecosystems: running a multi-step business process that survives crashes, restarts, and deploys.
You can write your workflow as ordinary Elixir. Side effects go through activities, whose results are journaled on first run. If the process dies or the node restarts, Continuum resumes the workflow exactly where it left off, by replaying its event history through the same code with identical state.
Determinism is enforced at compile time. Workflow code is scanned for non-deterministic calls (time, randomness, IO, and so on), so replay safety is checked by the compiler rather than left to discipline.
On top of the core engine, Continuum provides durable timers and signals, activity retries, sagas and compensation, parent/child workflows, continue_as_new for long-running loops, workflow versioning, a LiveView observer, OpenTelemetry, and optional clustering. Activities run on a built-in worker pool by default, or on Oban if you already operate one.
- Hex: continuum | Hex
- Docs: continuum v0.6.1 — Documentation
- GitHub:
Trending in Announcing
Other Trending Topics
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #deployment
- #library
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #channels
- #elixirconf
- #exunit
- #discussion
- #code-sync
- #javascript
- #podcasts
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #elixir-ls
- #phoenix_html
- #iex
- #blog-post
- #graphql
- #genstage
- #ai
- #websockets
- #elixirconf-us
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #metaprogramming
- #performance
- #security










First 5 of 5 Posts!
Yyeger
Updated to 0.6, lots of small fixes based on suggestions and a full-library logic audit.
Yyeger
Updated to v0.6.1 with some fixes and improvements given by users. Soon i’ll start also a collaboration to add support for yugabyte db as requested.
InfraEngineer
This looks really interesting. Temporal’s durable workflows is a really cool model for writing software. Will definitely keep an eye on this going forward.
Yyeger
v0.6.2 is out, focused on operational health, graceful lifecycle management, and safer activity operations. i suggest you to update it because of also other resilience fixes added.
Yyeger
Released Continuum v0.7.1, featuring durable one-shot schedules, activity queues and progress heartbeats, cooperative cancellation, versioned signal contracts, and replay-safe logging.
This release also strengthens CI release gates and updates vulnerable dependencies.
Please update to the new version as soon as possible