[Python-bugs-list] [ python-Bugs-522780 ] bsddb keys corruption

noreply@sourceforge.net noreply@sourceforge.net
Wed, 06 Nov 2002 10:09:39 -0800


Bugs item #522780, was opened at 2002-02-26 02:49
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=105470&aid=522780&group_id=5470

Category: Extension Modules
Group: Python 2.2
Status: Open
Resolution: None
Priority: 5
Submitted By: Marc Conley (mconley)
Assigned to: Nobody/Anonymous (nobody)
Summary: bsddb keys corruption

Initial Comment:
I'm having a problem with either the keys() function 
returning invalid information or the database getting 
corrupted or something along those lines. This is what 
I keep seeing occasionally during my development:

Python 2.2 (#28, Dec 21 2001, 12:21:22) [MSC 32 bit 
(Intel)] on win32
Type "help", "copyright", "credits" or "license" for 
more information.
>>> import bsddb
>>> db = bsddb.hashopen("test.db")
>>> db.keys()
['192.168.0.1799']
>>> db["192.168.0.1799"]
Traceback (most recent call last):
  File "<stdin>", line 1, in ?
KeyError: 192.168.0.1799
>>>

The lines of importance are the return value for 
db.keys() and then the traceback. Note that the db.keys
() returns a value that I immediately try to access 
and get a KeyError in so doing.

This happens in a program with multiple threads but 
for which I am using a threading.Lock acquire() and 
release() around all database/bsddb accesses. I am 
also using sync()s after all write operations.

The key value, by the way, should be 192.168.0.179. It 
is consistently, on several different occasions, 
getting the extra "9" appended to the end of it. This 
same problem has occurred 3 times during testing.




----------------------------------------------------------------------

>Comment By: Gustavo Niemeyer (niemeyer)
Date: 2002-11-06 18:09

Message:
Logged In: YES 
user_id=7887

Marc, could you please provide a testcase, as stated below?  
   

----------------------------------------------------------------------

Comment By: Christos Georgiou (tzot)
Date: 2002-09-10 11:42

Message:
Logged In: YES 
user_id=539787

What does the following produce as output in the above example?

>>> db[db.keys()[0]]

If that fails, you most surely have key corruption.  If not,
then please come back with a standalone script that displays
erratic behaviour.

----------------------------------------------------------------------

You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=105470&aid=522780&group_id=5470