Skip to content

Commit bd03200

Browse files
committed
Deprecate the old exporter batch configuration section
1 parent 9912293 commit bd03200

File tree

2 files changed

+31
-0
lines changed

2 files changed

+31
-0
lines changed

.chloggen/deprecate-old-batcher.yaml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# Use this changelog template to create an entry for release notes.
2+
3+
# One of 'breaking', 'deprecation', 'new_component', 'enhancement', 'bug_fix'
4+
change_type: deprecation
5+
6+
# The name of the component, or a single word describing the area of concern, (e.g. otlpreceiver)
7+
component: exporterhelper
8+
9+
# A brief description of the change. Surround your text with quotes ("") if it needs to start with a backtick (`).
10+
note: "Deprecate configuring exporter batching separately. Use `sending_queue::batch` instead."
11+
12+
# One or more tracking issues or pull requests related to the change
13+
issues: []
14+
15+
# (Optional) One or more lines of additional information to render under the primary note.
16+
# These lines will be padded with 2 spaces and then inserted directly into the document.
17+
# Use pipe (|) for multiline entries.
18+
subtext: |
19+
Moving the batching configuration to `sending_queue::batch` requires setting `sending_queue::sizer` to `items`
20+
which means that `sending_queue::queue_size` needs to be also increased by the average batch size number (roughly
21+
x5000 for the default batching configuration).
22+
See https://github.com/open-telemetry/opentelemetry-collector/tree/main/exporter/exporterhelper#configuration
23+
24+
# Optional: The change log or logs in which this entry should be included.
25+
# e.g. '[user]' or '[user, api]'
26+
# Include 'user' if the change is relevant to end users.
27+
# Include 'api' if there is a change to a library API.
28+
# Default: '[user]'
29+
change_logs: [user]

exporter/exporterhelper/internal/queuebatch/queue_batch.go

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,8 @@ func NewQueueBatchLegacyBatcher(
4141
cfg Config,
4242
next sender.SendFunc[request.Request],
4343
) (*QueueBatch, error) {
44+
set.Telemetry.Logger.Warn("Configuring the exporter batcher capability separately is now deprecated. " +
45+
"Use sending_queue::batch instead.")
4446
return newQueueBatch(set, cfg, next, true)
4547
}
4648

0 commit comments

Comments
 (0)