Giter VIP home page Giter VIP logo

Comments (2)

rogeralsing avatar rogeralsing commented on May 23, 2024

The easiest way to do what you want right now, would be to create an actor that talks to consul, to find the PID's for each routee.

e.g.

Sender -> Consul Proxy Actor -> Routee

That way, when you send a message, send it to the consul proxy actor, this actor could then check what routees are available, and pick one and send the message forward to that actor.

pseudo code

func (*ProxyActor) Receive(context actor.Context) {
   // Fetch consul info via consul Go RPC API.
   // Pick one address from the result
   // create a PID for the above address
   pid.Tell(context.Message()) 
}

I am currently investigating what would be the best way forward to create a cluster system for GAM.
I am leaning towards using MemberList from Hashicorp, it is the same code that actually powers Consul.
That would allow GAM systems to form a cluster w/o having Consul installed.

from protoactor-go.

pavelsmejkal avatar pavelsmejkal commented on May 23, 2024

Thank you for quick reply, Proxy Actor sounds like go idea. It doesn't need to fetch consul data directly but it can be just notified from outside as well.

About MemberList if it is cover by opened API why not. But It should be possible to explicitly use already existing service catalog either consul or etcd. Since there are many subject using already such service in heterogeneous environments including me :) wink, wink

from protoactor-go.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.