Efficient procedure to maintain a sqlite backend #119
Labels
No labels
bug
documentation
duplicate
enhancement
good first issue
help wanted
invalid
question
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
orinoco/dump-things-server#119
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Right now, the best approach appears to be to have a
record_dircollection, maintain that with regular file system operations (in particular delete records, if needed), and then convert to sqlite when needed.However, this last step appears to be complex -- I suspect because the involved commands depend on the configuration of a service deployment and do not operate just on a backend alone. The procedure I find myself doing is
record_dirbackenddump-things-copy-store record_dir:... sqlite:...This is complex, and it require the server to be restarted, implying some downtime.
How could this be done better?