Skip to content

Commit f0fe810

Browse files
committed
perf(tracing): lower default span-export concurrency to 3
1 parent c24e148 commit f0fe810

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/agentex/lib/core/tracing/span_queue.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
# concurrently; issuing one batch at a time caps per-pod egress at ~1/latency.
2626
# Sending several concurrently lets a pod keep up with span production under
2727
# load. ``1`` restores the old strictly-serial behavior.
28-
_DEFAULT_CONCURRENCY = 8
28+
_DEFAULT_CONCURRENCY = 3
2929
# HTTP statuses worth retrying at the queue level. These are explicit
3030
# backpressure / transient signals; everything else (esp. 401/403/4xx auth and
3131
# validation errors) is a permanent failure that re-enqueuing cannot fix. Note

0 commit comments

Comments
 (0)