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?
Most Liked
LostKobrakai
Ordering for supervisor children is guaranteed. If the process to start your task is after the DynamicSupervisor child then it will only run once the DynamicSupervisor is indeed successfully started. You’re not making this simpler, by trying to mush together different responsibilities.
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.
kwando
I would nest the DynamicSupervisor under another Supervisor with the strategy :rest_for_one and also add a setup Task after the DynamicSupervisor in that supervisor.
Supervisor(strategy: :rest_for_one)
|----> DynamicSupervisor
|----> SetupTask / GenServer
If your DynamicSupervisor crash it will be detected by the Supervisor.
- It will kill the SetupTask / GenServer
- restart DynamicSupervisor
- restart your SetupTask / GenServer
Popular in Discussions
Other popular topics
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
- #websockets
- #supervisor
- #advent-of-code
- #elixirconf-us
- #distillery
- #processes
- #forms
- #api
- #metaprogramming
- #security
- #performance









