Readit News logoReadit News
tgtweak · a year ago
No file system attributes or metadata on records which also means no (xattrs/fattrs) being written or updated, no checks to see if it's a physical file or a pipe/symlink, no permission checks, no block size alignment mismatches, single open command.

Makes sense when you consider you're throwing out functionality and disregarding general purpose design.

If you use a fuse mapping to SQLite, mount that directory and access it, you'd probably be very similar performance (perhaps even slower) and storage use as you'd need to add additional columns in the table to track these attributes.

I have no doubt that you could create a custom tuned file system on a dedicated mount with attributes disabled, minimized file table and correct/optimized block size and get very near to this perf.

Let's not forget the simplicity of being able to use shell commands (like rsync) to browse and manipulate those files without running the application or an SQL client to debug.

Makes sense for developers to use SQLite for this use case though for an appliance-type application or for packaged static assets (this is already commonplace in game development - a cab file is essentially the same concept)

pas · a year ago
> tuned FS + dedicated mount

For example, Ceph uses RocksDB as their metadata DB (and it's recommend to put it) directly on a block device, with the WAL on yet another separate raw device

https://docs.ceph.com/en/latest/rados/configuration/bluestor...

tgtweak · a year ago
More just this:

mke2fs -t ext4 -b 1024 -N 100000 -O ^has_journal,^uninit_bg,^ext_attr,^huge_file,^64bit [/dev/sdx]

(smaller block size, 100,000 inode file table entries (tuned to the number of blobs), no journal, no checksumming, no extended file attributes, use smaller integer file offset IDs, 32 bit padded vs 64 bit)

Then mount it and run the same test.

You could go even further and tune fopen BUFSIZE to be no greater than 12,000 bytes. You can even create this mount on a file inside your existing mount... which is essentially akin to having an sqlite file without needing a client library to read/write to it.

Anyway - if the purpose is to speed up reads and save disk space on small blob files, there is little need to ditch the file system and it's many many upsides.

lolinder · a year ago
> If you use a fuse mapping to SQLite, mount that directory and access it

Related ongoing discussion, if someone cares to test this:

https://news.ycombinator.com/item?id=41085856

theGeatZhopa · a year ago
Some nice write up on this topic, although not the resolution of all discussion. But rather hints and guesses to keep it alive :)

https://unixdigest.com/articles/battle-testing-php-fopen-sql...

Has been on HN lately..

lc64 · a year ago
That's a very rigorously written article.

Let's also note the 4x speed increase on windows 10, once again underlining just how slow windows filesystem calls are, when compared to direct access, and other (kernel, filesystem) combinations.

wolfi1 · a year ago
maybe the malware detection program adds to the performance as well
cjblomqvist · a year ago
NTFS is really horrible handling many small files. When compiling/watching node modules (easily 10-100k files), we've seen a 10x size difference internally (same hardware, just different OSes). At some point that meant a compile time difference of 10-30 sec vs 6-10 min. Not fun.
chefandy · a year ago
Their "windows dev drive" setup addresses this. I haven't tested it myself but I saw a couple of inexpertly executed tests showing significant performance gains. I honestly have no idea if my compile times are quicker.

Deleted Comment

OttoCoddo · a year ago
With the right code, NTFS is not much slower than ext4, for example. Nearly 3% for tar.gz and more than 30% for a heavily multi-threaded use like Pack.

https://forum.lazarus.freepascal.org/index.php/topic,66281.m...

alexhornby · a year ago
https://news.ycombinator.com/item?id=18783525 has previous discussion on why windows filesystem is slow
nextaccountic · a year ago
But is it faster than accessing the filesystem with io_uring as well? I feel like this article should be updated
nullindividual · a year ago
io_uring/IOCP won't change how long it takes to access a file.

Deleted Comment

robertclaus · a year ago
I did some research in a database research lab, and we had a lot of colleagues working on OS research. It was always interesting to compare the constraints and assumptions across the two systems. I remember one of the big differences was the scale of individual records we expected to be working with, which in turn affected how memory and disk was managed. Most relational databases are very much optimized for small individual records and eventual consistency, which allows them to cache a lot more in memory. On the other hand, performance often drops sharply with the size of your rows.
_xnmw · a year ago
This is precisely why I'm considering appending to a sqlite DB in WAL2 mode instead of plain text log files. Almost no performance penalty for writes but huge advantages for reading/analysis. No more Grafana needed.
growse · a year ago
Careful, some people will be along any second pointing out your approach limits your ability to use "grep" and "cat" on your log after recovering it to your pdp-11 running in your basement. Also something about the "Unix philosophy" :p

