[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

Re: [RFC] Conceptual locking procedure for database access [#11511]

From: Keith Bostic <bostic_at_abyssinian.sleepycat.com>
Date: 2004-12-14 19:15:32 CET

> I've been following the thread titled 'Subversion's use of Berkeley DB
> [#11511]', and the problem seems to be: We have no easy way to
> determine if we need to perform recovery, and the only solution we have
> so far is to run recovery every time.

I agree, running recovery every time isn't the right solution.

Your design is pretty much where I ended up as well. A couple
of differences: I used fcntl instead of flock, and built the
file more like a registry, with process IDs of the processes
running in the database environment. I also used an individual
lock for each process, to detect if a process has died in the
database environment.

> I have mapped out a potential locking procedure that would make it
> possible to detect if any process exited uncleanly, and determine if
> recovery needs to be run on the database. It should be implementable
> using POSIX flock() (meaning that it should work on Win32). It should
> also be implementable using fcntl locking, which is NFS-friendly, but
> Win32-hostile.

POSIX 1003.1 requires fcntl, doesn't Win32 support it?

I think I see problems with your design, but I can't say for
sure.

There were places I didn't follow what you were trying to say,
so I may just be wrong -- specifically, there were two sections
labelled "startup", and they were different. It wasn't clear
to me how they were related?

More specifically, I was concerned about the transition from the
exclusive lock to the shared lock. It seems to me that there
was a race in there where a process could end up in the database
environment without the reference set to '1'.

I'm happy to work through this in detail with you, but we might
as well take it offline.

Regards,
--keith

=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
Keith Bostic bostic@sleepycat.com
Sleepycat Software Inc. keithbosticim (ymsgid)
118 Tower Rd. +1-781-259-3139
Lincoln, MA 01773 http://www.sleepycat.com

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org
Received on Tue Dec 14 19:16:41 2004

This is an archived mail posted to the Subversion Dev mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.