Thanks James and Karen, Yes indeed it was the problem, I updated the my.cnf to have transaction_isolation set to READ-COMMITTED and it works fine now. Is there any benefit of this approach of the other (connection autocommit) i.e. performance-wise ?
-Aaron On Sat, Apr 25, 2009 at 7:24 AM, Karen Tracey <kmtra...@gmail.com> wrote: > On Sat, Apr 25, 2009 at 5:07 AM, Aaron Lee <waifun...@gmail.com> wrote: > >> Today I just stumble upon a very strange bug and I am not sure if that's >> Django bug or not. >> >> Here's the context: >> I have a model Job which has a status field. >> >> For debugging, I run python manage.py shell and do >> >> jobs = Job.objects.filter(status__in=['A']) >> >> *I am using MySQL 5.0 InnoDb* >> >> Re-running this command will NOT get updated result even if a new job with >> status 'A' is inserted to the DB (I explicitly turned off buffer_pool cache >> and no query cache) >> I then open another terminal and do python manage.py shell and run this >> command and I got the newly updated result set. >> > > This is due to InnoDB's default transaction isolation level of "repeatable > read" combined with Django's default autocommit behavior that does not > "commit" queries. So your manage.py shell is running in a single > transaction that is not committed until you do some sort of update from it, > meaning (in the absence of any update) that all queries will return whatever > they returned the first time you ran them. See this thread: > > > http://groups.google.com/group/django-users/browse_thread/thread/e25cec400598c06d > > for details on how to change either the transaction isolation level or the > connection's autocommit setting to allow a query-only script/shell to see > updates made by a different transaction. > > Karen > > > > --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---