[docs] Clarify enqueue failure behavior in exporter helper#14544
Open
bradyuan wants to merge 1 commit intoopen-telemetry:mainfrom
Open
[docs] Clarify enqueue failure behavior in exporter helper#14544bradyuan wants to merge 1 commit intoopen-telemetry:mainfrom
bradyuan wants to merge 1 commit intoopen-telemetry:mainfrom
Conversation
|
|
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #14544 +/- ##
==========================================
+ Coverage 91.83% 91.86% +0.02%
==========================================
Files 677 677
Lines 42705 42777 +72
==========================================
+ Hits 39220 39295 +75
+ Misses 2429 2427 -2
+ Partials 1056 1055 -1 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
songy23
reviewed
Feb 9, 2026
| - `queue_size` (default = 1000): Maximum size the queue can accept. Measured in units defined by `sizer` | ||
| - `batch`: see below. | ||
|
|
||
| **Failure behavior**: If data cannot be added to the sending queue, it is dropped. This occurs when the queue has reached its configured capacity or, for persistent queues, when the underlying storage cannot accept additional data (for example, due to insufficient disk space or I/O errors). Because the data is rejected before entering the queue, it does not reach the exporter retry logic. Enqueue failures are reported by the otelcol_exporter_enqueue_failed_* metrics. |
Member
There was a problem hiding this comment.
This is not true when block_on_overflow is enabled. In that case data is not immediately dropped when sending queue is full, and it may be enqueued later if the queue frees up enough space before request times out
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Adds documentation clarifying that data is dropped when it cannot be enqueued
(e.g., queue at capacity or persistent storage cannot accept writes).
This happens before exporter retry logic.
Fixes #5952.