Continuing the trace #1921
-
I have a scenario where the end-to-end flow is broken since there is a queue involved. As an example, the client makes a request to a web service, which stores the request in a queue. Another process reads from the queue and makes a new request to complete the flow. I would like to trace the complete flow and wondering how to achieve it. Here is the general approach I've in mind.
I run into a couple of issues while trying to implement it. For example, capturing the context and saving gives me the following error:
Here is the error:
If there is a way we can reliably serialize the context, I am thinking of using the following approach to continue the trace. However, I'm not able to test since I am stuck on the first error.
Any pointers would be appreciated. Thanks |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
I could solve this issue by using |
Beta Was this translation helpful? Give feedback.
I could solve this issue by using
inject()
andextract()
methods instead of using pickle module.