ringpop-go icon indicating copy to clipboard operation
ringpop-go copied to clipboard

Scalable, fault-tolerant application-layer sharding for Go applications

Results 27 ringpop-go issues
Sort by recently updated
recently updated
newest added

@jwolski - as we discussed this is the tapring patch (pull model).. This patch adds a TapRing() API to ringpop which queries the given host to get the status of...

This fixes two leaking goroutines from the ringpop timers. There is still one more leaking goroutine that I'm aware of in rcrowley/go-metrics: https://github.com/rcrowley/go-metrics/blob/master/meter.go#L218-L225 That's a ticker that would also require...

Every exported function in a program should have a doc comment. The first sentence should be a summary that starts with the name being declared. From [effective go](https://golang.org/doc/effective_go.html#commentary). I generated...

Hi, I am trying to use ringpop with http.Server. The server's handler receives requests and uses ringpop to handle or forward the requests to other servers on the ring. But...

Could we please get some more info about what this means? Should people avoid looking at ringpop as it's a discontinued project that uber is moving on from, or is...

``` service Foo { string ping() } service Bar extends Foo { } ``` The generated code fails with this error: ``` cannot use adapter (type *RingpopBarAdapter) as type TChanBar...

I keep getting this message from ringpop-go apps: ``` {"level":"error","msg":"facility.go:164 unable to count members of the ring for statting: \"ringpop is not bootstrapped\"","time":"2016-02-25T18:15:57+01:00"} ``` I think ringpop is internally trying...

The Ringpop documentation has a section about implementing leader election but it's empty. Any chance you could shed some light on how to do so with Ringpop?