Skip to content

Commit

Permalink
Prevent starting unnecessary goroutines (#9817)
Browse files Browse the repository at this point in the history
Fixes
#9739
Replaces
#9814

Signed-off-by: Bogdan Drutu <bogdandrutu@gmail.com>
  • Loading branch information
bogdandrutu committed Mar 22, 2024
1 parent 2037527 commit 15201f1
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 3 deletions.
25 changes: 25 additions & 0 deletions .chloggen/fix-batch-processor-goroutine-leak.yaml
@@ -0,0 +1,25 @@
# Use this changelog template to create an entry for release notes.

# One of 'breaking', 'deprecation', 'new_component', 'enhancement', 'bug_fix'
change_type: bug_fix

# The name of the component, or a single word describing the area of concern, (e.g. otlpreceiver)
component: processor/batch

# A brief description of the change. Surround your text with quotes ("") if it needs to start with a backtick (`).
note: Prevent starting unnecessary goroutines.

# One or more tracking issues or pull requests related to the change
issues: [9739]

# (Optional) One or more lines of additional information to render under the primary note.
# These lines will be padded with 2 spaces and then inserted directly into the document.
# Use pipe (|) for multiline entries.
subtext:

# Optional: The change log or logs in which this entry should be included.
# e.g. '[user]' or '[user, api]'
# Include 'user' if the change is relevant to end users.
# Include 'api' if there is a change to a library API.
# Default: '[user]'
change_logs: []
13 changes: 10 additions & 3 deletions processor/batchprocessor/batch_processor.go
Expand Up @@ -129,7 +129,9 @@ func newBatchProcessor(set processor.CreateSettings, cfg *Config, batchFunc func
metadataLimit: int(cfg.MetadataCardinalityLimit),
}
if len(bp.metadataKeys) == 0 {
bp.batcher = &singleShardBatcher{batcher: bp.newShard(nil)}
s := bp.newShard(nil)
s.start()
bp.batcher = &singleShardBatcher{batcher: s}
} else {
bp.batcher = &multiShardBatcher{
batchProcessor: bp,
Expand All @@ -156,8 +158,6 @@ func (bp *batchProcessor) newShard(md map[string][]string) *shard {
exportCtx: exportCtx,
batch: bp.batchFunc(),
}
b.processor.goroutines.Add(1)
go b.start()
return b
}

Expand All @@ -180,6 +180,11 @@ func (bp *batchProcessor) Shutdown(context.Context) error {
}

func (b *shard) start() {
b.processor.goroutines.Add(1)
go b.startLoop()
}

func (b *shard) startLoop() {
defer b.processor.goroutines.Done()

// timerCh ensures we only block when there is a
Expand Down Expand Up @@ -320,6 +325,8 @@ func (mb *multiShardBatcher) consume(ctx context.Context, data any) error {
var loaded bool
b, loaded = mb.batchers.LoadOrStore(aset, mb.newShard(md))
if !loaded {
// Start the goroutine only if we added the object to the map, otherwise is already started.
b.(*shard).start()
mb.size++
}
mb.lock.Unlock()
Expand Down

0 comments on commit 15201f1

Please sign in to comment.