evbruno

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

Showing Posts 1 to 3

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

evbruno

evbruno OP

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

happens to me all day every day :rofl:

glad I could help, have fun with your project!

— All posts loaded —

Where Next? Top

Trending in Questions Top

stjefim
Hello! Suppose you are building workflow (order / task / payment) processing system with the following requirements: Each workflow con...
New
jonnycharles
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
spammy
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
dli
Before I dive in myself, did anyone successfully sprinkle Hologram into their existing LiveView app? Looking for hints regarding: Addi...
New
roeland
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
bottlenecked
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
rahultumpala
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 Top

JesseHerrick
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
jimsynz
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
mcass19
ExRatatui lets you cook up rich terminal UIs in Elixir, powered by Rust’s ratatui via Rustler NIFs. Build interactive terminal applicatio...
New
Damirados
Hello everyone. After busy few months I am happy to announce v0.1.0 of Emerge &amp; Solve. They are GUI (Emerge) and State management (S...
New
netoum
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
ausimian
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

We're in Beta

About us Mission Statement

Options

Thread Display Mode




Thread Preview

Skip Thread Previews