zoukankan      html  css  js  c++  java
  • Is node.js best for Comet?


    Plurk Comet

    如果你正在做comet服务器的方案设计和选型,这篇文章将会让你豁然开朗,会让你对node.js有更深入的了解: 

    个人理解: 

    1)对于node.js 和netty/mina 之类的比较,作者认为netty更有优势

    2)在 c/c++/nginx/memcache 、node.js、netty 三种方案中。作者选择了netty。

    说明:以上的比较不能说明谁比谁好,只能说在作者的这种反向推送服务器架构中,netty更合适一些 

    原文地址:http://amix.dk/blog/post/19577#Is-node-js-best-for-Comet 

    At Plurk we process many millions of comet notifications pr. day and so far we have processed billions of them. It's comet at a very large scale and I think we are one of the biggest users of comet technology on the Internet. We use comet to deliver realtime updates to the users so they can plurk in realtime with their friends.

    Scaling this has been a challenge and we have tried many different solutions:

    • At first we used polling implemented in Python. This didn't scale that well and scaling this short term meant implementing polling in a C server. See my post for more: Fast polling using C, memcached, nginx and libevent
    • After hitting limits with polling in C we explored many different comet solutions, but most of them were and still are very immature. So we implemented our own comet solution using Java and Netty (a java.nio network library). See my post for more: Plurk Comet: Handling of 100.000+ open connections
    • Then node.js came along and I was a very big fan of it. After holding a presentation for Taipei Open Source group on node.js I rewrote our Java solution to node.js and tried it out. It worked wonderfully and it used much less memory than our Java solution (around 10x less) and similar amounts of CPU.

    Our node.js solution has served us well for the past 8 months and it has processed many millions of comet notifications each day. But sadly we began to have issues with processing our notifications and at our peak our comet queues got really huge.

    We tried a lot of optimizations to make node.js work - some of these were:

    • Upgrading node.js to 0.2.2 from 0.1.33. Version 0.2.2 had worse performance and memory leaks - or at least the memory consumption had changed a lot for the worse
    • Different code optimizations such as using optimized data structures
    • Tried to rewrite using Redis as a data store
    • Tried to use a proxy for channel writing

    None of these worked and we eventually got some new hardware that fixed the problem somewhat. But given that we are a startup with limited resources throwing hardware at the problem isn't generally a solution we use that much.

    So we revisited our old Netty solution, did some optimizations to it and rolled it out in production. This was a win, it used more memory, but the general performance was much better. One Netty server can currnetly handle around 6000 comet notifications pr. second to around 10.000 clients. The node.js server could handle around 500 pr. sec (so it was at least an 10x improvement).

    Is node.js the best Comet solution?

    I would argue that it is if you just want a working solution ASAP. If you want something that is "web-scale" then Java+java.nio is the way to go (or C/C++). Remember that node.js served us well for the past 8 months serving millions of comet notifications each day. Do also note that I implemented our node.js solution in two days - so it's pretty simple to get something going with node.

    But V8 (the JavaScript VM that node.js uses) has a serious problem and it's following:

    • V8 does not support threads or processes - everything is handled by the main process, even garbage collecting

    This limitation is a smart choice given that V8 is mainly intended to be used in browsers, but it's not that good in server architectures. The problem with our node.js solution is that channel reads and writes and handled by the same process and this generally means that channel writing gets slowed down by channel reading and garbage collecting. Separating them is easy in our Java solution since we can just run the channel writer in it's own thread, but with node.js we can't do this.

    As an end note I am still impressed by node.js and its performance given how young the project is. I wanted to share your experience with it and with comet in general. I hope you find this useful in your comet quest :-)

    Happy hacking.

  • 相关阅读:
    visual studio code 中文
    vue中常用插件(货币、日期)
    PS与CSS字间距转换
    常用css样式(文字超出部分用省略号显示、鼠标经过图片放大、出现阴影)
    swiper在一个页面多个轮播图
    git上传项目
    Win10下安装SVN出现2503/2502解决方法
    关于yii2学习笔记:gii的使用
    nginx反向代理解决跨域
    树莓派4安装centos
  • 原文地址:https://www.cnblogs.com/inteliot/p/2454702.html
Copyright © 2011-2022 走看看