moonfire-nvr/guide/schema.md
Scott Lamb f3ddbfe22a track cumulative duration and runs
This is useful for a combo scrub bar-based UI (#32) + live view UI (#59)
in a non-obvious way. When constructing a HTML Media Source Extensions
API SourceBuffer, the caller can specify a "mode" of either "segments"
or "sequence":

In "sequence" mode, playback assumes segments are added sequentially.
This is good enough for a live view-only UI (#59) but not for a scrub
bar UI in which you may want to seek backward to a segment you've never
seen before. You will then need to insert a segment out-of-sequence.
Imagine what happens when the user goes forward again until the end of
the segment inserted immediately before it. The user should see the
chronologically next segment or a pause for loading if it's unavailable.
The best approximation of this is to track the mapping of timestamps to
segments and insert a VTTCue with an enter/exit handler that seeks to
the right position. But seeking isn't instantaneous; the user will
likely briefly see first the segment they seeked to before. That's
janky. Additionally, the "canplaythrough" event will behave strangely.

In "segments" mode, playback respects the timestamps we set:

* The obvious choice is to use wall clock timestamps. This is fine if
  they're known to be fixed and correct. They're not. The
  currently-recording segment may be "unanchored", meaning its start
  timestamp is not yet fixed. Older timestamps may overlap if the system
  clock was stepped between runs. The latter isn't /too/ bad from a user
  perspective, though it's confusing as a developer. We probably will
  only end up showing the more recent recording for a given
  timestamp anyway. But the former is quite annoying. It means we have
  to throw away part of the SourceBuffer that we may want to seek back
  (causing UI pauses when that happens) or keep our own spare copy of it
  (memory bloat). I'd like to avoid the whole mess.

* Another approach is to use timestamps that are guaranteed to be in
  the correct order but that may have gaps. In particular, a timestamp
  of (recording_id * max_recording_duration) + time_within_recording.
  But again seeking isn't instantaneous. In my experiments, there's a
  visible pause between segments that drives me nuts.

* Finally, the approach that led me to this schema change. Use
  timestamps that place each segment after the one before, possibly with
  an intentional gap between runs (to force a wait where we have an
  actual gap). This should make the browser's natural playback behavior
  work properly: it never goes to an incorrect place, and it only waits
  when/if we want it to. We have to maintain a mapping between its
  timestamps and segment ids but that's doable.

This commit is only the schema change; the new data aren't exposed in
the API yet, much less used by a UI.

Note that stream.next_recording_id became stream.cum_recordings. I made
a slight definition change in the process: recording ids for new streams
start at 0 rather than 1. Various tests changed accordingly.

The upgrade process makes a best effort to backfill these new fields,
but of course it doesn't know the total duration or number of runs of
previously deleted rows. That's good enough.
2020-06-09 16:17:32 -07:00

11 KiB

Moonfire NVR Schema Guide

This document has notes about the Moonfire NVR storage schema. As described in README.md, this consists of two kinds of state:

  • a SQLite database, typically <1 GiB. It should be stored on flash if available.
  • the "sample file directory", which holds the actual samples/frames of H.264 video. This should be quite large and typically is stored on a hard drive.

Upgrading

The database schema includes a version number to quickly identify if a the database is compatible with a particular version of the software. Some software upgrades will require you to upgrade the database.

Note that in general upgrades are one-way and backward-incompatible. That is, you can't downgrade the database to the old version, and you can't run the old software on the new database. To minimize the corresponding risk, you should save a backup of the old SQLite database and verify the new software works in read-only mode prior to deleting the old database.

Procedure

First ensure there is sufficient space available for four copies of the SQLite database:

  • copy 1: the copy to upgrade

  • copy 2: a backup you manually create so that you can restore if you discover a problem while running the new software against the upgraded database in read-only mode. If disk space is tight, you can save this to a different filesystem than the primary copy.

  • copies 3 and 4: internal copies made and destroyed by Moonfire NVR and SQLite during the upgrade:

    • during earlier steps, possibly duplicate copies of tables, which may occupy space both in the main database and the journal
    • during the final vacuum step, a complete database copy

    If disk space is tight, and you are very careful, you can skip these copies with the --preset-journal=off --no-vacuum arguments to the updater. If you aren't confident in your ability to do this, don't do it. If you are confident, take additional safety precautions anyway:

    • double-check you have the full backup described above. Without the journal any problems during the upgrade will corrupt your database and you will need to restore.
    • ensure you re-enable journalling via pragma journal_mode = wal; before using the upgraded database, or any problems after the upgrade will corrupt your database. The upgrade procedure should do this automatically, but you will want to verify by hand that you are no longer in the dangerous mode.

Next ensure Moonfire NVR is not running and does not automatically restart if the system is rebooted during the upgrade. If you are using systemd with the service name moonfire-nvr, you can do this as follows:

$ sudo systemctl stop moonfire-nvr
$ sudo systemctl disable moonfire-nvr

The service takes a moment to shut down; wait until the following command reports that it is not running:

$ sudo systemctl status moonfire-nvr

Then back up your SQLite database. If you are using the default path, you can do so as follows:

$ sudo -u moonfire-nvr cp /var/lib/moonfire-nvr/db/db{,.pre-upgrade}

By default, the upgrade command will reset the SQLite journal_mode to delete prior to the upgrade. This works around a problem with journal_mode = wal in older SQLite versions, as documented in the SQLite manual for write-ahead logging:

WAL works best with smaller transactions. WAL does not work well for very large transactions. For transactions larger than about 100 megabytes, traditional rollback journal modes will likely be faster. For transactions in excess of a gigabyte, WAL mode may fail with an I/O or disk-full error. It is recommended that one of the rollback journal modes be used for transactions larger than a few dozen megabytes. Beginning with version 3.11.0 (2016-02-15), WAL mode works as efficiently with large transactions as does rollback mode.

Run the upgrade procedure using the new software binary (here referred to as new-moonfire-nvr; if you are installing from source, you may find it as target/release/moonfire-nvr).

$ sudo -u moonfire-nvr new-moonfire-nvr upgrade

Then run the system in read-only mode to verify correct operation:

$ sudo -u moonfire-nvr new-moonfire-nvr run --read-only

Go to the web interface and ensure the system is operating correctly. If you detect a problem now, you can copy the old database back over the new one. If you detect a problem after enabling read-write operation, a restore will be more complicated.

Then install the new software to the path expected by your systemd configuration and start it up:

$ sudo install -m 755 new-moonfire-nvr /usr/local/bin/moonfire-nvr
$ sudo systemctl enable moonfire-nvr
$ sudo systemctl start moonfire-nvr

Hopefully your system is functioning correctly. If not, there are two options for restore; neither are easy:

  • go back to your old database. There will be two classes of problems:
    • If the new system deleted any recordings, the old system will incorrectly believe they are still present. You could wait until all existing files are rotated away, or you could try to delete them manually from the database.
    • if the new system created any recordings, the old system will not know about them and will not delete them. Your disk may become full. You should find some way to discover these files and manually delete them.
  • undo the changes by hand. There's no documentation on this; you'll need to read the code and come up with a reverse transformation.

Once you're confident of correct operation, delete the unneeded backup:

$ sudo systemctl rm /var/lib/moonfire-nvr/db/db.pre-upgrade

Unversioned to version 0

Early versions of Moonfire NVR (prior to 2016-12-20) did not include the version information in the schema. You can manually add this information to your schema using the sqlite3 commandline. This process is backward compatible, meaning that software versions that accept an unversioned database will also accept a version 0 database.

Version 0 makes two changes:

  • it adds schema versioning, as described above.
  • it adds a column (video_sync_samples) to a database index to speed up certain operations.

There's a special procedure for this upgrade. The good news is that a backup is unnecessary; there's no risk with this procedure.

First ensure Moonfire NVR is not running as described in the general procedure above.

Then use sqlite3 to manually edit the database. The default path is /var/lib/moonfire-nvr/db/db; if you've specified a different --db_dir, use that directory with a suffix of /db.

$ sudo -u moonfire-nvr sqlite3 /var/lib/moonfire-nvr/db/db
sqlite3>

At the prompt, run the following commands:

begin transaction;

create table version (
  id integer primary key,
  unix_time integer not null,
  notes text
);

insert into version values (0, cast(strftime('%s', 'now') as int),
                            'manual upgrade to version 0');

drop index recording_cover;

create index recording_cover on recording (
  camera_id,
  start_time_90k,
  duration_90k,
  video_samples,
  video_sample_entry_id,
  sample_file_bytes
);

commit transaction;

When you are done, you can restart the service via systemctl and continue using it with your existing or new version of Moonfire NVR.

Version 0 to version 1

Version 1 makes several changes to the recording tables and indices. These changes allow overlapping recordings to be unambiguously listed and viewed. They also reduce the amount of I/O; in one test of retrieving playback indexes, the number of (mostly 1024-byte) read syscalls on the database dropped from 605 to 39.

The general upgrade procedure applies to this upgrade.

Version 1 to version 2 to version 3

This upgrade affects the sample file directory as well as the database. Thus, the restore procedure written above of simply copying back the database is insufficient. To do a full restore, you would need to back up and restore the sample file directory as well. This directory is considerably larger, so consider an alternate procedure of crossing your fingers, and being prepared to start over from scratch if there's a problem.

Version 2 represents a half-finished upgrade from version 1 to version 3; it is never used.

Version 3 adds over version 1:

  • user authentication
  • recording of sub streams (splits a new stream table out of camera)
  • a per-stream knob flush_if_sec meant to reduce database commits (and thus SSD write cycles). This improves practicality of many streams.
  • support for multiple sample file directories, to take advantage of multiple hard drives (or multiple RAID volumes).
  • an interlock between database and sample file directories to avoid various mixups that could cause data integrity problems.
  • recording the RFC-6381 codec associated with a video sample entry, so that logic for determining this is no longer needed as part of the database layer.
  • a simpler sample file directory layout in which files are represented by the same sequentially increasing id as in the database, rather than a separate uuid which has to be reserved in advance.
  • additional timestamp fields which may be useful in diagnosing/correcting time jumps/inconsistencies.

Version 3 to version 4 to version 5

This upgrade affects the SQLite database and the sample file directory's meta files.

Version 4 represents a half-finished upgrade from version 3 to version 5.

Version 5 adds over version 3:

  • permissions for users and sessions. Existing users will have only the view_video permission, matching their previous behavior.
  • the signals schema, used to store status of signals such as camera motion detection, security system zones, etc. Note that while the schema is stable for now, there's no support yet for configuring signals via the moonfire-nvr config subcommand.
  • the ability to recover from a completely full sample file directory (#65) without manual intervention.

Version 6 (under development on the new-schema branch)

This upgrade affects only the SQLite database.

Version 6 adds over version 5:

  • metadata about the pixel aspect ratio to properly support anamorphic "sub" streams.
  • hashes in Blake3 rather than older SHA-1 (for file integrity checksums) or Blake2b (for sessions).
  • a preliminary schema for object detection.
  • for each recording row, the cumulative total duration and "runs" recorded before it on that stream. This is useful for MediaSourceExtension-based web browser UIs when setting timestamps of video segments in the SourceBuffer.

On upgrading to this version, sessions will be revoked.