evbruno
Hi folks, I’m trying the simple SayHello example from the Horde docs, but I can’t get it to work.
I can start a child with:
Horde.DynamicSupervisor.start_child(
HelloClusterApp.HelloSupervisor,
{HelloClusterApp.SayHello, name: "say_hello_1"}
)
I can also lookup on both nodes, and the process is actually there:
iex(foo@jotumhein)> Horde.Registry.lookup(HelloClusterApp.HelloRegistry, "say_hello_1")
[{#PID<24805.479.0>, nil}]
and:
iex(bar@jotumhein)> Horde.Registry.lookup(HelloClusterApp.HelloRegistry, "say_hello_1")
[{#PID<0.479.0>, nil}]
But I can’t figure it out how to send a message.
I’m trying:
GenServer.call({:via, Horde.Registry, {HelloClusterApp.HelloRegistry, "say_hello_1"}}, :action)
.. but I always get this error (running on the same node or not):
** (exit) exited in: GenServer.call({:via, Horde.Registry, {HelloClusterApp.HelloRegistry, "say_hello_1"}}, :action, 5000)
** (EXIT) an exception was raised:
** (Protocol.UndefinedError) protocol String.Chars not implemented for type Tuple. This protocol is implemented for the following type(s): Atom, BitString, Date, DateTime, Float, Integer, List, NaiveDateTime, Time, URI, Version, Version.Requirement
Got value:
{#PID<0.219.0>, [:alias | #Reference<0.0.28035.3569112820.221577217.43273>]}
(elixir 1.18.4) lib/string/chars.ex:3: String.Chars.impl_for!/1
(elixir 1.18.4) lib/string/chars.ex:22: String.Chars.to_string/1
(hello_cluster_app 0.1.0) lib/hello_cluster_app/say_hello.ex:37: HelloClusterApp.SayHello.handle_call/3
(stdlib 6.2.2.1) gen_server.erl:2381: :gen_server.try_handle_call/4
(stdlib 6.2.2.1) gen_server.erl:2410: :gen_server.handle_msg/6
(stdlib 6.2.2.1) proc_lib.erl:329: :proc_lib.init_p_do_apply/3
(elixir 1.18.4) lib/gen_server.ex:1128: GenServer.call/3
iex:13: (file)
11:58:14.039 [error] GenServer {HelloClusterApp.HelloRegistry, "say_hello_1"} terminating
** (Protocol.UndefinedError) protocol String.Chars not implemented for type Tuple. This protocol is implemented for the following type(s): Atom, BitString, Date, DateTime, Float, Integer, List, NaiveDateTime, Time, URI, Version, Version.Requirement
Got value:
{#PID<0.219.0>, [:alias | #Reference<0.0.28035.3569112820.221577217.43273>]}
(elixir 1.18.4) lib/string/chars.ex:3: String.Chars.impl_for!/1
(elixir 1.18.4) lib/string/chars.ex:22: String.Chars.to_string/1
(hello_cluster_app 0.1.0) lib/hello_cluster_app/say_hello.ex:37: HelloClusterApp.SayHello.handle_call/3
(stdlib 6.2.2.1) gen_server.erl:2381: :gen_server.try_handle_call/4
(stdlib 6.2.2.1) gen_server.erl:2410: :gen_server.handle_msg/6
(stdlib 6.2.2.1) proc_lib.erl:329: :proc_lib.init_p_do_apply/3
Last message (from #PID<0.219.0>): :action
State: %{count: 0, init_args: ["say_hello_1"]}
Client #PID<0.219.0> is alive
(stdlib 6.2.2.1) gen.erl:260: :gen.do_call/4
(elixir 1.18.4) lib/gen_server.ex:1125: GenServer.call/3
(elixir 1.18.4) src/elixir.erl:386: :elixir.eval_external_handler/3
(stdlib 6.2.2.1) erl_eval.erl:919: :erl_eval.do_apply/7
(elixir 1.18.4) src/elixir.erl:364: :elixir.eval_forms/4
(elixir 1.18.4) lib/module/parallel_checker.ex:120: Module.ParallelChecker.verify/1
(iex 1.18.4) lib/iex/evaluator.ex:336: IEx.Evaluator.eval_and_inspect/3
(iex 1.18.4) lib/iex/evaluator.ex:310: IEx.Evaluator.eval_and_inspect_parsed/3
Same thing if running with GenServer.call(HelloClusterApp.SayHello.via_tuple("say_hello_1"), :action)
Extra info
I have created a new project scaffold with mix new hello_cluster_app --sup, and my build is:
$ elixir -v
Erlang/OTP 27 [erts-15.2.7] [source] [64-bit] [smp:16:16] [ds:16:16:10] [async-threads:1] [dtrace]
Elixir 1.18.4 (compiled with Erlang/OTP 26)
application.ex starts as:
def start(_type, _args) do
topologies = [example: [strategy: Cluster.Strategy.Gossip]]
children = [
{Cluster.Supervisor, [topologies, [name: HelloClusterApp.ClusterSupervisor]]},
{Horde.Registry, [name: HelloClusterApp.HelloRegistry, keys: :unique, members: :auto]},
{Horde.DynamicSupervisor,
[name: HelloClusterApp.HelloSupervisor, strategy: :one_for_one, members: :auto]}
]
opts = [strategy: :one_for_one, name: HelloClusterApp.Supervisor]
Supervisor.start_link(children, opts)
end
say_hello.ex:
defmodule HelloClusterApp.SayHello do
use GenServer
require Logger
def child_spec(opts) do
name = Keyword.get(opts, :name, __MODULE__)
%{
id: "#{__MODULE__}_#{name}",
start: {__MODULE__, :start_link, [name]},
shutdown: 10_000,
restart: :transient
}
end
def start_link(name) do
case GenServer.start_link(__MODULE__, [name], name: via_tuple(name)) do
{:ok, pid} ->
{:ok, pid}
{:error, {:already_started, pid}} ->
Logger.info("already started at #{inspect(pid)}, returning :ignore")
:ignore
end
end
@impl true
def init(args) do
state = %{count: 0, init_args: args}
{:ok, state}
end
def via_tuple(name), do: {:via, Horde.Registry, {HelloClusterApp.HelloRegistry, name}}
@impl true
def handle_call(msg, from, state) do
IO.puts("Handling call: #{from} => #{inspect(state)} => #{inspect(msg)}")
{:reply, :foo, state}
end
@impl true
def handle_info(msg, state) do
IO.puts("Handling info: #{inspect(state)} => #{inspect(msg)}")
{:noreply, state}
end
end
Trending in Questions
Hello!
Suppose you are building workflow (order / task / payment) processing system with the following requirements:
Each workflow con...
New
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
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
Before I dive in myself, did anyone successfully sprinkle Hologram into their existing LiveView app?
Looking for hints regarding:
Addi...
New
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
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
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
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
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
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
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
- #blog-post
- #phoenix_html
- #iex
- #graphql
- #ai
- #genstage
- #elixirconf-us
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #metaprogramming
- #security
- #hex











Showing Posts 1 to 3- Show Best Posts
- Show All Posts (oldest first)
- Show All Posts (newest first)
nerdyworm
Pretty sure you’ll just need to add an inspect(from) to your handle_call function:
IO.puts(“Handling call: #{from} => #{inspect(state)} => #{inspect(msg)}”)
evbruno
OMFG!
I wrote this last night while not fully awake and I missed that! shame on me!
Thank you so much!
ps: having a little of time to inspect the stack trace, the error message was clear and I didn’t pay enough attention to it:
nerdyworm
happens to me all day every day
glad I could help, have fun with your project!