mbuhot
EctoJob
A transactional job queue built with Ecto, PostgreSQL and GenStage
Available on Hex.pm: ecto_job | Hex
Docs: API Reference — ecto_job v3.1.0
Github: GitHub - mbuhot/ecto_job: Transactional job queue with Ecto, PostgreSQL and GenStage · GitHub
Goals
- Transactional job processing
- Retries
- Scheduled jobs
- Multiple queues
- Low latency concurrent processing
- Avoid frequent database polling
- Library of functions, not a full OTP application
Details
One of the distinguishing features of ecto_job is that the API encourages transactional job processing through Ecto.Multi. Job handlers are passed an Ecto.Multi parameter that must be passed to Repo.transaction to complete the job.
def perform(multi = %Ecto.Multi{}, job = %{}) do
multi
|> do_first_thing(job["customer_id"])
|> do_second_thing(job["product_id"])
|> MyApp.Repo.transaction()
end
Similarly, there are helpers to encourage transactional job creation by adding to an Ecto.Multi
Multi.new()
|> Multi.insert(:add_user, User.insert_changeset(%{name: "Joe", email: "joe@gmail.com"}))
|> JobQueue.enqueue(:email_job, %{"type" => "SendEmail", "address" => "joe@gmail.com", "body" => "Welcome!"})
|> MyApp.Repo.transaction()
Jobs are processed using a GenStage producer and ConsumerSupervisor that will execute jobs concurrently up to a configurable max_demand.
Postgrex.Notifications is used to trigger job processors as soon as the transaction that adds a job is committed.
Job workers can be run on a separate node, without requiring any beam clustering, just PostgreSQL listen/notify.
Job completion is also signalled using listen/notify enabling websocket or chunked HTTP responses (on another node) to be triggered once a job completes.
Similar libraries:
Trending in Announcing
Other Trending Topics
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #library
- #deployment
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #podcasts
- #javascript
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #elixirconf-us
- #ai
- #blog-post
- #elixir-ls
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #hex
- #security
- #metaprogramming










Showing Posts 1 to 10- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
outlog
awesome - look forward to battle testing it.
axelson
Sounds like an interesting library! Did you design the library to work on Heroku? It seems like relying on
listen/notifyinstead of clustering is partially to fit Heroku’s constraints.mbuhot
Not quite. I noticed that most of the Exq jobs in our system were enqueued along with changes to the database, and workers updated the database also.
To guarantee that jobs are enqueued consistently and worked idempotently requires bookkeeping that all goes away if you let a db transaction take care of it
BrightEyesDavid
Many thanks for making this available to use, @mbuhot. I’m now using it in my first client Elixir project.
mbuhot
Glad to hear it
Issues and PRs most welcome, I’m currently on a .net project at work so I only get my Elixir fix doing open source these days!
venkatd
Interesting library! Another advantage to using something like this is a simpler infrastructure. No need to add another database like Redis.
mbuhot
Version 0.3.0 released, now with configurable reservation and execution timeouts.
mbuhot
EctoJobversion 2.0.0 has been published to Hex.pm.EctoJob2.0 depends on Ecto 3.0, but is otherwise backwards compatible with existing code.Other changes in this release:
schema_prefix.:bigserialprimary key instead of relying on theectodefault.Hex Package
Docs
Source
zdeneksejcek
Hi, thanks for great library, I am currently testing it inside my new project.
My only question is: is there a way or at least a plan to implement priorities in message job queue?
It’s important for SaaS app to make sure come clients are not waiting for someone else pushing loads of requests to server.
Thank you.
mbuhot
The closest thing right now would be to use separate queues for high priority and low priority jobs.
I’ve tried to keep the code fairly simple and well documented, so if you’d like to contribute support for priorities it would be welcome