I've got a Perl program emitting these messages via cron:
recv timed out (60000 ms) at /usr/local/lib/perl/5.8.8/MongoDB/Cursor.pm line 251.
recv timed out (60000 ms) at /usr/local/lib/perl/5.8.8/MongoDB/Cursor.pm line 251.
recv timed out (60000 ms) at /usr/local/lib/perl/5.8.8/MongoDB/Cursor.pm line 251.
I've taken the following steps to mitigate:
Timeouts are not a surprise because the server is under high load. But I would like to smartly capture the timeouts and exit gracefully.
Any suggestions?
UPDATE:
I've determined that the recv timeouts are definitely occurring on the $cursor->next() call.
# doesn't capture
{
local $SIG{__DIE__} = sub { return; };
$doc_ref = $cursor->next();
};
# doesn't capture
eval { $doc_ref = $cursor->next(); };