Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Minor clarification on BatchExportingProcessor behavior #4164

Merged
merged 10 commits into from
Aug 19, 2024
6 changes: 3 additions & 3 deletions specification/trace/sdk.md
Original file line number Diff line number Diff line change
Expand Up @@ -703,9 +703,9 @@ This is an implementation of the `SpanProcessor` which create batches of finishe
spans and passes the export-friendly span data representations to the
configured `SpanExporter`.

The processor SHOULD export a batch when any of the following happens AND
`SpanProcessor#Export()` has not yet returned (for additional concurrency
details see the [Export() specification](#exportbatch)):
The processor SHOULD export a batch when any of the following happens AND the
previous export operation has finished (for additional concurrency details see
cijothomas marked this conversation as resolved.
Show resolved Hide resolved
the [Export() specification](#exportbatch)):

- `scheduledDelayMillis` after the processor is constructed OR the first span
is received by the span processor.
Expand Down
Loading