-
Notifications
You must be signed in to change notification settings - Fork 29.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
RFC: bundle tick processor with iojs #158
Comments
would be good if bundled processor is able to consume version different from processor's associated distribution. (Someone email me v8.log, or node version on server that produced log is not the version I have on dev machine) - via command line switch ( for example, another requirement (that's what processor shipped with v8 doesn't do) - don't buffer entire log file and process it as a stream. few minutes of profiling can easily generate gigabytes of v8.log |
@bnoordhuis I don't think there's any distros left that aims to decouple V8 (node/io.js would just be one example package). It's neigh impossible since every binary linking to it usually expects a different version. Since V8 might not be the best example of a consistent ABI, the effort to keep these versions apart is pretty painful. What I've seen done though is building it separately from the ordinary build in order to manage the environment (PaX-marking, specific stuff for arm, etc). I'll go through a few package managers and see if I can find any that still decouples it. As for the npm analogy, I'd say that the primary use for |
That doesn't really work and probably never will, at least not for C/C++ symbols. A lesser issue is that every tick processor version adds about 60 kB, unless you get creative with compression; it's not much but it adds up. It would make for a nice feature once those issues have been worked out but I think it's out of scope for now.
I think Fedora still does; its v8 package is shared between nodejs, mongodb and a few more. |
@bnoordhuis You're right - didn't know that. Seems like they try to pinpoint minor versions. I think their mongodb package illustrates the issues rather well though; they require 3.14+ while upstream recommends either 3.12.x or 3.25.x. It's really tricky and the test suites for packages (node, mongodb, rethinkdb, etc) wouldn't be reliable enough to verify that whatever version [of v8] you have installed is working as intended. Building and using v8 as a shared library is a very fragile situation. When I used to maintain it, build errors were the "best" way of knowing if you had a problem. |
+1 @bnoordhuis @rvagg perhaps this issue can be discussed in your next TC meeting on Dec 17th? |
I'm +1 on this & adding a section to the docs explaining how (and when) to use the profiler. Something to keep in mind re: |
Agreement from TC in today's meeting that this is fine to add. The only cause for concern was in setting a precedent for adding minor functionality like this but it was agreed that this is a special case. |
Sorry, TC minutes are in #178 |
Thanks for doing this. This have always been a major problem when teaching people to solve performance problems. |
@bnoordhuis is this still something that is happening? |
Yes, once I get the quirks (they're not really bugs) ironed out. |
+1 on this. the tick processor is intimately tied to internal details of node's v8, so makes an excellent candidate for distribution with node, and I have had poor luck with the the npmjs.org module that is supposed to build it. |
+1 for tick processor |
@bnoordhuis For now, what is the right way to profile io.js apps? |
@Olegas I'm currently trying to make https://github.com/sidorares/node-tick work with as much node versions as possible ( iojs, node 0.12 and 0.10.37 now include v8 version in the log so should be possible to do without guessing ) |
@sidorares But is node-tick's output correct? When I try it, it talks that almost all the time the program spent in C++ code of system libraries, but v8-profiler talks different. // Sorry for my English =) |
@Andre-487 which node/io version you tried? I'll double check. It might be incorrect because currently there is only one version of v8.log parser and format is different between v8 version. What I'm working on is that tick processor reads v8 version from the log and then knows hoe to deserialise the rest |
@Andre-487 v8-profiler doesn't profile C++ code. Or rather, it does but it dumps it all in one big bucket named |
@bnoordhuis iwith debug symbols and |
@sidorares I mean v8-profiler, not node-tick. |
@bnoordhuis I thought it's based on the same V8 scripts as node-tick |
To be clear, I'm talking about this module: https://github.com/node-inspector/v8-profiler :-) It uses the C++ API to programmatically start and stop the profiler. The returned profile does not have detailed information for C++ stack frames like |
@sidorares Is there any working way to analyze v8.log visually (i.e. with about://tracing or via exporting to .cpuprofile) |
Looks like I was wrong. I try to profile this script with Node 0.10.37 on the Max OS X 10.10: But on the 0.12.0 it shows this: http://pastebin.com/JVZrQDsY There is no 80% time in system libraries in profile: http://pastebin.com/ZSXekRpg, but 11% in node is questionable. |
See bnoordhuis/node-profiler#11 for background. A recurring issue with CPU profiling with
--prof
is that you either need to build d8 (the V8 shell) or install a tick processor package from npm.The problem with building d8 is that it's quite tedious and frequently broken due to the way V8 is bundled. Installing a tick processor is no picnic either; if it doesn't match the V8 version, it produces bogus output. That isn't currently solvable from user land because the output from the profiler doesn't contain version information and heuristics aren't reliable enough. I'm going to prepare a patch that adds version information but that is a tangential issue. (Update: https://codereview.chromium.org/800293002/)
For ease of use, I propose bundling the tick processor with iojs, either as a standalone JS script (working name:
ioprof
) or by baking it into the binary. The former would be easiest short-term, the latter offers an arguably nicer user experience. I volunteer to do the work.Design decisions:
--without-ioprof
to the configure script, similar to the--without-npm
flag? Assertion without hard data to back it up: no one uses--without-npm
;--without-ioprof
is probably not worth the hassle.--shared-v8
is specified. Maybe @jbergstroem can chime in here.The text was updated successfully, but these errors were encountered: