Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Can someone think of a way to find out where our rails production server hangs? Its CPU is at 99% so I assume it gets lost in a while/for/each loop. Unfortunately we can't find a candidate loop.

The problem does not occur in development and our test suit now has 100% code coverage.

We were already attaching to Ruby via gdb, but didn't know where to go from there. Any ideas?

share|improve this question
another possibility is memory leaks! – Gaurav Agarwal Feb 9 at 11:37
thanks, memory usage is constant at ~24.5%, before and after the server freezes. – Anno2001 Feb 9 at 11:40
unfortunately the problem occurs only once in every hundred thousand requests. of course we could refeed all those requests and try to find out which one is causing the problem but maybe there is a simpler way. – Anno2001 Feb 9 at 11:41
What about performance tests on development server? Use those dangerous requests that crash your production server. – megas Feb 9 at 12:28
have you tried using new relic? – Nick Ginanto Feb 9 at 13:03
show 2 more comments

2 Answers

up vote 6 down vote accepted

Once you have attached with gdb to the busy looping process then call rb_backtrace from gdb:

> call rb_backtrace()

The output from rb_backtrace will be similar to a crash report, and the output will go to your log files similar to a standard Ruby error backtrace.

From there you should hopefully already be a step closer to the solution since you will see where in your Ruby code the process is stuck.

You can check out some more tips here:
http://isotope11.com/blog/getting-a-ruby-backtrace-from-gnu-debugger

share|improve this answer
1  
wonderful, that helped – Anno2001 Feb 9 at 14:52
1  
!! At those people who down-voted or voted to close this question: if it is your plan to destroy the community you're really succeeding. many of our developer friends are already really angry about the new attitude over here. What would have been the point of closing this question and preventing Casper from kindly helping me and others with this problem?? – Anno2001 Feb 9 at 14:58

This is not a clean solution but at least the following resolved the problem for us: we migrated to the 'thin' webserver and removed 'devise'.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.