Skip to content

Commit

Permalink
local: mark service and checks as InSync when added
Browse files Browse the repository at this point in the history
If the existing service and checks are the same as the new registration.
  • Loading branch information
dnephin committed Nov 27, 2020
1 parent 08b8a92 commit 33b8106
Show file tree
Hide file tree
Showing 4 changed files with 77 additions and 15 deletions.
3 changes: 3 additions & 0 deletions .changelog/9284.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
```release-note:bug
agent: prevent duplicate services and check registrations from being synced to servers.
```
11 changes: 6 additions & 5 deletions agent/ae/ae.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,14 @@ package ae

import (
"fmt"
"github.com/hashicorp/consul/lib"
"github.com/hashicorp/consul/logging"
"github.com/hashicorp/go-hclog"
"math"
"sync"
"time"

"github.com/hashicorp/go-hclog"

"github.com/hashicorp/consul/lib"
"github.com/hashicorp/consul/logging"
)

// scaleThreshold is the number of nodes after which regular sync runs are
Expand Down Expand Up @@ -173,8 +175,7 @@ func (s *StateSyncer) nextFSMState(fs fsmState) fsmState {
return retryFullSyncState
}

err := s.State.SyncFull()
if err != nil {
if err := s.State.SyncFull(); err != nil {
s.Logger.Error("failed to sync remote state", "error", err)
return retryFullSyncState
}
Expand Down
22 changes: 15 additions & 7 deletions agent/local/state.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,14 @@ import (

"github.com/armon/go-metrics"
"github.com/armon/go-metrics/prometheus"
"github.com/hashicorp/go-hclog"

"github.com/hashicorp/consul/acl"
"github.com/hashicorp/consul/agent/structs"
"github.com/hashicorp/consul/agent/token"
"github.com/hashicorp/consul/api"
"github.com/hashicorp/consul/lib"
"github.com/hashicorp/consul/types"
"github.com/hashicorp/go-hclog"
)

var StateCounters = []prometheus.CounterDefinition{
Expand Down Expand Up @@ -287,7 +288,6 @@ func (l *State) AddServiceWithChecks(service *structs.NodeService, checks []*str
return err
}
}

return nil
}

Expand Down Expand Up @@ -399,12 +399,14 @@ func (l *State) SetServiceState(s *ServiceState) {
}

func (l *State) setServiceStateLocked(s *ServiceState) {
s.WatchCh = make(chan struct{}, 1)

key := s.Service.CompoundServiceID()
old, hasOld := l.services[key]
if hasOld {
s.InSync = s.Service.IsSame(old.Service)
}
l.services[key] = s

s.WatchCh = make(chan struct{}, 1)
if hasOld && old.WatchCh != nil {
close(old.WatchCh)
}
Expand Down Expand Up @@ -722,7 +724,13 @@ func (l *State) SetCheckState(c *CheckState) {
}

func (l *State) setCheckStateLocked(c *CheckState) {
l.checks[c.Check.CompoundCheckID()] = c
id := c.Check.CompoundCheckID()
existing := l.checks[id]
if existing != nil {
c.InSync = c.Check.IsSame(existing.Check)
}

l.checks[id] = c

// If this is a check for an aliased service, then notify the waiters.
l.notifyIfAliased(c.Check.CompoundServiceID())
Expand Down Expand Up @@ -868,8 +876,8 @@ func (l *State) Stats() map[string]string {
}
}

// updateSyncState does a read of the server state, and updates
// the local sync status as appropriate
// updateSyncState queries the server for all the services and checks in the catalog
// registered to this node, and updates the local entries as InSync or Deleted.
func (l *State) updateSyncState() error {
// Get all checks and services from the master
req := structs.NodeSpecificRequest{
Expand Down
56 changes: 53 additions & 3 deletions agent/local/state_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,9 @@ import (
"testing"
"time"

"github.com/hashicorp/consul/testrpc"
"github.com/hashicorp/go-hclog"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"

"github.com/hashicorp/consul/agent"
"github.com/hashicorp/consul/agent/config"
Expand All @@ -17,9 +18,8 @@ import (
"github.com/hashicorp/consul/agent/token"
"github.com/hashicorp/consul/api"
"github.com/hashicorp/consul/sdk/testutil/retry"
"github.com/hashicorp/consul/testrpc"
"github.com/hashicorp/consul/types"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)

func unNilMap(in map[string]string) map[string]string {
Expand All @@ -28,6 +28,7 @@ func unNilMap(in map[string]string) map[string]string {
}
return in
}

func TestAgentAntiEntropy_Services(t *testing.T) {
t.Parallel()
a := agent.NewTestAgent(t, "")
Expand Down Expand Up @@ -2195,3 +2196,52 @@ func drainCh(ch chan struct{}) {
}
}
}

func TestState_SyncChanges_DuplicateAddServiceOnlySyncsOnce(t *testing.T) {
state := local.NewState(local.Config{}, hclog.New(nil), new(token.Store))
rpc := &fakeRPC{}
state.Delegate = rpc
state.TriggerSyncChanges = func() {}

srv := &structs.NodeService{
Kind: structs.ServiceKindTypical,
ID: "the-service-id",
Service: "web",
EnterpriseMeta: *structs.DefaultEnterpriseMeta(),
}
checks := []*structs.HealthCheck{
{Node: "this-node", CheckID: "the-id-1", Name: "check-healthy-1"},
{Node: "this-node", CheckID: "the-id-2", Name: "check-healthy-2"},
}
tok := "the-token"
err := state.AddServiceWithChecks(srv, checks, tok)
require.NoError(t, err)
require.NoError(t, state.SyncChanges())
// 4 rpc calls, one node register, one service register, two checks
require.Len(t, rpc.calls, 4)

// adding the service again should not catalog register
err = state.AddServiceWithChecks(srv, checks, tok)
require.NoError(t, err)
require.NoError(t, state.SyncChanges())
require.Len(t, rpc.calls, 4)
}

type fakeRPC struct {
calls []callRPC
}

type callRPC struct {
method string
args interface{}
reply interface{}
}

func (f *fakeRPC) RPC(method string, args interface{}, reply interface{}) error {
f.calls = append(f.calls, callRPC{method: method, args: args, reply: reply})
return nil
}

func (f *fakeRPC) ResolveTokenToIdentity(_ string) (structs.ACLIdentity, error) {
return nil, nil
}

0 comments on commit 33b8106

Please sign in to comment.