What does HackerNews think of litestream?

Streaming replication for SQLite.

Language: Go

As discussed in the post, the next steps are to add read replicas. Regarding backups, that's possible with Litestream: https://github.com/benbjohnson/litestream
Are you saying litestream is deprecated or some specific feature? I see its very active https://github.com/benbjohnson/litestream
This makes sense, I have experience with and lots of appreciation for SQLite. It's exempliry across many areas of software engineering. Elegant simplicity, not bloated, high performance, broad API library support, amazing 3rd party ecosystem (rqlite [1], litestream [2]). It's wildly nice!

With that said, I've found that I'm a bit hesitant to use SQLite for anything interactive for one silly reason:

It's so hard to query precise date ranges in an ergonomic way interactively. There is no timestamp type, and the general advice I've seen is to use Unix Epoch offsets. This works fine except for exploring.

I keep finding myself desiring porting my SQLite's to PostgreSQL for only the comparatively easy ranged data exploration.

[1] https://github.com/rqlite/rqlite

[2] https://github.com/benbjohnson/litestream

I'm using VACUUM INTO, which does basically that: https://sqlite.org/lang_vacuum.html#vacuuminto

> The VACUUM command with an INTO clause is an alternative to the backup API for generating backup copies of a live database....The VACUUM INTO command is transactional in the sense that the generated output database is a consistent snapshot of the original database.

EDIT: Litestream docs will also recommend that: https://github.com/benbjohnson/litestream.io/issues/56