This repository has been archived by the owner on Oct 3, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 79
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
trace: allow for concurrent uploads to Stackdriver (#246)
* trace: allow for concurrent uploads to Stackdriver In situations where a large number of spans need to be exported from a single instance of the exporter, bundle uploads are limited to using a single goroutine. This limits the overall throughput of the exporter. Make use of the NumberOfWorkers option to allow the exporter to use multiple, concurrent goroutines to upload spans to Stackdriver. Closes #245. Signed-off-by: Nick Travers <n.e.travers@gmail.com> * Update documentation Signed-off-by: Nick Travers <n.e.travers@gmail.com> * Count number of exported spans Signed-off-by: Nick Travers <n.e.travers@gmail.com> * Fix data race in test case Signed-off-by: Nick Travers <n.e.travers@gmail.com>
- Loading branch information
Showing
3 changed files
with
71 additions
and
2 deletions.
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