You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@dwsupplee tracked the issue down to this change. When I remove the calls to stream_set_chunk_size in the handler, the OOM error disappears.
I don't know the proper solution, if this change should just be reverted, or if we should do something to ensure the memory limit is less than the chunk size... maybe there's some specific handling necessary for tmpfile? Either way, this is a pretty nasty error so any help is appreciated!
The text was updated successfully, but these errors were encountered:
Monolog version 2 (only on 2.3.0+)
Error:
PHP Fatal error: Allowed memory size of 2147483648 bytes exhausted (tried to allocate 2147483647 bytes) in...
This can be recreated with the following file (note the php ini setting
memory_limit=2048M
):@dwsupplee tracked the issue down to this change. When I remove the calls to
stream_set_chunk_size
in the handler, the OOM error disappears.I don't know the proper solution, if this change should just be reverted, or if we should do something to ensure the memory limit is less than the chunk size... maybe there's some specific handling necessary for
tmpfile
? Either way, this is a pretty nasty error so any help is appreciated!The text was updated successfully, but these errors were encountered: