I am trying insert a document into a Mongo database and have it automatically expire itself after a predetermine time. So far, my document get inserted but always get deleted from the database from 0 - 60 seconds even though I set the 'expireAfterSeconds' to much longer. I know mongodb deletes expired documents about every 60 seconds so it seems the 'expredAfterSeconds' variable is not working.
I followed the documentation here: Mongodb TTL Docs
Here is my test code that should expire (delete) the document after 3 minutes (but it does it under a minute):
import pymongo
import datetimemongo_con = pymongo.Connection('localhost', 27017)
mongo_db = mongo_con.Mongo_database
mongo_col = mongo_db.my_TTL_collectiontimestamp = datetime.datetime.now()mongo_col.ensure_index("date", expireAfterSeconds=3*60) mongo_col.insert({'_id': 'login_session', "date": timestamp, "session": "test session"})
Does anybody have any ideas what the problem is?