mirror of
https://github.com/blakeblackshear/frigate.git
synced 2026-02-05 18:55:23 +03:00
Set DB mode to NORMAL synchronous level
This commit is contained in:
parent
bfbe99bc65
commit
183b1e7126
@ -209,7 +209,8 @@ class FrigateApp:
|
|||||||
self.config.database.path,
|
self.config.database.path,
|
||||||
pragmas={
|
pragmas={
|
||||||
"auto_vacuum": "FULL", # Does not defragment database
|
"auto_vacuum": "FULL", # Does not defragment database
|
||||||
"cache_size": -512 * 1000, # 512MB of cache
|
"cache_size": -512 * 1000, # 512MB of cache,
|
||||||
|
'synchronous': 'NORMAL', # Safe when using WAL https://www.sqlite.org/pragma.html#pragma_synchronous
|
||||||
},
|
},
|
||||||
timeout=60,
|
timeout=60,
|
||||||
)
|
)
|
||||||
|
|||||||
@ -42,6 +42,7 @@ def manage_recordings(
|
|||||||
pragmas={
|
pragmas={
|
||||||
"auto_vacuum": "FULL", # Does not defragment database
|
"auto_vacuum": "FULL", # Does not defragment database
|
||||||
"cache_size": -512 * 1000, # 512MB of cache
|
"cache_size": -512 * 1000, # 512MB of cache
|
||||||
|
'synchronous': 'NORMAL', # Safe when using WAL https://www.sqlite.org/pragma.html#pragma_synchronous
|
||||||
},
|
},
|
||||||
timeout=60,
|
timeout=60,
|
||||||
)
|
)
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user