-
Notifications
You must be signed in to change notification settings - Fork 417
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
Added max async export support using separate AsyncBatchSpan/LogProcessor #1306
Merged
lalitb
merged 11 commits into
open-telemetry:async-changes
from
DebajitDas:export-changes
May 4, 2022
Merged
Changes from 6 commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
f218940
Added max async export support
DebajitDas 0c8dfcf
Added max async export support
DebajitDas 39df6c8
Incorporated Review Comments. Added async flags for most jobs barring…
DebajitDas e4bc6e8
Added CI flags
DebajitDas b15931f
Added Separate Async Batch Span/Log Processors to isolate async funct…
DebajitDas 1421910
Added changelog
DebajitDas 4f2fc3b
Incorporated Review Comments and added async processor as derived of …
DebajitDas ca556b1
Incorporated some review comments
DebajitDas c2c5860
Fixed Format
DebajitDas f5324c9
Incorporated Review Comments
DebajitDas 3c3bb3e
Merge branch 'async-changes' into export-changes
DebajitDas File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could you enable
-DENABLE_ASYNC_EXPORT_PREVIEW
for all jobs but left one without it?I think we also need benchmark,address sanitizer, thread sanitizer and so on for this.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could you please point me to some examples to refer to for benchmark, address sanitizer and thread sanitizer for this?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sorry, I missed something,
bazel.asan
,bazel.tsan
andbazel.valgrind
already enable async APIs now, butbenchmark
still use$BAZEL_OPTIONS
, I think we should also use$BAZEL_OPTIONS_ASYNC
.And we should also add
--copt=-DENABLE_ASYNC_EXPORT_PREVIEW
or-DWITH_ASYNC_EXPORT_PREVIEW=ON
into all actions in ci/do_ci.ps1, it's used on Windows.