Java服务器扩展解决方案
堆栈溢出!我们正在开发系统,它应该是水平可扩展的。因此,消息传递系统似乎是正确的方法,但它的级别非常低。我们的主要需求是客户端和服务器系统之间的持久连接(客户端是通过基于 xml 的协议与服务器通信的移动应用程序)。接下来非常重要的任务是根据节点当前负载进行工作分配。现在我们使用基于 Apache Mina 框架的遗留应用程序,但它不可扩展。那么,什么架构就足够了?您知道哪些库或框架可以解决我们的问题?
工作分配应基于任务长度,任务长度可能是可变的。 集群中的每个应用程序服务器应该能够随时向客户端发送消息,而无需客户端请求(推送)。
stackoverflow! We are developing system, which should be horizontal scalable. So, messaging system seems to be the right approach, but it very low-level. Our main requirement is persistent connections between clients and server system (clients are mobile applications communicating with server by xml-based protocol). The next very important task is work distribution based on node current load. Now we are using legacy application based on Apache Mina framework, but it is not scalable. So, what architecture will be sufficient and what libraries or frameworks do you know to solve our problems?
Work distribution should be based on task length, which could be variable.
Every application server in cluster should be able to send message to client at any time without request from client (push).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Hazelcast 或 网格增益?
And how about Hazelcast or GridGain?