How to use context propagation across JVMs in batch jobs #4876
Unanswered
mamathadaram
asked this question in
Q&A
Replies: 1 comment 1 reply
-
There's no built in context propagator for this use case. I'm not super familiar with spark, but the key question to ask is whether you can implement the TextMapPropagator interface in a way where the trace context can be passed to the executor nodes. I'd imagine the answer is yes, but don't know the specifics. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Am trying to use open telemetry in spark jobs. We have a driver and executor nodes running in separate jvms. I want to create tracer object and parent span created at driver node and pass this to the executor node using context propagation.
Pls let me know if we can achieve it.
Beta Was this translation helpful? Give feedback.
All reactions