Hi all, Currently I'm in stage that most of the features related with the proxy reverse plugin are ready. I the future I will focus more on improving the current code and making tests and bug fixes. I will also make a couple of new things, but this won't be the main focus.
This week I added a source hash balancing algorithm. It determines which slave server to use for handling the request based on the source IP address. This ensures that each consecutive request from a given client will be handled by the same server. This allows each slave server to work independently (no need to synchronize shared data with the other servers). Next week I will make more improvements on the algorithm. Currently if some slave server goes down, the load balancing will have problems, because it will try to forward the connection to the server and will throw an error.I will make to pick the next server if configured to have this behavior. To do that I have to make some hash storage, to store the connections, so when the server is back online send the old connections to the last server. GitHub URL : https://github.com/nikolanikov/monkey Blog URL: http://nikolanikov.wordpress.com/ Regards, Nikola Nikov
_______________________________________________ Monkey mailing list [email protected] http://lists.monkey-project.com/listinfo/monkey
