summaryrefslogtreecommitdiff
path: root/src/cuirass/database.scm
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2018-03-25 00:02:16 +0100
committerLudovic Courtès <ludo@gnu.org>2018-03-25 00:09:33 +0100
commit326264c8e9445cb94d7fb33aab5ef93dc99ffe57 (patch)
tree9addd9840be50de61e31eaee450ba37a58cb2f75 /src/cuirass/database.scm
parentc57fe3622d44ebce49f3c0f3c24b3b9e33f0ac15 (diff)
downloadcuirass-326264c8e9445cb94d7fb33aab5ef93dc99ffe57.tar
cuirass-326264c8e9445cb94d7fb33aab5ef93dc99ffe57.tar.gz
database: Set a 'busy_timeout' to handle concurrent accesses.
Fixes a bug whereby some fibers would get a SQLITE_BUSY exception while accessing the database: see <https://debbugs.gnu.org/cgi/bugreport.cgi?bug=30644#26>. Suggested by Danny Milosavljevic <dannym@scratchpost.org>. * src/cuirass/database.scm (wal-mode): Rename to... (set-db-options): ... this. Add call to 'sqlite-exec' for 'busy_timeout'.
Diffstat (limited to 'src/cuirass/database.scm')
-rw-r--r--src/cuirass/database.scm20
1 files changed, 15 insertions, 5 deletions
diff --git a/src/cuirass/database.scm b/src/cuirass/database.scm
index 2b1d532..d0c169b 100644
--- a/src/cuirass/database.scm
+++ b/src/cuirass/database.scm
@@ -136,9 +136,19 @@ question marks matches the number of arguments to bind."
(reverse! insts)
(loop (cons inst insts))))))))
-(define (wal-mode db)
- "Turn DB in \"write-ahead log\" mode and return it."
+(define (set-db-options db)
+ "Set various options for DB and return it."
+
+ ;; Turn DB in "write-ahead log" mode and return it.
(sqlite-exec db "PRAGMA journal_mode=WAL;")
+
+ ;; Install a busy handler such that, when the database is locked, sqlite
+ ;; retries until 30 seconds have passed, at which point it gives up and
+ ;; throws SQLITE_BUSY. This is useful when we have several fibers or
+ ;; threads accessing the database concurrently.
+ ;;(sqlite-busy-timeout db (* 30 1000))
+ (sqlite-exec db "PRAGMA busy_timeout = 30000;")
+
db)
(define* (db-init #:optional (db-name (%package-database))
@@ -160,9 +170,9 @@ database object."
;; Use "write-ahead log" mode because it improves concurrency and should
;; avoid SQLITE_LOCKED errors when we have several readers:
;; <https://www.sqlite.org/wal.html>.
- (wal-mode (if (file-exists? db)
- (sqlite-open db SQLITE_OPEN_READWRITE)
- (db-init db))))
+ (set-db-options (if (file-exists? db)
+ (sqlite-open db SQLITE_OPEN_READWRITE)
+ (db-init db))))
(define (db-close db)
"Close database object DB."