-
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
Sending cloudevents format messages using grpc is slow (I don't know if all producers are slow) #5030
Comments
Welcome to the Apache EventMesh community!! Please make sure to include all the relevant context. If you are interested in contributing to our project, please let us know! Want to get closer to the community?
Mailing Lists:
|
In addition, when I want to try to send a message using tpc, there is an error prompt My code : UserAgent userAgent = UserAgent.builder()
.env(ENV)
.host("10.2.1.116")
.password(generateRandomString(UtilsConstants.PASSWORD_LENGTH))
.username("admin")
.group(UtilsConstants.GROUP)
.path("C:/em")
.port(8362)
.subsystem("5556")
.pid(32_893)
.version(UtilsConstants.VERSION)
.idc(SYSID)
.build();
EventMeshTCPClientConfig eventMeshTcpClientConfig = EventMeshTCPClientConfig.builder()
.host("172.16.15.136")
.port(51111)
.userAgent(userAgent)
.build();
final EventMeshTCPClient<CloudEvent> producer =
EventMeshTCPClientFactory.createEventMeshTCPClient(eventMeshTcpClientConfig, CloudEvent.class);
producer.init();
```
So, now I am confused. Neither official documents nor cases provide detailed descriptions of UserAgents. It's weird. |
this error means your UserAgents missing the purpose property, you can take a look at |
It has been 90 days since the last activity on this issue. Apache EventMesh values the voices of the community. Please don't hesitate to share your latest insights on this matter at any time, as the community is more than willing to engage in discussions regarding the development and optimization directions of this feature. If you feel that your issue has been resolved, please feel free to close it. Should you have any additional information to share, you are welcome to reopen this issue. |
Search before asking
Question
Sending cloudevents format messages with grpc is slow (I'm not sure if the producers are all slow), and sending 101 pieces of data takes over 60 seconds.
code like this
The results as shown:
The server is configured as follows:
eventmesh.properties
server.env
Where I do wrong?
I don't think producers should so slowly!
The text was updated successfully, but these errors were encountered: