logoalt Hacker News

quotemstrtoday at 9:09 PM3 repliesview on HN

SQLite here is okay, but DuckDB or LevelDB would be better. Either way, no need to invent a new storage format.


Replies

e2letoday at 10:28 PM

Sqlite3 is present in the default installation of most Linux distributions. It has proven itself from years of battle testing in many different environments. To use DuckDB or LevelDB would probably require pulling in an additional dependency.

otterleytoday at 9:27 PM

Neither DuckDB nor LevelDB existed when journald was created. Not to say it couldn't be done today, but just some historical context.

ElectricalUniontoday at 9:33 PM

No duckdb (or parquet). If you want to avoid writes and write amplification, you really want to avoid re-writing all 122880 rows of a row group every time a single insert happens.

show 1 reply