Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am working on a CRON job in PHP which has to do a lot of heavy lifting via the database. Think lots and lots of loops.

It executes properly when I limit the data set, but when I run it against the full data set, the script errors out with a simple "Killed" message. set_time_limit is (0) and memory_limit is (-1)

Here is the code section where it consistently dies.

echo "I'm in _getMemberDemographicAttrs\n";
    	if (! empty ( $member_id )) {
    		$query .= ' AND member_id = ' . $member_id;
    	}

    	$result = mysql_query ( $query, $this->_db );
    	if ($result) {
    		while ( $rule = mysql_fetch_assoc ( $result ) ) {
    			$rules [] = $rule;
    		}
    		if (! empty ( $rules )) {
    			mysql_free_result ( $result );
echo "I'm leaving _getMemberDemographicAttrs\n";
    			return $rules;
    		}

The output looks like this:

I'm in _getMemberDemographicAttrs
I'm leaving _getMemberDemographicAttrs
I'm in _getMemberDemographicAttrs
I'm leaving _getMemberDemographicAttrs
I'm in _getMemberDemographicAttrs
Killed

I've never seen this generic "Killed" error message and I'm wondering what is dying.

share|improve this question

1 Answer

up vote 23 down vote accepted

You might be triggering the Linux out-of-memory (OOM) killer. Check dmesg for messages about it. It says which process was killed when this happens.

share|improve this answer
Thank you for this. Spent a while tearing my hair out wondering what was going on. – Gavin Gilmour Aug 29 '11 at 7:46
1  
Thanks for this. I found that Linux was killing the process. I resolved it by reducing the memory limit for PHP in the script, which allowed PHP to manage its memory differently and avoid the crash. – user973810 Aug 22 '12 at 13:36
Thanks. Just what I needed. – marlar Apr 3 at 8:00

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.