隐秘节点勾选结果 - CPU占用100%

时间:2015-01-23 19:41:09

标签: node.js socket.io profiling

所以我对我正在编写的应用程序遇到了一些麻烦。该应用程序是一个简单的中继服务器,使用Socket.IO和Node。一切都很好,但当它负载很重时,这个过程会达到100%的CPU并保持不变。

我在它上面运行了一个节点,这就是结果



Statistical profiling result from v8.log, (83336 ticks, 0 unaccounted, 0 excluded).

 [Shared libraries]:
   ticks  total  nonlib   name
  83220   99.9%    0.0%  /lib/x86_64-linux-gnu/libc-2.19.so
     97    0.1%    0.0%  /usr/bin/nodejs
      9    0.0%    0.0%  /lib/x86_64-linux-gnu/libpthread-2.19.so

 [JavaScript]:
   ticks  total  nonlib   name
      1    0.0%   10.0%  Stub: FastNewClosureStub
      1    0.0%   10.0%  Stub: CallConstructStub_Recording
      1    0.0%   10.0%  LazyCompile: ~stringify native json.js:308
      1    0.0%   10.0%  LazyCompile: ~hash /opt/connect/node/node_modules/sticky-session/lib/sticky-session.js:4
      1    0.0%   10.0%  LazyCompile: ~exports.dirname path.js:415
      1    0.0%   10.0%  LazyCompile: ~buildFn /opt/connect/node/node_modules/socket.io-redis/node_modules/msgpack-js/node_modules/bops/read.js:5
      1    0.0%   10.0%  LazyCompile: ~addListener events.js:126
      1    0.0%   10.0%  LazyCompile: ~ToObject native runtime.js:567
      1    0.0%   10.0%  LazyCompile: *setTime native date.js:482
      1    0.0%   10.0%  LazyCompile: *DefineOneShotAccessor native messages.js:767

 [C++]:
   ticks  total  nonlib   name

 [GC]:
   ticks  total  nonlib   name
      3    0.0%

 [Bottom up (heavy) profile]:
  Note: percentage shows a share of a particular caller in the total
  amount of its parent calls.
  Callers occupying less than 2.0% are not shown.

   ticks parent  name
  83220   99.9%  /lib/x86_64-linux-gnu/libc-2.19.so


 [Top down (heavy) profile]:
  Note: callees occupying less than 0.1% are not shown.

  inclusive      self           name
  ticks   total  ticks   total
  83192   99.8%  83192   99.8%  /lib/x86_64-linux-gnu/libc-2.19.so

    114    0.1%      0    0.0%  Function: ~<anonymous> node.js:27
    113    0.1%      0    0.0%    LazyCompile: ~startup node.js:30
    103    0.1%      0    0.0%      LazyCompile: ~Module.runMain module.js:495
     98    0.1%      0    0.0%        LazyCompile: Module._load module.js:275
     90    0.1%      0    0.0%          LazyCompile: ~Module.load module.js:346
     89    0.1%      0    0.0%            LazyCompile: ~Module._extensions..js module.js:472
     88    0.1%      0    0.0%              LazyCompile: ~Module._compile module.js:374
     88    0.1%      0    0.0%                Function: ~<anonymous> /opt/connect/node/lib/connect.js:1
&#13;
&#13;
&#13;

83220 99.9%0.0%/lib/x86_64-linux-gnu/libc-2.19.so

只有1个库似乎是问题 - 但我可以弄清楚它到底是什么。我的预感是json正在处理 - 但我可以肯定。

之前有没有人遇到过这个问题?

0 个答案:

没有答案