Seriously though, I think this is a great idea, and would be interested in how easy it is to write sqlite output adaptors for the various logging libraries out there.

wiseowise · a year ago
> some people will be along any second pointing out your approach limits your ability to use "grep" and "cat" on your log

And they won’t be wrong.

mhio · a year ago
How would you tail or watch a sqlite log? (on a pdp-11 if necessary :)
raverbashing · a year ago
> Careful, some people will be along any second pointing out your approach limits your ability to use "grep" and "cat" on your log after recovering it

I wish Splunk and friends would have an interface like that. Sure it does basic grep, and it is a much more powerful language, but sometimes you just needed some command line magic to find what you wanted.

sreitshamer · a year ago
Is there a way to mount the sqlite tables as a filesystem?
bob1029 · a year ago
I've been doing this for years. I keep SQLite log databases at varying grains depending on the solution. One for global logs, one per user/session/workflow, etc. I've also done things like in-memory SQLite trace databases that only get written to disk if an exception occurs.
illusive4080 · a year ago
I didn’t know what WAL/WAL2 mode was, so I looked it up. For anyone else interested: https://www.sqlite.org/wal.html
slyall · a year ago
Some people have thought of this before. Here is one implementation

https://git.sr.ht/~martijnbraam/logbookd

Although I'm not sure it uses WAL2 mode, but that should be a trivial change.

mbirth · a year ago
There’s a tool called lnav that will parse logfiles into a temporary SQLite database and allows to analyse them using SQL features:

https://lnav.org/

01HNNWZ0MV43FF · a year ago
It could probably work. For a peculiar application I even used sqlite to record key frame-only video. (There was a reason)

One could flip it around and store logs in a multimedia container, but then you won't have nice indices like with sqlite, just the one big time index

ngrilly · a year ago
Are you using the wal2 branch of SQLite?
citrin_ru · a year ago
SQLite doesn't look like a good fit for large logs - nothing can beat liner write at least on HDD and with plain text logs you will have it (though linear write of compressed data even better but rare software supports it out of the box). With SQLite I would expect more write requests for the same stream of logs (may be not much more). Reading analysis will be faster than using grep over plain text log only if you'll create indices which add write cost (and space overhead).

ClikcHouse works really well when you need to store and analyze large logs but compare to SQLite it would require to maintain a server(s). There is DuckDB which is embedded like SQLite and it could be a better than SQLite fit for logs but I have no experience with DuckDB.

Cupprum · a year ago
SQLite is meant for transactional data, DuckDB for analytical data.

I am not sure which one would be better for logs, I would need to play around with it. But i am not sure if SQLite wouldn’t be a better fit.

freedmand · a year ago
I recently had the idea to record every note coming out of my digital piano in real-time. That way if I come up with a good idea when noodling around I don’t have to hope I can remember it later.

I was debating what storage layer to use and decided to try SQLite because of its speed claims — essentially a single table where each row is a MIDI event from the piano (note on, note off, control pedal, velocity, timestamp). No transactions, just raw inserts on every possible event. It so far has worked beautifully: it’s performant AND I can do fun analysis later on, e.g. to see what keys I hit more than others or what my average note velocity is.

thfuran · a year ago
I wouldn't expect performance of pretty much any plausible approach to matter much. The notes just aren't going to be coming very quickly.
freedmand · a year ago
If you play ten note chords — one for each finger — in quick succession, that can rack up a lot of inserts in short time period (say, medium-worst case, 100Hz, for playing a chord like that five times per second, counting both “on” and “off” events).

It’s also worth taking into consideration damper pedal velocity changes. When you go from “off” (velocity 0) to fully “on” and depressed (velocity 127), a lot of intermediate values will get fired off at high frequency.

Ultimately though you are right; it’s not enough frequency of information to overload SQLite (or a file system), probably by several orders of magnitude.

