Replies: 1 comment 3 replies
-
If you run Litestream as a sidecar (as this seems to be compose) you must ensure the application SQLite doesn't roll in the WAL file which happens automatically when the last connection to the database is closed. To prevent that from happening in sidecar mode your application needs to open the database with SQLITE_FCNTL_PERSIST_WAL option. That might be hard to do as it's a very low level setting. The easier approach is to use |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I try to backup a database on a S3-compatible storage. When I start a docker container with litestream, I obtain this error:
On object storage, I find some backup files like
What "cannot determinate replica position error" message means and how can I solve it ?
Thanks for your help
Beta Was this translation helpful? Give feedback.
All reactions