Skip to content

Commit

Permalink
Merge pull request #333 from sneat/tcpcheck-interval
Browse files Browse the repository at this point in the history
Only check if the service is in Consul once every deregister interval
  • Loading branch information
asim authored Nov 22, 2018
2 parents 5fd7da9 + e3a2fe5 commit 33ae45a
Showing 1 changed file with 16 additions and 5 deletions.
21 changes: 16 additions & 5 deletions registry/consul_registry.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@ type consulRegistry struct {

sync.Mutex
register map[string]uint64
// lastChecked tracks when a node was last checked as existing in Consul
lastChecked map[string]time.Time
}

func getDeregisterTTL(t time.Duration) time.Duration {
Expand Down Expand Up @@ -118,8 +120,9 @@ func configure(c *consulRegistry, opts ...Option) {

func newConsulRegistry(opts ...Option) Registry {
cr := &consulRegistry{
opts: Options{},
register: make(map[string]uint64),
opts: Options{},
register: make(map[string]uint64),
lastChecked: make(map[string]time.Time),
}
configure(cr, opts...)
return cr
Expand All @@ -135,9 +138,10 @@ func (c *consulRegistry) Deregister(s *Service) error {
return errors.New("Require at least one node")
}

// delete our hash of the service
// delete our hash and time check of the service
c.Lock()
delete(c.register, s.Name)
delete(c.lastChecked, s.Name)
c.Unlock()

node := s.Nodes[0]
Expand Down Expand Up @@ -181,7 +185,13 @@ func (c *consulRegistry) Register(s *Service, opts ...RegisterOption) error {
// if it's already registered and matches then just pass the check
if ok && v == h {
if options.TTL == time.Duration(0) {
services, _, err := c.Client.Health().Checks(s.Name, nil)
// ensure that our service hasn't been deregistered by Consul
if time.Since(c.lastChecked[s.Name]) <= getDeregisterTTL(regInterval) {
return nil
}
services, _, err := c.Client.Health().Checks(s.Name, &consul.QueryOptions{
AllowStale: true,
})
if err == nil {
for _, v := range services {
if v.ServiceID == node.Id {
Expand Down Expand Up @@ -245,9 +255,10 @@ func (c *consulRegistry) Register(s *Service, opts ...RegisterOption) error {
return err
}

// save our hash of the service
// save our hash and time check of the service
c.Lock()
c.register[s.Name] = h
c.lastChecked[s.Name] = time.Now()
c.Unlock()

// if the TTL is 0 we don't mess with the checks
Expand Down

0 comments on commit 33ae45a

Please sign in to comment.