You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to OpenTracing
Hi,
I have a microservices solution based on Apache Kafka. Each message carries its own trace. But in one service we do some pre-processing in a set of messages. How do I describe that? I was thinking about creating a span for this common processing and clone it in each message trace. What do you guys think?
Thanks!
Yuri Shkuro
unread,
Aug 18, 2020, 11:48:51 AM8/18/20
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to OpenTracing
Most tracing system will not allow sharing the same span across traces because trace ID is part of span identity. What we did instead in similar situations of coalescing workflows is to add a new span to every inbound trace and link them to the span in the new outbound (aggregate) trace.
Osvaldo Pina
unread,
Aug 18, 2020, 12:56:59 PM8/18/20
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message