
For further actions, you may consider blocking this person and/or reporting abuse
For further actions, you may consider blocking this person and/or reporting abuse
Head over to the Welcome Thread and greet some new community members!
Jake Howering -
Ashok Nagaraj -
Akarshan Gandotra -
Mike Levan -
Once suspended, irajbalakrish will not be able to comment or publish posts until their suspension is removed.
Once unsuspended, irajbalakrish will be able to comment and publish posts again.
Once unpublished, all posts by irajbalakrish will become hidden and only accessible to themselves.
If irajbalakrish is not suspended, they can still re-publish their posts from their dashboard.
Once unpublished, this post will become invisible to the public and only accessible to Rajkumar Balakrishnan.
They can still re-publish the post if they are not suspended.
Thanks for keeping DEV Community 👩💻👨💻 safe. Here is what you can do to flag irajbalakrish:
Unflagging irajbalakrish will restore default visibility to their posts.
Top comments (3)
Hey, that looks really detailed. However, I would recommend in practice a "lighthouse container". This can greatly simplify scaling in Kubernetes.
github.com/petabridge/lighthouse
In addition, Akka.NET has some trapdoors in the area of Threading. Become / Unbecome, Stashing and so on can quickly cause performance problems if misused. That's where most beginners fail.
Here are 3 things I would like to know about akka.net earlier.
1. Akka.NET is not (only) a framework. Its a Pattern!
Threading and scaling are basically just one aspect of Akka.
Akka is much more of a pattern that allows you to take "shortcuts" and code in other ways.
Thats the real power of Actors!
Old way


New ways..
Link to Akka.io, the java implementation
2. Slow Actors, Slow System
If you have Actors that running one big function of Sync/Async Code you not using the Actor Pattern. You need ensure that the Work is splitted and handled with the Messages for natural parallelism. If you Block your Actor with a long running single task, the next messages needs to be wait for Processing. The Result is that the Message throuhput in the local Actor-System is broken.
3. Reliability in Dist-Pub/Sub is not the best.
The problem with the Distributed Pub/Sub System in Akka.NET is the not existent Message-Persistents. You will definitely lose Messages!(Network, Cluster, Actor-Crash, Reboot, Scale, etc..) Although there are possibilities for Message-Persitence and a ACK System, but they are all not really suitable for Production.
If the MQ-System is important you should use another one that forward the Messages to the Actor-System. EasyNetQ is for example a robust and simple solution on top of RabbitMQ.
I hope this helps you further ;)
Thanks a ton for taking time to share. Definitely helps ;) keep writinf