Put JsonRpcServer into its own Arbiter #176
Labels
enhancement 📈
New feature or request
security 🛡️
Changes that affect software security for the good or the bad
Context
Flooding
JsonRpcServer
with dummy messages makes the entireSystem
unresponsive as it runs on a single system thread which is shared by every actor in our app.We need to isolate
JsonRpcServer
into its ownArbiter
so that it can run on a separate thread and not block the rest of our actors.If this works well, it will be useful as a PoC for a more general strategy for actor arbitration and safe isolation of different parts of our apps, which is important for #72.
The text was updated successfully, but these errors were encountered: