You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, there are a lot of configuration fields in EventMesh, and it will increase in the future, you can look up at eventmesh.properties.
Such as:
eventMesh.server.idc=DEFAULT
eventMesh.server.env=PRD
eventMesh.server.cluster=COMMON
eventMesh.server.name=EVENTMESH-runtime
eventMesh.sysid=0000
eventMesh.server.http.port=10105
########################## eventMesh tcp configuration ############################eventMesh.server.tcp.enabled=true
eventMesh.server.tcp.port=10000
eventMesh.server.tcp.readerIdleSeconds=120
eventMesh.server.tcp.writerIdleSeconds=120
eventMesh.server.tcp.allIdleSeconds=120
eventMesh.server.tcp.clientMaxNum=10000
# client isolation time if the message send failureeventMesh.server.tcp.pushFailIsolateTimeInMills=30000
It is difficult to find out which is your want since most of them has the same prefix.
It is better to store them at yaml file, the advantage is that you can merge the common prefixes like below:
eventMesh:
server:
idc: DEFAULTenv: PRDcluster: COMMONname: EVENTMESH-runtimehttp:
port: 10105tcp:
enabled: trueport: 10000readerIdleSeconds: 120writerIdleSeconds: 120allIdleSeconds: 120clientMaxNum: 10000pushFailIsolateTimeInMills: 30000# client isolation time if the message send failuresysid: 0000
The text was updated successfully, but these errors were encountered:
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.
Enhancement Request
Currently, there are a lot of configuration fields in EventMesh, and it will increase in the future, you can look up at
eventmesh.properties
.Such as:
It is difficult to find out which is your want since most of them has the same prefix.
It is better to store them at yaml file, the advantage is that you can merge the common prefixes like below:
The text was updated successfully, but these errors were encountered: