-
Notifications
You must be signed in to change notification settings - Fork 37
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Context propagation #72
Comments
I think it is much better to integrate with context propagation as it was created to server the purpose of this spec and Fault Tolerance. |
Adding JsonIgnore for payload property
Where do we stand here? |
SmallRye includes in its last version metadata propagation (metadata associated with messages) and supports context propagation (capture of the context and propagation to the subscriber). |
I am creating this based on smallrye/smallrye-reactive-messaging#214
Allow in-process context propagation between handlers. The API can be used by users to propagate any objects between handlers, but It is also necessary for tracing to propagate span context object to be able to link spans in handlers:
links span from
data-processor-in
todata-processor-out
topics.Two solutions have been already discussed:
Map<String, Object>
)to the message class. Q: How would user get the context? The implementation would have to provide an SPI to initialize TLS.Once the context propagation is in place we could provide tracing for underlying messaging platforms but in addition to also model invocations of the handlers themselves.
Other
Related to #2?
The text was updated successfully, but these errors were encountered: