sergey-chechaev
Heavy work when starting DinamicSupervisor
Hello, I don’t find any common approach to start heavy work or children’s processes after DynamicSupervisor started. When we restart application or DynamicSupervisor is crash, we need to start DynamicSupervisor children’s processes or do heavy work as the handle_continue function when we use GenServer. In our project, we use start_link for this:
defmodule SomeDynamicSupervisor do
use DynamicSupervisor
alias SomeGenServer
def start_link(_) do
with link <- DynamicSupervisor.start_link(__MODULE__, %{}, name: __MODULE__) do
Task.async(fn -> start_child_processors() end)
link
end
end
def init(_) do
DynamicSupervisor.init(strategy: :one_for_one, max_restarts: 10)
end
def start_child_processors do
SomeLogic.list_of_ids()
|> Enum.each(&init_processor/1)
end
def init_processor(some_id) do
opts = [name: NameGenerator.processor_registry_name(some_id)]
DynamicSupervisor.start_child(__MODULE__, %{
id: "#{SomeGenServer}_#{some_id}",
start: {SomeGenServer, :start_link, [opts]}
})
end
end
What pitfalls does this approach have? Perhaps there is a better way. Can anyone share it with me?
Trending in Discussions
As the title says, please share what you’ve been up to with Elixir. Whether that’s been learning it, looking into it, making stuff with i...
New
Hi everyone :waving_hand:
Posting here to showcase and announce that Metamorphic is now officially live on a public-facing domain at htt...
New
@chrismccord : I just saw the Extract AGENTS.md from Phoenix.new into phx.new generator commit to the phoenix project.
My initial shotgu...
New
I was working on an Ecto migration and I needed a timestamp. So, for the nth time, I looked up the different data types for timestamps, a...
New
Just a general thread to post chat/news/info relating to AI/ML stuff that may be relevant for Nx now or in the future. Got anything to sh...
New
I just stumbled on a newly redesigned elixir-lang.org. :tada: It looks like @Software_Mansion did the work, and I think it is generally a...
New
There has been a thread to discuss the Stack Overflow Developer Survey on this forum every year since 2018, so here’s yet another one for...
New
Other Trending Topics
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
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
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
@hugobarauna and I (Alex Koutmos) have been hard at work on writing a book on Nerves that takes you from simply blinking LEDs to building...
New
Introducing AshStorage! Attachment and file management that slots directly into your resources :smiling_face_with_sunglasses:
I had hope...
New
Chat & Discussions>Discussions
Latest on Elixir Forum
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
- #channels
- #elixirconf
- #exunit
- #discussion
- #code-sync
- #javascript
- #podcasts
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #elixir-ls
- #phoenix_html
- #iex
- #blog-post
- #graphql
- #genstage
- #ai
- #elixirconf-us
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #metaprogramming
- #performance
- #security










First 6 of 6 Posts!
LostKobrakai
Why would you use a DynamicSupervisor is instead of a static/normal one here? It feels like a normal supervisor would suite your need better.
sergey-chechaev
I need to create processes dynamically. But it’s not matter. My question what the best practice to start a bunch of children processes when we start
DynamicSupervisor.kwando
I would nest the DynamicSupervisor under another Supervisor with the strategy
:rest_for_oneand also add a setupTaskafter the DynamicSupervisor in that supervisor.If your DynamicSupervisor crash it will be detected by the
Supervisor.sergey-chechaev
Great, we also considered this option. But we wanted to make it a little easier for understanding and putted the warm-up function to
DynamicSupervisor. Also,DynamicSupervisorstarted by application.ex so supervisor up it if it fails andDynamicSupervisorrun warm-up function itself. One best thing thatstart_linkguaranteed thatDynamicSupervisoris up.LostKobrakai
Ordering for supervisor children is guaranteed. If the process to start your task is after the
DynamicSupervisorchild then it will only run once theDynamicSupervisoris indeed successfully started. You’re not making this simpler, by trying to mush together different responsibilities.sergey-chechaev
Yes, maybe you are right that we need to share responsibility like suggest @kwando: