Relative Content

Tag Archive for node.jsperformanceprofiling

Observing waiting tasks while profiling nodejs

A node.js back end is experiencing some speed issues and I’m trying to investigate. The back end is actually lightweight and the call having the issues is mostly performing a GET request to another service, getting a stream out of it and sending it back, chunk by chunk, to the client, while doing some light processing to each chunk (think of: O(n) on the size of the chunk). So, it’s very I/O bound.