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 some async logic is implemented e.g. processing Messages are mainly done async. Still, the code blocks executed asynchronously contains too much logic.
To better scale the Dispatchers should be optimized in not only calling processMessage asynchronously but also other methods.
For example:
Thread receives the messages --> forward to dispatcher
Thread process the message by replacing substitutes
...
Sends the message to C8Y or outbound to Connector
Every "heavy" and cpu-intensive processing should be handled asynchronously if possible.
The text was updated successfully, but these errors were encountered:
Currently some async logic is implemented e.g. processing Messages are mainly done async. Still, the code blocks executed asynchronously contains too much logic.
To better scale the Dispatchers should be optimized in not only calling processMessage asynchronously but also other methods.
For example:
Every "heavy" and cpu-intensive processing should be handled asynchronously if possible.
The text was updated successfully, but these errors were encountered: