Fix subscriber service dropping writes under high write load

The subscriber write goroutine would drop points if the write load
was higher than it could process.  This could happen with a just
a few writers to the server.

Instead, process the channel with multiple writers to avoid dropping
writes so easily.  This also adds some config options to control how
large the channel buffer is as well as how many goroutines are started.

Fixes #7330
pull/7407/head
Jason Wilder 2016-10-04 13:44:56 -06:00
parent 2c0d5b10aa
commit ea21588b9e
4 changed files with 38 additions and 13 deletions

View File

@ -6,6 +6,7 @@
- [#5878](https://github.com/influxdata/influxdb/issues/5878): Ensure correct shard groups created when retention policy has been altered.
- [#7391](https://github.com/influxdata/influxdb/issues/7391): Fix RLE integer decoding producing negative numbers
- [#7335](https://github.com/influxdata/influxdb/pull/7335): Avoid stat syscall when planning compactions
- [#7330](https://github.com/influxdata/influxdb/issues/7330): Subscription data loss under high write load
## v1.0.1 [2016-09-26]

View File

@ -49,8 +49,8 @@ reporting-disabled = false
# These are the WAL settings for the storage engine >= 0.9.3
wal-dir = "/var/lib/influxdb/wal"
wal-logging-enabled = true
# Trace logging provides more verbose output around the tsm engine. Turning
# Trace logging provides more verbose output around the tsm engine. Turning
# this on can provide more useful output for debugging tsm engine issues.
# trace-logging-enabled = false
@ -182,7 +182,9 @@ reporting-disabled = false
[subscriber]
enabled = true
http-timeout = "30s"
# http-timeout = "30s"
# write-concurrency = 40
# write-buffer-size = 1000
###

View File

@ -8,7 +8,9 @@ import (
)
const (
DefaultHTTPTimeout = 30 * time.Second
DefaultHTTPTimeout = 30 * time.Second
DefaultWriteConcurrency = 40
DefaultWriteBufferSize = 1000
)
// Config represents a configuration of the subscriber service.
@ -17,13 +19,21 @@ type Config struct {
Enabled bool `toml:"enabled"`
HTTPTimeout toml.Duration `toml:"http-timeout"`
// The number of writer goroutines processing the write channel.
WriteConcurrency int `toml:"write-concurrency"`
// The number of in-flight writes buffered in the write channel.
WriteBufferSize int `toml:"write-buffer-size"`
}
// NewConfig returns a new instance of a subscriber config.
func NewConfig() Config {
return Config{
Enabled: true,
HTTPTimeout: toml.Duration(DefaultHTTPTimeout),
Enabled: true,
HTTPTimeout: toml.Duration(DefaultHTTPTimeout),
WriteConcurrency: DefaultWriteConcurrency,
WriteBufferSize: DefaultWriteBufferSize,
}
}
@ -31,5 +41,14 @@ func (c Config) Validate() error {
if c.HTTPTimeout <= 0 {
return errors.New("http-timeout must be greater than 0")
}
if c.WriteBufferSize <= 0 {
return errors.New("write-buffer-size must be greater than 0")
}
if c.WriteConcurrency <= 0 {
return errors.New("write-concurrency must be greater than 0")
}
return nil
}

View File

@ -24,7 +24,8 @@ const (
)
// PointsWriter is an interface for writing points to a subscription destination.
// Only WritePoints() needs to be satisfied.
// Only WritePoints() needs to be satisfied. PointsWriter implementations
// must be goroutine safe.
type PointsWriter interface {
WritePoints(p *coordinator.WritePointsRequest) error
}
@ -287,17 +288,19 @@ func (s *Service) updateSubs(wg *sync.WaitGroup) error {
return err
}
cw := chanWriter{
writeRequests: make(chan *coordinator.WritePointsRequest, 100),
writeRequests: make(chan *coordinator.WritePointsRequest, s.conf.WriteBufferSize),
pw: sub,
pointsWritten: &s.stats.PointsWritten,
failures: &s.stats.WriteFailures,
logger: s.Logger,
}
wg.Add(1)
go func() {
defer wg.Done()
cw.Run()
}()
for i := 0; i < s.conf.WriteConcurrency; i++ {
wg.Add(1)
go func() {
defer wg.Done()
cw.Run()
}()
}
s.subs[se] = cw
s.Logger.Println("added new subscription for", se.db, se.rp)
}