Coder Social home page Coder Social logo

kiri's Introduction

kiri

Service discovery library based on etcd. Contains a format compatible with puro.

One of the basic part's of Lavaboom's cloud setup. It was not designed with performance in mind, but we will eventually rework it to reduce execution locks.

Requirements

  • etcd

Examples

service example

sd := kiri.New([]string{"etcd address"})
sd.Store(kiri.Puro, "/puro/backends")
sd.Store(kiri.Default, "/kiri")
sd.Register("api-master", "10.10.20.38:8000", nil)

query servers

sd := kiri.New([]string{
    "http://10.10.20.49:4001",
    "http://10.10.20.50:4001",
    "http://10.10.20.51:4001",
})
sd.Store(kiri.Default, "/kiri")

matched, err := sd.Query("api-master", nil)
if err != nil {
    log.Fatal(err)
}

for _, match := range matched {
    log.Print(match.Address)
}

discover a server

sd := kiri.New([]string{
    "http://10.10.20.49:4001",
    "http://10.10.20.50:4001",
    "http://10.10.20.51:4001",
})
sd.Store(kiri.Default, "/kiri")

var conn *r.Connection
err := sd.Discover("rethinkdb", nil, func(service *Service) {
    var err error
    conn, err = r.NewConnection(&r.ConnectOpts{
        Address: service.Address,
    })
    // If err != nil, then it'll remove that server from the service discovery
    return err
})
if err != nil {
    log.Fatal(err)
}

License

This project is licensed under the MIT license. Check license for more information.

kiri's People

Stargazers

 avatar

Watchers

 avatar  avatar

kiri's Issues

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.