On Tue, Jun 4, 2013 at 8:36 AM, Federico Campoli <feder...@brandwatch.com>wrote:
> > This is the gprof output for the profile. > This looks to me like the gprof of a process that is either idle, or completely IO bound. I'd probably approach this with a combination of "strace -T -ttt -p <PID>" and "lsof -p <PID>" on the PID of the start-up process, to see which file descriptors it is waiting for read or writes on, and what the underlying names of the files for those file descriptors are. Cheers, Jeff