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 are currently using opentelemetry 0.27 whereas the latest version is 0.29. In order to benefit from bug fixes and performance improvements, we should try to upgrade. The biggest hurdle right now is our usage of the injecting service names as done by UserServiceModifierSpanExporter and RuntimeModifierSpanExporter. The current implementation requires a keeping the inner span exporter within a std::sync::Mutex. However, with the latest version, the SpanExporter trait changed to no longer return a BoxFuture<'static, ..> when calling export but a normal future. This future (with Rust edition 2025) now captures &self. Therefore, we can no longer use std::sync::Mutex because the guard would be kept around during an await point which violates the Send bound. A solution is to use Tokio's Mutex, however, it's known to be slower than std::sync::Mutex.
The text was updated successfully, but these errors were encountered:
We are currently using opentelemetry 0.27 whereas the latest version is 0.29. In order to benefit from bug fixes and performance improvements, we should try to upgrade. The biggest hurdle right now is our usage of the injecting service names as done by
UserServiceModifierSpanExporter
andRuntimeModifierSpanExporter
. The current implementation requires a keeping the inner span exporter within a std::sync::Mutex. However, with the latest version, theSpanExporter
trait changed to no longer return aBoxFuture<'static, ..>
when callingexport
but a normal future. This future (with Rust edition 2025) now captures&self
. Therefore, we can no longer usestd::sync::Mutex
because the guard would be kept around during an await point which violates theSend
bound. A solution is to use Tokio's Mutex, however, it's known to be slower thanstd::sync::Mutex
.The text was updated successfully, but these errors were encountered: