shelve, segfault and bsddb.db.DBPageNotFoundError: (-30987,

G

Gabriel Rossetti

Hello everyone, I get the following error with the shelve module (python
2.5.2) sometimes :
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/usr/lib/python2.5/UserDict.py", line 167, in __repr__
return repr(dict(self.iteritems()))
File "/usr/lib/python2.5/UserDict.py", line 105, in iteritems
for k in self:
File "/usr/lib/python2.5/UserDict.py", line 92, in __iter__
for k in self.keys():
File "/usr/lib/python2.5/shelve.py", line 92, in keys
return self.dict.keys()
File "/usr/lib/python2.5/bsddb/__init__.py", line 252, in keys
return _DeadlockWrap(self.db.keys)
File "/usr/lib/python2.5/bsddb/dbutils.py", line 62, in DeadlockWrap
return function(*_args, **_kwargs)
bsddb.db.DBPageNotFoundError: (-30987, 'DB_PAGE_NOTFOUND: Requested page
not found')

This must mean that my file is currupt, correct? If I do the following I
get a segfault :
Segmentation fault

Is this a bug? So as a workaround I must do something like this :

s = shelve.open("save.dat", writeback=True)
try:
s.keys()
except bsddb.db.DBPageNotFoundError, e:
os.remove("save.dat")
s = shelve.open("save.dat", writeback=True)

Any other ideas/comments? Does anyone else have this problem?

Thanks,
Gabriel
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,769
Messages
2,569,580
Members
45,054
Latest member
TrimKetoBoost

Latest Threads

Top