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
We need to use opentelemetry-cpp in an application which require very low latency message processing. The application is architected in way to create thread zones where each zone is associated with a single thread. All code that belong to a thread zone are written in un-thread safe manner. So most of the classes are not thread safe as they need not be. This is done to increase performance by reducing locking (even atomics). Due to same reason we dont use shared_pointers.
What are my options to use opentelemetry-cpp in this setting?
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
-
We need to use opentelemetry-cpp in an application which require very low latency message processing. The application is architected in way to create thread zones where each zone is associated with a single thread. All code that belong to a thread zone are written in un-thread safe manner. So most of the classes are not thread safe as they need not be. This is done to increase performance by reducing locking (even atomics). Due to same reason we dont use shared_pointers.
What are my options to use opentelemetry-cpp in this setting?
Beta Was this translation helpful? Give feedback.
All reactions