spritefullake

spritefullake

I have a long task I need to run to basically compute something realtime as a user scrolls a PDF. What is the best way I should be structuring my calling code for the external api? I started off using async_nolink but I noticed that it seems I can’t name the tasks and there are timeout issues unless I modify the supervisor config. Would using PubSub be appropriate for this usecase? Just begin the external api call from the liveview handle_event and then when the task is completed, send a notification to the PubSub which broadcasts to the liveview. I do not want to block my UI if the task takes too long. In addition, If the user initiates a new demand, I would want the previous one to be abandoned / ignored.

Showing Posts 1 to 6

benwilson512

benwilson512

Author of Craft GraphQL APIs in Elixir with Absinthe

I would expect that the live view would hold onto the return value of Task.async_nolink which will include the pid. You could certainly name this pid, but I don’t quite see the point, since the live view will already have a handle to the task.

Can you show your current code?

spritefullake

spritefullake OP

@impl true
  def handle_event("triggering_event", params, socket) do

    Task.Supervisor.async_nolink(Some.Supervisor, fn ->
      {:ok, res} = LongApiCall.run() 
      {:result, res}
    end, timeout: 30_000)

    {:noreply, socket}
  end

  @impl true
  def handle_info({ref, {:result, res}}, socket) do
     socket = assign(socket, some_key: res)
    {:noreply, socket }
  end

I’ve noticed the task always sends back to the calling process (the live view) a message upon completion and then upon termination of the task (the termination is always the “DOWN” event).

But ideally I would like to be able to handle_info as if the task was sending a message with a specific key that I could match on and respond to. Otherwise, how can I keep track of the task’s pid unless I add it to the socket.assigns (somehow it feels like assigns should be for client side to-render items and not for tracking workers).

I noticed in the book “realtime phoenix” a library called GenStage is used after introducing channels.

benwilson512

benwilson512

Author of Craft GraphQL APIs in Elixir with Absinthe

You can use put_private Phoenix.LiveView — Phoenix LiveView v1.2.5 for this since you don’t need change tracking. It also wouldn’t be particularly weird to put it in the assigns, as you might drive some UI behaviour to indicate that a background task is in progress.

Task.Supervisor — Elixir v1.20.2 has some examples of integrating async_nolink with handle_info.

Ultimately you need to store the task ref because it’s the most reliable way to detect crashes too.

tcoopman

tcoopman

An other option might be using async assigns like shown here:

spritefullake

spritefullake OP

These async assigns on the Phoenix documentation is great, wish it was made more prominent or easier to have found (I guess it is a relatively newer feature).

Also, at what point is the use of a GenServer / seperate module for managing workers warranted vs bare tasks within the liveview callbacks?

tcoopman

tcoopman

When to use a GenServer vs tasks is something that has been discussed quite a few times already on the forum, so I’d look for some of these discussions to get a full answer.

But if you look at the documentation of Task

Tasks are processes meant to execute one particular action throughout their lifetime, often with little or no communication with other processes.

So 1 action => Task. If you need more complex interactions, you can probably reach for a GenServer.

Another thing to take into account is how you want to manage the lifecycle of the async process. Does the process need to die when the liveview dies or not?

— All posts loaded —

Where Next? Top

Trending in Questions Top

RSP87
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
nseaSeb
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
RemyXRenard
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
velrest
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
samoloth
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
FlyingNoodle
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
brecabral
Documentation While reading the Scoped Routes section, I noticed that the documentation currently refers to a problem without explainin...
New

Other Trending Topics Top

mudasobwa
I am happy to introduce the very α version of the new programming language compiled to BEAM. Welcome Cure. It has literally three kille...
New
marciok
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
jimsynz
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
Dmk
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
netoum
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
webofbits
Aludel - LLM Evaluation Workbench Aludel is an embeddable Phoenix LiveView dashboard for evaluating and comparing LLM prompts across mult...
New

We're in Beta

About us Mission Statement

Options

Thread Display Mode




Thread Preview

Skip Thread Previews