chitalepushkar
I am using the Sage library to perform a set of operations involving DB inserts and calling external APIs. The Sage.transaction uses Ecto.Repo.transaction to wrap all actions performed on each step (similar to Ecto.Multi)
One of the step uses Task.Supervisor.async_nolink/5 to spawn a supervised process which inserts an Oban job. Something like:
defmodule SageModule do
@supervisor MyApp.Supervisor
def sage_function(_) do
Sage.new()
|> Sage.run(:do_something, &insert_background_job/2)
|> Sage.transaction(MyApp.Repo)
end
defp insert_background_job(attrs, _) do
task = Task.Supervisor.async_nolink(@supervisor, fn ->
%{attrs: attrs}
|> MyApp.NotifyExternalAPIWorker.new()
|> Oban.insert()
case Task.yield(task) || Task.shutdown(task) do
{:ok, _result} ->
:ok
error ->
# Log something
end
end
end
The code runs fine and executes the Oban job. But while testing I am unable to assert that the job was enqueued.
test "enqueues background job to notify external API" do
assert _ = SageModule.sage_function(params)
# Assertion fails with the following error
# Expected a job matching:
# %{worker: MyApp.NotifyExternalAPIWorker}
# to be enqueued in the "oban" schema. Instead found:
# []
assert_enqueued worker: MyApp.NotifyExternalAPIWorker
end
If I try to inspect the task output from the Task.yield(task) || Task.shutdown(task) case statement, I get the following error
{:exit,
{%DBConnection.ConnectionError{
message: "could not checkout the connection owned by #PID...
Is there a way I can checkout the connection for the Task.Supervisor process? I have tried using the shared mode as well but no luck.
:ok = Sandbox.checkout(MyApp.Repo)
Sandbox.mode(MyApp.Repo, {:shared, self()})
Trending in Questions
Hey guys,
I’ve got a huge CSV ( around 10 GB ) that needs to be processed hourly
Do you guys have any suggestions what is the best prac...
New
I’m working on a project that simulates the bumbl example in the programming phoenix book. It acts almost like an email client. We have a...
New
Hello!
Could someone please give me a help/sample code, how to delete a file from s3 using waffle/waffle_ecto from Phoenix app.
I creat...
New
I’m seeing that a list inside a Kino.DataTable will be interpreted as a charlist, even if the Kino.configure() is set to charlists: :as_l...
New
So my question is quite simple and i have found no conclusive answer on forum, google or AI.
Should we use :erlang.float for Integer to ...
New
Hi, I’ve just set up an application with ash_authentication. There is only magic link strategy for now, so there is no confirmation add o...
New
If a change or preparation module uses Ash.Changeset.get_argument/2 or Ash.Query.get_argument/2 (or any of the other get_argument functio...
New
Other Trending Topics
I am happy to introduce the very α version of the new programming language compiled to BEAM.
Welcome Cure.
It has literally three kille...
New
Hobbes is a low-level distributed database for the Elixir programming language.
Hobbes provides a simple, safe, and scalable storage lay...
New
Hi there! We created Gust: A task orchestrator inspired by Airflow.
For those who have never heard about Aiflow, it’s a Python-based wor...
New
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
Hello everyone. After busy few months I am happy to announce v0.1.0 of Emerge & Solve.
They are GUI (Emerge) and State management (S...
New
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
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
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #podcasts
- #javascript
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #blog-post
- #elixirconf-us
- #elixir-ls
- #ai
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #hex
- #security
- #metaprogramming










Showing Posts 1 to 2- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
sorentwo
Running the sandbox in shared mode should allow the task process to access the connection. Are you sure you need to wrap inserting the Oban job in a task at all? Maybe try without the task and verify that it’s working?
chitalepushkar
Adding the Oban insert in the task is required since I dont want it to rollback in case of a transaction rollback.
Basically the example I mentioned is slightly different than my actual implementation. In my actual implementation, the
insert_background_jobstep only gets called when any step within the Sage.transaction fails. So the actual implementation looks something likeIn the corrected example, the Sage transaction rolls back in case any of the step fails. So in this case, if
:some_other_step_that_might_cause_rollbackfails, everyting will be rolled back and additionally any compensation functions associated to a step will be executed. In this case it is theinsert_background_job/3. More info on Sage compensation functions can be found here.I had tried inserting the Oban job directly without wrapping it inside a task but unfortunately the transaction rollback causes it to rollback as well. Also for some reason the shared mode does not ensure the connection is granted to the task.