Clean up expired django.contrib.session\'s in a huge MySQL InnoDB table


/ Published in: Django
Save to your folder(s)

While django provides the django_admin.py cleanup script, if sessions get out of control sometimes you have to go lower level to get everything cleaned up. If the problem gets out of hand and you hit the resource limits of the machine, it is very difficult to get anything done in the database.

Attached is SQL code which was used to cleanup 27GB of expired session data in 3h. Run it like this to make sure it runs to completion:

`nohup mysql --user=username --password=password --host=hostname database < delete_expired_sessions.sql`

nohup causes the script to run detached from a terminal, so if your session gets disconnected it will keep running.

p.s.
An alternative approach is to launch this command from the shell:

DELETE FROM django_session WHERE expire_date < NOW();

or

DELETE FROM django_session WHERE expire_date < "2011-12-10 00:00:00";


Copy this code and paste it in your HTML
  1. DROP TABLE IF EXISTS `django_session_cleaned`;
  2. CREATE TABLE `django_session_cleaned` (
  3. `session_key` varchar(40) NOT NULL,
  4. `session_data` longtext NOT NULL,
  5. `expire_date` datetime NOT NULL,
  6. PRIMARY KEY (`session_key`)
  7. ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
  8.  
  9. INSERT INTO `django_session_cleaned` SELECT * FROM `django_session` WHERE `expire_date` > CURRENT_TIMESTAMP;
  10.  
  11. RENAME TABLE `django_session` TO `django_session_old_master`, `django_session_cleaned` TO `django_session`;
  12.  
  13. DROP TABLE `django_session_old_master`;

URL: http://djangosnippets.org/snippets/1273/

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.