有个写的脚本是crontab每分钟运行一次的,后来发现脚本运行有问题,于是查找log。log显示脚本一分钟运行一次是没问题的,但有时出现Fatal Error => Out of memory (allocated %ld) at %s:%d (tried to allocate %ld bytes)。
瞬间认为是memory_limit 参数的设置问题,于是果断ini_set设置memory_limit为512M。提交后查看log,发现依旧有这个错误。这就比较尴尬了,我回忆了下memory_limit的错误提示,好像确实不是这个,那就百度一下吧。
经过一阵百度,关于这个错误有答案的回答都建议ini_set('limit_memory','1024M'),或者是在php.ini设置linit_memory重启。那这就又尴尬了。。。。没办法,我只能
cd php-5.5.13/Zend;
grep "Out of memory" -R -n .
定位到了zend_alloc.c的第1992行和第2304行。
第一个函数是 _zend_mm_alloc_int 第二个函数是 _zend_mm_realloc_int。看名字这两个函数是分配内存的。接着定位到下面这一段。
//当real_size (Zend 已经分配的内存大小) segment_size(这次要分配的segment的大小) 加起来大于 heap->limit
//报 Allowed memory size 错误,这里 heap->limit 参数就是设置的memory_limit
if (segment_size < true>real_size + segment_size > heap->limit) {
/* Memory limit overflow */
#if ZEND_MM_CACHE
zend_mm_free_cache(heap);
#endif
HANDLE_UNBLOCK_INTERRUPTIONS();
#if ZEND_DEBUG
zend_mm_safe_error(heap, "Allowed memory size of %ld bytes exhausted at %s:%d (tried to allocate %lu bytes)", heap->li
mit, __zend_filename, __zend_lineno, size);
#else
zend_mm_safe_error(heap, "Allowed memory size of %ld bytes exhausted (tried to allocate %lu bytes)", heap->limit, size
);
#endif
}
segment = (zend_mm_segment *) ZEND_MM_STORAGE_ALLOC(segment_size);
//这里当上一步的 ZEND_MM_STORAGE_ALLOC失败 会报Out of memory错误
//ZEND_MM_STORAGE_ALLOC宏 define ZEND_MM_STORAGE_ALLOC(size) heap->storage->handlers->_alloc(heap->storage, size)
//storage在存储层的操作,相关资料->看这里 http://www.phppan.com/2010/11/php-source-code-30-memory-pool-storage/
//这里就是malloc啦 malloc失败
if (!segment) {
/* Storage manager cannot allocate memory */
#if ZEND_MM_CACHE
zend_mm_free_cache(heap);
#endif
out_of_memory:
HANDLE_UNBLOCK_INTERRUPTIONS();
#if ZEND_DEBUG
zend_mm_safe_error(heap, "Out of memory (allocated %ld) at %s:%d (tried to allocate %lu bytes)", heap->real_size, __ze
nd_filename, __zend_lineno, size);
#else
zend_mm_safe_error(heap, "Out of memory (allocated %ld) (tried to allocate %lu bytes)", heap->real_size, size);
#endif
return NULL;
}
两种错误提示:
1.当segment_size < true>real_size + segment_size > heap->limit 时, heap->limit就是memory_limit的值,如果要用的内存比它大, 会报Allowed memory size of .....,
2.如果没有超过设定的limit,接着ZEND_MM_STORAGE_REALLOC分配segment,当!ZEND_MM_STORAGE_REALLOC(segment_copy, segment_size)时,会报Out of memory。 分配失败,报Out of memory错误。
这里是malloc失败,那么是不是服务器做了什么限制呢,我没有权限登录这台服务器。于是发信去问,各种问过后发现是ulimit限制在125M。修改大后错误消失。
一些参考
http://www.jianshu.com/p/dd0013f28286
http://www.laruence.com/2011/11/09/2277.html