evbruno

evbruno

Issue with Horde / HordeRegistry with elixir 1.18

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

Most Liked

evbruno

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:

                (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
nerdyworm

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)}”)

Where Next?

Popular in Questions Top

sergio
In Ruby, I can go: User.find_by(email: "foobar@email.com").update(email: "hello@email.com") How can I do something similar in Elixir? ...
New
Harrisonl
We have an ECS cluster with 4 services, where each task joins a single cluster, via discovery ECS discovery service. Currently when I de...
New
beno
I will often find my self writing things similar to: case some_value do nil -&gt; something() "" -&gt; something() _ -&gt; somethi...
New
marius95
Hello everyone, I try to use an Javascript Event Handler in my root.html.leex file. Therefore I created a function in the app.js file: ...
New
Tee
can someone please explain to me how Enum.reduce works with maps
New
belgoros
I’m not a pro in using Regex and can’t figure out why the following behaviour happens, especially if we take into account the difference ...
New
itssasanka
Hi all, Trying to get some more clarity over utc_datetime and naive_datetime for Ecto: The documentation above suggests that while ...
New
Brian
What is the proper way to load a module from a file in to IEX? In the python world, doing something like this pretty standard: from ....
New
openscript
Hello! Sorry for this astonishing simple question, but I’m really stuck. I try to set up the intellij-elixir plugin, but I don’t know ho...
New
dokuzbir
I want to highlight html closing tags when i click a html tag. That works in .html files but doesnt work for html.eex templates. How can...
New

Other popular topics Top

sen
Hi All, I set a environment variables in dev.exs , like below code. when i start server, how can i set the ${enable} value? thanks. d...
New
danschultzer
None of the current solutions worked well for me, so I went ahead and built a user management system from scratch. This project took far...
548 29603 241
New
electic
Hi, I am new to Elixir. I am trying to use the DateTime component to insert a date into MySQL however the there seems to be no way to fo...
New
shahryarjb
Hello, I have map which I want to convert it to string like this: the map: %{last_name: "tavakkoli", name: "shahryar"} the string I ne...
New
ashish173
I am using Ecto timestamps with postgres, I can see the timestamps() use the :naive_dateime but for my use case I wanted to store the ti...
New
dblack
I’ve got an issue with an app and I’ve no idea of how to troubleshoot it. I’m hoping someone here might have seen something similar. I p...
New
KronicDeth
Elixir plugin for JetBrain’s IntelliJ Platform (including Rubymine) This is a plugin that adds support for Elixir to JetBrains IntelliJ...
289 36352 110
New
komlanvi
Hi everyone, I was playing with phoenix liveView but I run into an issue. I have a form and want to validate each input text when the te...
New
axelson
This post is a wiki (feel free to hit the edit button near the bottom right of this post to add your own changes!) This post collects co...
239 48342 226
New
AstonJ
Seen any cool LiveView demos, sample apps or examples? Please post them here! :003:
New

Latest on Elixir Forum

Elixir Forum

We're in Beta

About us Mission Statement