owaisqayum
I am trying to send messages to all local nodes periodically about a leader selection. I am using 4 nodes currently
[:"n1@127.0.0.1", :"n2@127.0.0.1", :"n3@127.0.0.1", :"n4@127.0.0.1"]
Leader module
defmodule Worm.Leader do
def leader_election() do
nodes =
([Node.self()] ++ Node.list())
max = Enum.max(nodes)
Enum.each(nodes, fn node -> send_leader_info(node, max) end)
end
def send_leader_info(node, max) do
Process.send_after(node, {:leader, max}, 200)
end
end
Genserver
@impl GenServer
def handle_info({:leader, max_node}, state) do
Logger.info("--- New Leader is: #{state}")
# Reschedule once more
Worm.Leader.leader_election()
{:noreply, state}
end
I get this result
send: #Reference<0.2477235930.2055208966.145218>
send: #Reference<0.2477235930.2055208966.145221>
send: #Reference<0.2477235930.2055208966.145224>
send: #Reference<0.2477235930.2055208966.145227>
But I am not able to see any periodic message on any connected node. What am I doing wrong here?
Thanks
Trending in Questions
Hey guys,
I’ve got a huge CSV ( around 10 GB ) that needs to be processed hourly
Do you guys have any suggestions what is the best prac...
New
Hello!
Could someone please give me a help/sample code, how to delete a file from s3 using waffle/waffle_ecto from Phoenix app.
I creat...
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
Anyone here using Honeybadger?
My Honeybadger account is being overwhelmed with noise from some bots. Seeing a lot of
Bandit.HTTPError...
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
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
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
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
Hobbes is a low-level distributed database for the Elixir programming language.
Hobbes provides a simple, safe, and scalable storage lay...
New
ExRatatui lets you cook up rich terminal UIs in Elixir, powered by Rust’s ratatui via Rustler NIFs. Build interactive terminal applicatio...
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
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
There are three potential reasons for members of this forum to have a look at https://vutuv.de
You are tired or annoyed of LinkedIn.
Yo...
New
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
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #javascript
- #podcasts
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #blog-post
- #elixir-ls
- #elixirconf-us
- #ai
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #hex
- #security
- #metaprogramming










Showing Posts 1 to 10- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
hauleth
You are sending messages, but you have never specified to which process you want to send them. This mean, that it treats it as an process names in local registry, so in the end these messages goes nowhere.
Aetherus
Process.send_after/3needs a pid or a process name as the first argument, but you gave it a node name.Here’s part the documentation of
Process.send_after/3:owaisqayum
How can i specify processes on a node, as I need the messages to display on other nodes like a heartbeat.
hauleth
You need to either use named processes or send PIDs of the quorum members by other way.
Aetherus
Kernel.send/2can take{process_name, node_name}as the first arg, whereprocess_nameis an atom. You have to workaround it in order to delay the sending, for example, send toself()a message after 200ms, and when that message is consumed, useKernel.send/2to send a message to the remote processes.owaisqayum
I have modified the function
send_leader_info\2by spawning the node but still am getting nothing on remote nodes.ruslandoga
Assuming you want to receive the messages in your GenServer process, you can start the genserver with a name and send messages to
{genserve_name, node_name}.See GenServer — Elixir v1.12.3 for more info
stefanchrobot
Just a small tip - you can do
instead of:
owaisqayum
getting an argument error
So
{SomeName, :"n1@127.0.0.1"}should be a pid or an atomruslandoga
Try with
send({SomeName, :"n1@127.0.0.1"}, {:leader, :"n1@127.0.0.1"}), does it work?:erlang.send_afterindeed doesn’t allow sending to remote nodes.