mirror of
https://github.com/doctrine/orm.git
synced 2026-03-24 06:52:09 +01:00
DDC-1682: EntityManager::clear() not working as expected. #2114
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @doctrinebot on GitHub (Mar 5, 2012).
Originally assigned to: @beberlei on GitHub.
Jira issue originally created by user gcaseres:
I've been reading Doctrine2 Batch Processing documentation.
I've a simplified the code and made a sample where I'm using a Repository inside the loop:
I expect that this script will consume some constant memory in all iterations, but what happens is that every iteration raises memory consumption (more iterations, more memory).... i think that the clear method has some sort of memory leak.
In my production environment (with complex script), i reach a memory limit exception even with 600MB limit... but if I clear the EntityManager on every iteration, shouldn't memory be freed?
Sorry for my bad english.
@doctrinebot commented on GitHub (Mar 6, 2012):
Comment created by @beberlei:
You are probably running symfony2 in debug mode? Is the SQL logger enabled? This is probably not a Doctrine problem but something in your code / Symfony that keeps increasing the memory.
@doctrinebot commented on GitHub (Mar 6, 2012):
Comment created by gcaseres:
I've executed the script in debug and prod mode, but I had the same problem in both modes.
I don't think it's a Symfony problem because I had measured memory consumption only before, after and inside the for loop (no symfony methods involved).
About my code, I'm using simple clases with no business code, only simple Doctrine mappings (and standard repository).
Have you tested a similar code? I don't understand why memory consumption continues raising if I'm "destroying" the objects.
I tried with gc_enable and gc_collect_cycles but no success... every iteration increases memory consumption like if the previous loaded objects weren't destroyed... maybe the repository is instancing other objects in every find call that are not destroyed?
@doctrinebot commented on GitHub (Mar 6, 2012):
Comment created by @beberlei:
are you using lifecycle listeners? access global state or something?
@doctrinebot commented on GitHub (Mar 11, 2012):
Comment created by @beberlei:
Can you generate an xdebug trace for some of the $i's ? say 100 and 1000 with xdebug_start_trace("/tmp/loop".$i); and xdebug_stop_trace(); and upload them? Maybe you can compare yourself, where in the loop the memory increases and if clear even empties it or not.
@doctrinebot commented on GitHub (Apr 1, 2012):
Comment created by @ocramius:
Any news about this one? There's been more than one case where the Symfony data collector (for debug) caused problems like this one... Imo this is not a ORM issue.
@doctrinebot commented on GitHub (May 27, 2012):
Comment created by @beberlei:
No feedback given.
@doctrinebot commented on GitHub (May 27, 2012):
Issue was closed with resolution "Incomplete"
@doctrinebot commented on GitHub (Aug 28, 2012):
Comment created by mvrhov:
I've been debugging a similar issue today. And Yes, the culprit is the Symfony's data collector. Running the command with --no-debug worked like a charm.
@doctrinebot commented on GitHub (Apr 15, 2013):
Comment created by pourquoi:
same issue here with 2.2.3, php 5.4 & symfony 2.1
have a symfony command running as deamon with --no-debug and no listeners
while(true) {
$q = $this->em->createQueryBuilder()->select()...->getQuery();
$results = $q->getResult(AbstractQuery::HYDRATE_ARRAY); // commenting this line resolve the memory leak
$this->em->clear();
gc_collect_cycles(); // with or without does not change the issue
}
the consecutive traces shows that memory does not reduce after clear()
@doctrinebot commented on GitHub (Apr 15, 2013):
Comment created by @ocramius:
[~pourquoi] please check this in insulation (without Symfony2 if possible)
@doctrinebot commented on GitHub (Apr 15, 2013):
Comment created by @beberlei:
this may be array hydrator related, not sure that may not cause problems.
@doctrinebot commented on GitHub (Apr 16, 2013):
Comment created by pourquoi:
without symfony:
output:
Am I missing something?
@doctrinebot commented on GitHub (Apr 16, 2013):
Comment created by @ocramius:
Memory usage here seems quite constant (the change from 7978568 to 11474520 may well be because of metadata and hydrators). The output doesn't seem to be conforming your snippet though.
@doctrinebot commented on GitHub (Apr 16, 2013):
Comment created by pourquoi:
yes sorry the above output is for:
with
the output is:
and goes on
@doctrinebot commented on GitHub (Apr 17, 2013):
Comment created by stof:
Do you have bidirectional relations in your user entity ? If yes, you will still have some references to the object after clearing the EntityManager (in the related object, itself reference by the user)
@doctrinebot commented on GitHub (Jun 25, 2014):
Comment created by brunolemos:
Fixed it by doing the following:
$this
->_em
->getConnection()
->getConfiguration()
->setSQLLogger(null);
@darius-v commented on GitHub (Sep 10, 2024):
does not help for me, memory usage keeps increasing
@derrabus commented on GitHub (Sep 10, 2024):
@darius-v This issue has been closed for over ten years. If you're looking for support, try our discussions board instead.