本文整理匯總了Golang中github.com/gholt/ring.Ring.Version方法的典型用法代碼示例。如果您正苦於以下問題:Golang Ring.Version方法的具體用法?Golang Ring.Version怎麽用?Golang Ring.Version使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類github.com/gholt/ring.Ring
的用法示例。
在下文中一共展示了Ring.Version方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。
示例1: replicateRing
//TODO: Need concurrency, we should just fire of replicates in goroutines
// and collects the results. On a failure we still need to send the rollback
// or have the slave's commit deadline trigger.
func (s *Server) replicateRing(r ring.Ring, rb, bb *[]byte) error {
failcount := 0
for _, slave := range s.slaves {
ctx, _ := context.WithTimeout(context.Background(), time.Duration(_SYN_REGISTER_TIMEOUT)*time.Second)
i := &pb.RingMsg{
Version: r.Version(),
Ring: *rb,
Builder: *bb,
Deadline: time.Now().Add(60 * time.Second).Unix(),
Rollback: s.r.Version(),
}
res, err := slave.client.Store(ctx, i)
if err != nil {
log.Println(err)
failcount++
continue
}
if res.Version != r.Version() {
log.Printf("Version or master on remote node %+v did not match local entries. Got %+v.", slave, res)
failcount++
continue
}
if !res.Ring || !res.Builder {
log.Printf("res is: %#v\n", res)
log.Printf("Slave failed to store ring or builder: %s", res.ErrMsg)
failcount++
continue
}
log.Printf("<-- Slave response: %+v", res)
slave.version = res.Version
slave.last = time.Now()
slave.status = true
}
if failcount > (len(s.slaves) / 2) {
return fmt.Errorf("Failed to get replication majority")
}
return nil
}