Code Monkey home page Code Monkey logo

red-discovery's Introduction

Red Discovery

red discovery is one of the derivatives of the RedQueen project, used to implement simple service registration/discovery based on RedQueen

Get red discovery:

go get github.com/RealFax/red-discovery@latest

Note: In go1.21, you need to enable GOEXPERIMENT=loopvar, this issue will be solved in the near future

API

Register a service

endpoint := &discovery.Endpoint{
    ID:          "node-1",
    PeerAddress: "localhost:8080",
    Metadata:    nil,
}
// set endpoint ttl
endpoint.SetTTL(1200)

// put endpoint metadata
_ = endpoint.PutMetadata(discovery.NewKVMetadataFromMap(map[string]string{
"name": "super-node-1",
}))

if err := client.Register(nil, naming, endpoint); err != nil {
// handler register error
}

Discovery a service

if err := client.Discovery(nil, naming); err != nil {
	// handle discovery error
}

Invoke service

srv, found := client.Service(naming)
if !found {
	// handle service not found error (discovery not called first)
}

conn, err := srv.NextAliveConn()
if err != nil {
	// handle error
}

// invoke grpc api
// after the call is completed, conn.Release() should be called to release the connection
conn.Target()

Service status listener

listenerID, err := client.UseListener(naming, func(ready bool, conn *discovery.GrpcPoolConn, wg *sync.WaitGroup) {
	// handle listener callback
	// you should defer called wg.Done
})
if err != nil {
	// handle UseListener error
}

// destroy listener by listener id
client.DestroyListener(naming, listenerID)

For more usage, see Example...

red-discovery's People

Contributors

potatocloud avatar

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.