You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For example handling periodic exporting in BatchSpanProcessor and PeriodicExportingMetricReader could be done in a single asyncio event loop (using a single thread) across all instances of all of these objects.
We could avoid creating a new background thread in each instance of those classes and it would simplify the synchronization logic. Would work nicely with async exporters and async callbacks which could all run in the same event loop #3273.
The text was updated successfully, but these errors were encountered:
Originally from #62 (comment)
For example handling periodic exporting in
BatchSpanProcessor
andPeriodicExportingMetricReader
could be done in a single asyncio event loop (using a single thread) across all instances of all of these objects.We could avoid creating a new background thread in each instance of those classes and it would simplify the synchronization logic. Would work nicely with async exporters and async callbacks which could all run in the same event loop #3273.
The text was updated successfully, but these errors were encountered: