Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

There are a lot of settings that can be used in H2 database. AUTO_SERVER, MVCC, LOCK_MODE, FILE_LOCK and MULTI_THREADED. I wonder what combination works best for high concurrency setup e.g. one thread is doing INSERTs and another connection does some UPDATEs and SELECTs?

I tried MVCC=TRUE;LOCK_MODE=3lFILE_LOCK=NO but whenever I do some UPDATEs in one connection, the other connection does not see it even though I commit it. By the way the connections are from different processes e.g. separate program.

share|improve this question

1 Answer

I cannot reproduce your findings with MVCC=TRUE and the default LOCK_MODE, but FILE_LOCK=NO "is unsafe as another process is able to open the same database, possibly leading to data corruption." See also File Locking Protocols. Do your existing tests suggest a problem with the default settings?

Addendum: Although I haven't used it, your subsequent results seem consistent with the documented behavior of AUTO_SERVER, described in Automatic Mixed Mode. The feature appears to permit fast embedded mode access with periodic remote access, as for maintenance.

share|improve this answer
well...its just really weird because now its ok...however, i came up with another problem. I have 3 connections open. One from my application, one from a 3rd party database browser and one is H2 Console. Im using settings AUTO_COMMIT=TRUE;FILE_MODE=3;MVCC=TRUE;AUTO_SERVER=TRUE. I try to bulk DELETE (just 600 rows) in one of the connections and now my other two connections can not access the database with just SELECTs, I cant even get a response on "Test Connection" of H2 Console. Is this the expected behaviour? – dexter May 3 '10 at 6:50
I've elaborated above. Also check that your connect strings are consistent after restart. – trashgod May 3 '10 at 16:26

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.