392 · a year ago
What counts as plausible nowadays may surprise you given your grasp on true performance. Observe these professionals. https://www.primevideotech.com/video-streaming/scaling-up-th...
jazzyjackson · a year ago
Insertion times are not a problem but maybe after a few years of playing you will be managing millions of records
leni536 · a year ago
> The performance difference arises (we believe) because when working from an SQLite database, the open() and close() system calls are invoked only once, whereas open() and close() are invoked once for each blob when using blobs stored in individual files. It appears that the overhead of calling open() and close() is greater than the overhead of using the database

I wonder how io_uring compares.

tantalor · a year ago
RecordIO would be a good choice for this use case

https://mesos.apache.org/documentation/latest/recordio/

01HNNWZ0MV43FF · a year ago
Yeah but imagine a Beowulf cluster^H^H io_uring of SQLites
xyzzy123 · a year ago
It seems like nobody has suggested putting SQLite databases inside SQLite blobs yet... you could have SQLite all the way down.
Upvoter33 · a year ago
When something built on top of the filesystem is "faster" than the filesystem, it just means "when you use the filesystem in a less-than-optimal manner, it will be slower than an app that uses it in a sophisticated manner." An interesting point, but perhaps obvious...

Deleted Comment

Kalanos · a year ago
TLDR; don't do it.

I've used SQLite blob fields for storing files extensively.

Note that there is a 2GB blob maximum: https://www.sqlite.org/limits.html

To read/write blobs, you have to serialize/deserialize your objects to bytes. This process is not only tedious, but also varies for different objects and it's not a first-class citizen in other tools, so serialization kept breaking as my dependencies upgraded.

As my app matured, I found that I often wanted hierarchical folder-like functionality. Rather than recreating this mess in db relationships, it was easier to store the path and other folder-level metadata in sqlite so that I could work with it in Python. E.g. `os.listdir(my_folder)`.

Also, if you want to interact with other systems/services, then you need files. sqlite can't be read over NFS (e.g. AWS EFS) and by design it has no server for requests. so i found myself caching files to disk for export/import.

SQLite has some settings for handling parallel requests from multiple services, but when I experimented with them I always wound up with a locked db due to competing requests.

For one reason or another, you will end up with hybrid (blob/file) ways of persisting data.

OskarS · a year ago
> As my app matured, I found that I often wanted hierarchical folder-like functionality. Rather than recreating this mess in db relationships, it was easier to store the path and other folder-level metadata in sqlite so that I could work with it in Python. E.g. `os.listdir(my_folder)`.

This is a silly argument, there's no reason to recreate the full hierarchy. If you have something like this:

    CREATE TABLE files (path TEXT UNIQUE COLLATE NOCASE);
Then you can do this:

    SELECT path FROM files WHERE path LIKE "./some/path/%";
This gets you everything in that path and everything in the subpaths (if you just want from the single folder, you can always just add a `directory` column). I benchmarked it using hyperfine on the Linux kernel source tree and a random deep folder: `/bin/ls` took ~1.5 milliseconds, the SQLite query took ~3.0 milliseconds (this is on a M1 MacBook Pro).

The reason it's fast is because the table has a UNIQUE index, and LIKE uses it if you turn off case-sensitivity. No need to faff about with hierarchies.

EDIT: btw, I am using SQLite for this purpose in a production application, couldn't be happier with it.

jayknight · a year ago
The postgres ltree extension does this beautifully. I'm not sure if similar things exist for sqlite or other rdbmses.

https://www.postgresql.org/docs/current/ltree.html

Kalanos · a year ago
cool. i don't want to recreate a filesystem in my app logic
jorams · a year ago
> To read/write blobs, you have to serialize/deserialize your objects to bytes. This process is not only tedious, but also varies for different objects and it's not a first-class citizen in other tools, so things kept breaking as my dependencies upgraded.

I'm confused what you mean by this. Files also only contain bytes, so that serialization/deserialization has to happen anyway?

Kalanos · a year ago
The tools associated with every file type you support have to support reading/writing a buffer/bytestream or whatever it is called.

For example, `pd.read_parquet` accepts "file-like objects" as its first argument: https://pandas.pydata.org/docs/reference/api/pandas.read_par...

However, this is not the case for fringe tools

