Paperelectron

Paperelectron

Hey all, I’m looking to get some general advice on how to wire up a bunch of Dynamic Supervised GenServers, named via the registry, to a LiveView frontend. I’d like them to be able to broadcast updates about what they are doing, and have the individual list members update.

I’m currently using Registry.select to get the list of servers, but I’m unsure about how to go about handling adding and removing new named Servers as they come up. I’d rather not put any of the data about these servers in the DB, as they are meant to be pretty ephemeral.

My gut feeling is I should have a separate GenServer that handles Subscriptions and the overarching state of the list that I can then use LiveView to call into/receive messages from. Would I use this GenServer to handle the creation/deletion of the child Servers? Use Monitors? This feels like I’m stepping on the toes of the Registry a bit? What happens when I want to cluster this?

Basically, this is the type of problem I want to solve generally using Elixir, and I don’t yet have enough experience to know the correct way to approach it.

Not looking for any detailed code just a bit of a discussion on how those with more experience would architect something like this.

Showing Posts 1 to 7

al2o3cr

al2o3cr

A fairly common pattern would combine an initial call to Registry with PubSub:

  • the LiveView fetches the “current list” from the registry
  • it also subscribes to a “new server started” pubsub topic (and probably a “server ended”?)
  • when a server starts, it sends a pubsub notification of that

Adding things like clustering to the mix makes handling cases like “the whole NODE these servers were on went away”; you may need to include some kind of liveness-checking in your LiveView.

Paperelectron

Paperelectron OP

So that pattern was my first port of call, then I got to thinking about how I would filter the list if I had 1000 of them and needed to filter and paginate. I started to think about basically doing this in reverse, ie: Broadcasting into the running GenServers with a filter and having them respond if they matched then using those responses to build the list.

Then this leads me into wondering how I would then update individual items on the list as their underlying state changed, haha, its madness.

I figure clustering anything raises the complexity level at least an order of magnitude, even for things designed to be clustered.

schneebyte

schneebyte

pg — OTP 29.0.2 (kernel 11.0.2) might be able to handle that out of the box.

You can monitor scopes/groups and get notifications when they join/leave (spawn/die).
Group names can be any Erlang term, so with the right scope/group structure it can be very flexible.

Maybe the GenServers could push state updates instead of polling them for an update.
Have the liveview process register to one or multiple groups {:i_want_notifications, :topic1} and the individual GenServers can send state updates to all members of that group.

dimitarvp

dimitarvp

Good recommendation though I’d say we should advocate for pg2 instead.

LostKobrakai

LostKobrakai

pg2 is (unintuitively) deprecated since OTP 23 and gone in OTP 24 in favor of then newer pg.

dimitarvp

dimitarvp

Me not paying enough attention strikes again. [sighs]

Thank you for the correction.

Paperelectron

Paperelectron OP

This is good, pg seems to be designed to handle exactly this kind of scenario. I’ve known how to do this using an external data store, as I’ve implemented it in other languages, but it was/is important to me to do this all inside of BEAM, reaching for outside tools felt like the wrong way to handle it.

— All posts loaded —

Where Next? Top

Trending in Questions Top

stjefim
Hello! Suppose you are building workflow (order / task / payment) processing system with the following requirements: Each workflow con...
New
jonnycharles
I’m in search of an Elixir library that offers PDF generation capabilities similar to Ruby’s Prawn. While there have been discussions abo...
New
spammy
I’m looking to build a personal workflow to quickly deploy web applications written in elixir/phoenix, for local consumption (ie not on t...
New
dli
Before I dive in myself, did anyone successfully sprinkle Hologram into their existing LiveView app? Looking for hints regarding: Addi...
New
roeland
Kia ora, We have been using elixir-google-api to connect to Google Drive. However, with the updates to Tesla due to CVEs this is now bro...
New
bottlenecked
Hi all, I wanted to ask how the community is dealing with post-release steps. Today we have Ecto migrations, which make sure that the db...
New
rahultumpala
Hello, I have an Elixir backend that implements a custom protocol over TCP. I want to load test the backend and assess the performance o...
New

Other Trending Topics Top

JesseHerrick
Hey, I’m Jesse and I’m the main contributor behind Dexter, a full-featured, lightning-fast Elixir LSP optimized for large codebases. It s...
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
mcass19
ExRatatui lets you cook up rich terminal UIs in Elixir, powered by Rust’s ratatui via Rustler NIFs. Build interactive terminal applicatio...
New
Damirados
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
netoum
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
ausimian
Emily is an Elixir library that runs Nx computations on Apple’s MLX. Install it as the default Nx backend and Nx, defn, Axon, Nx.Serving,...
New

We're in Beta

About us Mission Statement

Options

Thread Display Mode




Thread Preview

Skip Thread Previews