-
Notifications
You must be signed in to change notification settings - Fork 640
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
[Issue #718] update Grpc Message Model name to SimpleMessage #723
Conversation
1. Add Metrics plugin module 2. Implement opentelemetry metrics module related issue apache#696
* add docs * change default spanExporter to span
Signed-off-by: Tihomir Surdilovic <tihomir@temporal.io>
Signed-off-by: Tihomir Surdilovic <tihomir@temporal.io>
Signed-off-by: Tihomir Surdilovic <tihomir@temporal.io>
docs/cn/instructions/eventmesh-runtime-quickstart-with-docker.md
Outdated
Show resolved
Hide resolved
please fix the conflicts thanks. @jinrongluo |
eventmesh-examples/src/main/java/org/apache/eventmesh/grpc/sub/CloudEventsSubscribeReply.java
Outdated
Show resolved
Hide resolved
eventmesh-examples/src/main/java/org/apache/eventmesh/grpc/sub/EventmeshSubscribeReply.java
Outdated
Show resolved
Hide resolved
If all the changes has been done, you can leave a notification and I'll do the whole test again thanks. @jinrongluo |
hi @xwm1992 I still need to run more testing in myself. I will let you know when I done. thanks. |
# Conflicts: # docs/cn/instructions/eventmesh-sdk-java-quickstart.md # docs/en/instructions/eventmesh-sdk-java-quickstart.md
Merge conflict is fixed. |
@xwm1992 I have completed the development and testing of this PR. Please go ahead and run more testing at your end. Thanks. for the review. |
I run the After got this error, the client has been shutted down and only got one message, but the topic offset has been updated to 5, this phenomenon is reasonable ? this error is not inevitable, please take a look, thanks. |
Hi @xwm1992 I am not able to reproduce this error in my development environment. How are you running this test? Please make sure you use the right Publisher and Subscriber as shown below. Thanks. |
Hi, @jinrongluo if I run the
|
Thanks @xwm1992 The root cause of this issue is that Grpc StreamObserver is not thread safe. The Java doc is here:
The fix is in this commit - 48ab8d3 |
I will merge to branch, we could continue review, test and bugfix. @jinrongluo @qqeasonchen |
Fixes ISSUE #718
Motivation
update Grpc Message Model name to SimpleMessage
Modifications