Demiurge · a year ago
Maybe you need to encode bytes as text for sql?
formerly_proven · a year ago
> I've used SQLite blob fields for storing files extensively. Note that there is a 2GB blob maximum: https://www.sqlite.org/limits.html

Also note that SQLite does have an incremental blob I/O API (sqlite3_blob_xxx), so unlike most other RDBMS there is no need to read/write blobs as a contiguous piece of memory - handling large blobs is more reasonable than in those. Though the blob API is still separate from normal querying.

fnordlord · a year ago
Do you have or know of a clear example of how to do this? I have to ask because I spent half of yesterday trying to make it work. The blob_open command wouldn't work until I set a default value on the blob column and then the blob_write command wouldn't work because you can't resize a blob. It was very weird but I'm pretty confident it's because I'm missing something stupid.
SigmundA · a year ago
Most RDBMS's have streaming blob apis:

MS SQL Server: READTEXT, WRITETEXT, substring, UPDATE.WRITE

Oracle: DBMS_LOB.READ, DBMS_LOB.WRITE

PG: Large Objects

Most of my experience is with SQL server and it can stream large objects incrementally through a web app to browser without loading the whole thing into memory at 100's Mbytes/sec on normal hardware.

arianvanp · a year ago
I wish the API was compatible with iovec though. As that's what all the c standard lib APIs use for non-contiguous memory
Kalanos · a year ago
That sounds nice for chunking, but what if you need contiguous memory? E.g. viewing an image or running an AI model
floam · a year ago
> so i found myself caching files to disk for export/import

Could use a named pipe.

I’m reminded of what I often do at the shell with psub in fish. psub -f creates and returns the path to a fifo/named pipe in $TMPDIR and writes stdin to that; you’ve got a path but aren’t writing to the filesystem.

e.g. you want to feed some output to something that takes file paths as arguments. We want to compare cmd1 | grep foo and cmd2 | grep foo. We pipe each to psub in command substitutions:

    diff -u $(cmd1 | grep foo | psub -f) $(cmd2 | grep foo | psub -f)
which expands to something like

   diff -u /tmp/fish0K5fd.psub /tmp/fish0hE1c.psub
As long as the tool doesn’t seek around the file. (caveats are numerous enough that without -f, psub uses regular files.)

tzot · a year ago
> I’m reminded of what I often do at the shell with psub in fish.

ksh and bash too have this as <(…) and >(…) under Process Substitution.

An example from ksh(1) man page:

    paste <(cut -f1 file1) <(cut -f3 file2) | tee >(process1) >(process2)

jayknight · a year ago
bash (at least) has a built-in mechanism to do that

diff <(cmd1 | grep foo) <(cmd2 | grep foo)

raverbashing · a year ago
> As my app matured, I found that I often wanted hierarchical folder-like functionality. Rather than recreating this mess in db relationships, it was easier to store the path in sqlite and work with it in Python. E.g. `os.listdir(my_folder)`

This makes total sense and it is also "frowned upon" by people who take a too purist view of databases

(Until it comes a time to backup, or extract files, or grow a hard drive etc and then you figure out how you shot yourself in the foot)

Kalanos · a year ago
To make it more queryable, you can have different classes for dataset types with metadata like: file_format, num_files, sizes
qbane · a year ago
> As my app matured, I found that I often wanted hierarchical folder-like functionality.

In the process of prototyping some "remote" collaborating file systems, I always wonder whether it is a good idea maintaining a flat map from path concatenated with "/" like an S3 to the file content, in term of efficiency or elegancy.

out_of_protocol · a year ago
> As my app matured, I found that I often wanted hierarchical folder-like functionality

(1) Slim table "items"

- id / parent_id / kind (0/1 file folder) integer

- name text

- Maybe metadata.

(2) Separate table "content"

- id integer

- data blob

There you have file-system-like structure and fast access times (don't mix content in the first table)

Or, if you wish for deduplication or compression, add item_content (3)

stavros · a year ago
Can you describe how you stored the paths in sqlite? I'm not entirely getting it.
Kalanos · a year ago
just a string field that points to the file path
knighthack · a year ago
The idea to emulate hierarchical folder-like functionality ala filepaths is quite brilliant - I might try it out.
thunderbong · a year ago
Storing Hierarchical Data in Relational Databases

https://medium.com/@rishabhdevmanu/from-trees-to-tables-stor...