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.
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
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
Documentation
While reading the Scoped Routes section, I noticed that the documentation currently refers to a problem without explainin...
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
Aludel - LLM Evaluation Workbench
Aludel is an embeddable Phoenix LiveView dashboard for evaluating and comparing LLM prompts across mult...
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 6- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
benwilson512
I would expect that the live view would hold onto the return value of
Task.async_nolinkwhich 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
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_infoas if the task wassending 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 thesocket.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
GenStageis used after introducing channels.benwilson512
You can use
put_privatePhoenix.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_nolinkwithhandle_info.Ultimately you need to store the task ref because it’s the most reliable way to detect crashes too.
tcoopman
An other option might be using async assigns like shown here:
spritefullake
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
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
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?