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
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,
I know there is an approach for handling lists that allows for optimized traversal, but I can’t recall the specific method (somet...
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
Documentation
While reading the Scoped Routes section, I noticed that the documentation currently refers to a problem without explainin...
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
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
Xamal is a deployment tool for Elixir apps that deploys native releases to bare metal servers over SSH. It’s a port of GitHub - basecamp/...
New
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
With AI doing more of the implementation work, I’ve been wondering how much coding I should deliberately keep doing myself.
My main conc...
New
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
- #ai
- #elixirconf-us
- #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 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.