Skip to content

Commit

Permalink
fix: enabled data race (#3041)
Browse files Browse the repository at this point in the history
  • Loading branch information
fracasula committed Mar 1, 2023
1 parent ade2e4d commit 7136be4
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 10 deletions.
6 changes: 4 additions & 2 deletions services/stats/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,16 @@ package stats

import (
"sync"
"sync/atomic"

"gopkg.in/alexcesaro/statsd.v2"

"github.com/rudderlabs/rudder-server/config"
"github.com/rudderlabs/rudder-server/services/metric"
"gopkg.in/alexcesaro/statsd.v2"
)

type statsdConfig struct {
enabled bool
enabled atomic.Bool
tagsFormat string
excludedTags []string
statsdServerURL string
Expand Down
5 changes: 3 additions & 2 deletions services/stats/measurement.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,9 @@ import (
"strings"
"time"

"github.com/rudderlabs/rudder-server/utils/logger"
"gopkg.in/alexcesaro/statsd.v2"

"github.com/rudderlabs/rudder-server/utils/logger"
)

// Counter represents a counter metric
Expand Down Expand Up @@ -52,7 +53,7 @@ type statsdMeasurement struct {

// skip returns true if the stat should be skipped (stats disabled or client not ready)
func (m *statsdMeasurement) skip() bool {
return !m.conf.enabled || !m.client.ready()
return !m.conf.enabled.Load() || !m.client.ready()
}

// Count default behavior is to panic as not supported operation
Expand Down
12 changes: 6 additions & 6 deletions services/stats/stats.go
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,6 @@ func NewStats(config *config.Config, loggerFactory *logger.Factory, metricManage
s := &statsdStats{
log: loggerFactory.NewLogger().Child("stats"),
conf: &statsdConfig{
enabled: config.GetBool("enableStats", true),
tagsFormat: config.GetString("statsTagsFormat", "influxdb"),
excludedTags: config.GetStringSlice("statsExcludedTags", nil),
statsdServerURL: config.GetString("STATSD_SERVER_URL", "localhost:8125"),
Expand All @@ -105,6 +104,7 @@ func NewStats(config *config.Config, loggerFactory *logger.Factory, metricManage
pendingClients: make(map[string]*statsdClient),
},
}
s.conf.enabled.Store(config.GetBool("enableStats", true))
return s
}

Expand All @@ -116,13 +116,13 @@ type statsdStats struct {
}

func (s *statsdStats) Start(ctx context.Context) {
if !s.conf.enabled {
if !s.conf.enabled.Load() {
return
}
s.state.conn = statsd.Address(s.conf.statsdServerURL)
// since, we don't want setup to be a blocking call, creating a separate `go routine`` for retry to get statsd client.
var err error
// NOTE: this is to get atleast a dummy client, even if there is a failure. So, that nil pointer error is not received when client is called.
// NOTE: this is to get at least a dummy client, even if there is a failure. So, that nil pointer error is not received when client is called.
s.state.client.statsd, err = statsd.New(s.state.conn, s.conf.statsdTagsFormat(), s.conf.statsdDefaultTags())
if err == nil {
s.state.clientsLock.Lock()
Expand All @@ -133,7 +133,7 @@ func (s *statsdStats) Start(ctx context.Context) {
if err != nil {
s.state.client.statsd, err = s.getNewStatsdClientWithExpoBackoff(ctx, s.state.conn, s.conf.statsdTagsFormat(), s.conf.statsdDefaultTags())
if err != nil {
s.conf.enabled = false
s.conf.enabled.Store(false)
s.log.Errorf("error while creating new statsd client: %v", err)
} else {
s.state.clientsLock.Lock()
Expand Down Expand Up @@ -202,7 +202,7 @@ func (s *statsdStats) collectPeriodicStats() {
func (s *statsdStats) Stop() {
s.state.clientsLock.RLock()
defer s.state.clientsLock.RUnlock()
if !s.conf.enabled || !s.state.connEstablished {
if !s.conf.enabled.Load() || !s.state.connEstablished {
return
}
if s.state.rc.done != nil {
Expand All @@ -228,7 +228,7 @@ func (s *statsdStats) NewSampledTaggedStat(Name, StatType string, tags Tags) (m

func (s *statsdStats) internalNewTaggedStat(name, statType string, tags Tags, samplingRate float32) (m Measurement) {
// If stats is not enabled, returning a dummy struct
if !s.conf.enabled {
if !s.conf.enabled.Load() {
return newStatsdMeasurement(s.conf, s.log, name, statType, &statsdClient{})
}

Expand Down

0 comments on commit 7136be4

Please sign in to comment.