Most active commenters
  • CharlesW(3)
  • deepsun(3)
  • SOLAR_FIELDS(3)

←back to thread

200 points dcu | 44 comments | | HN request time: 1.735s | source | bottom
1. CharlesW ◴[] No.44457094[source]
Pocketbase is already the poor man's BaaS, and is minimalist compared to the two others mentioned.

> Data stored in human-readable CSVs

The choice to not use a database when two near-perfect tiny candidates exist, and furthermore to choose the notorious CSV format for storing data, is absolutely mystifying. One can use their Wasm builds if platform-specific binaries offend.

replies(6): >>44457217 #>>44457440 #>>44457602 #>>44459642 #>>44460110 #>>44460962 #
2. skeeter2020 ◴[] No.44457217[source]
I agree on both your main points. It's not like PB has a bunch of cruft and fat to trim. The BD of the project is very aggressive in constraining scope, which is one of the reasons it's so good. The CSV-thing feels like an academic exercise. The fact I can't open an SQLite database in my text editor is a little thin, considering many tools are lighter weight than text editors, and "reading" a database (any format) is seldom the goal. You probably want to query it so the first thing you need to do here is import the CSV into DuckDB and write a bunch of queries with "WHERE active=1"
3. zffr ◴[] No.44457440[source]
What’s the other candidate besides pocketbase?
replies(2): >>44457451 #>>44457932 #
4. jonny_eh ◴[] No.44457451[source]
Firebase, Supabase, Pocketbase
5. loeber ◴[] No.44457602[source]
In 2025, pretending that a CSV can be a reasonable alternative to a database because it is "smaller" is just wild. Totally unconscionable.
replies(5): >>44457929 #>>44458129 #>>44458193 #>>44460475 #>>44464263 #
6. ncruces ◴[] No.44457929[source]
In 2020 Tailscale used a JSON file.

https://tailscale.com/blog/an-unlikely-database-migration

replies(1): >>44457971 #
7. CharlesW ◴[] No.44457932[source]
Apologies to anyone who found this unclear — the two near-perfect tiny candidate databases are SQLite and DuckDB.
replies(2): >>44457986 #>>44463359 #
8. CharlesW ◴[] No.44457971{3}[source]
If you continue reading, you'll see that they were forced to ditch JSON for a proper key-value database.
replies(1): >>44458561 #
9. zffr ◴[] No.44457986{3}[source]
My understanding is that SQLite is OLTP and duckdb is OLAP. Duckdb is column based so not a great fit for a traditional backend db
10. r0fl ◴[] No.44458129[source]
I use CSV files to run multiple sites with 40,000+ pages each. Close to 1mil pages total

Super fast

Can’t hack me because those CSV files are stored elsewhere and only pulled on build

Free, ultra fast, no latency. Every alternative I’ve tried is slower and eventually costs money.

CSV files stored on GitHub/vercel/netlify/cloudflare pages can scale to millions of rows for free if divided properly

replies(5): >>44458194 #>>44458300 #>>44458419 #>>44458904 #>>44464188 #
11. nullishdomain ◴[] No.44458193[source]
Not so sure about this. At scale, sure, but how many apps are out there that perform basic CRUD for a few thousand records max and don't need the various benefits and guarantees a DB provides?
replies(1): >>44460789 #
12. akudha ◴[] No.44458194{3}[source]
Is this a static website? If yes, what do you use to build?
13. vineyardmike ◴[] No.44458300{3}[source]
Can't argue with what works, but...

All these benefits also apply to SQLite, but SQLite is also typed, indexed, and works with tons of tools and libraries.

It can even be stored as a static file on various serving options mentioned above. Even better, it can be served on a per-page basis, so you can download just the index to the client, who can query for specific chunks of the database, further reducing the bandwidth required to serve.

replies(2): >>44459549 #>>44459963 #
14. Drew_ ◴[] No.44458419{3}[source]
It sounds like you use CSVs to build static websites, not store or update any dynamic data. That's not even remotely comparable.
15. ncruces ◴[] No.44458561{4}[source]
I know. Now see how far JSON got them.

So why wouldn't you just use a text format to persist a personal website a handful of people might use?

I created one of the SQLite drivers, but why would you bring in a dependency that might not be available in a decade unless you really need it? (SQLite will be there in 2035, but maybe not the current Go drivers)

replies(2): >>44459591 #>>44463448 #
16. AbraKdabra ◴[] No.44458904{3}[source]
So... SQLite with less features basically.
replies(1): >>44459369 #
17. Spivak ◴[] No.44459369{4}[source]
Every file format is SQLite with fewer features.
replies(1): >>44459571 #
18. deepsun ◴[] No.44459549{4}[source]
Just to be pedantic, SQLite is not really typed. I'd call them type-hints, like in Python. Their (bad IMHO) arguments for it: https://www.sqlite.org/flextypegood.html
replies(5): >>44459594 #>>44459754 #>>44459913 #>>44459970 #>>44462610 #
19. deepsun ◴[] No.44459571{5}[source]
Unless it's Apache Arrow or Parquet.
replies(1): >>44460105 #
20. deepsun ◴[] No.44459591{5}[source]
It's self-restriction, like driving a car not using the rear view mirror. Or using "while" loops always instead of "for" loops.

It's great for an extra challenge. Or for writing good literature.

replies(1): >>44459841 #
21. edmundsauto ◴[] No.44459594{5}[source]
Don’t you think it’s better in this dimension than CSV though? It seems to me like it’s a strictly better improvement than the other option discussed.
22. SOLAR_FIELDS ◴[] No.44459642[source]
I just deployed a wasm built SQLite with FTS5 enabled and it’s insane what it is capable of. It’s basically elasticsearch entirely on the client. It’s not entirely as robust as ES but it’s like 80% of the way there, and I repeat, it runs on the client side on your phone or any other SQLite supported device
replies(2): >>44461242 #>>44462252 #
23. newlisp ◴[] No.44459754{5}[source]
https://www.sqlite.org/stricttables.html
24. moritzwarhier ◴[] No.44459841{6}[source]
You didn't really answer the dependency argument though.

Until the data for a static website becomes large enough to make JSON parsing a bottleneck, where is the problem?

I know, it's not generally suitable to store data for quick access of arbitrary pieces without parsing the whole file.

But if you use it at build time anyway (that's how I read the argument), it's pretty likely that you never will reach this bottleneck that makes you require any DBMS. Your site is static, you don't need to serve any database requests.

There is also huge overhead in powering static websites by a full-blown DBMS, in the worst case serving predictable requests without caching.

So many websites are powered by MySQL while essentially being static... and there are often unnecessarily complicated layers of caching to allow that.

But I'm not arguing against these layers per se (the end result is the same), it's just that, if your ecosystem is already built on JSON as data storage, it might be completely unneeded to pull in another dependency.

Not the same as restricting syntax within one programming language.

25. ezekiel68 ◴[] No.44459913{5}[source]
TBH this is why I've never messed with SQLite.

If I want to bother with a SQL database, I at least want the benefit of the physical layer compressing data to the declared types and PostgreSQL scales down surprisingly well to lower-resource (by 2025 standards) environments.

replies(1): >>44460265 #
26. ◴[] No.44459963{4}[source]
27. dragonwriter ◴[] No.44459970{5}[source]
A sibling comment posted a blind link whose contents address this, but (for the benefit of people who aren't likely to follow such links), recent versions of SQLite support STRICT tables which are rigidly typed, if you have a meed tor that instead of the default loose type affinity system.
28. Moto7451 ◴[] No.44460105{6}[source]
For both fun and profit I’ve used the Parquet extension for SQLite to have the “Yes” answer to the question of “SQLite or Parquet?”
29. bravesoul2 ◴[] No.44460110[source]
For local use cases this could be useful. Run locally. Do your thing. Edit with Excel or tool of choice.

Also one less dependency.

30. MobiusHorizons ◴[] No.44460265{6}[source]
How exactly do you anticipate using Postgres on client? Or are you ignoring the problem statement and saying it’s better to run a backend?
replies(1): >>44460578 #
31. throwaway032023 ◴[] No.44460578{7}[source]
https://pglite.dev/
replies(2): >>44465144 #>>44465512 #
32. makeitdouble ◴[] No.44460789{3}[source]
I assume parent's dispair is about CSV's amount of traps and parsing quirks.

I'd also be hard pressed to find any real reason to chose CSV over JSONL for instance. Parsing is fast and utterly standard, it's predictible and if your data is really simple JSONL files will be super simple.

At it's simplest, the difference between a CSV line and a JSON array is 4 characters.

33. waldrews ◴[] No.44460962[source]
The append-only, text csv format you can concatenate to from a script, edit or query in a spreadsheet, and that's still fast because of the in-memory pointer cache, seems like a big win (assuming you're in the target scaling category).
34. tommica ◴[] No.44461242[source]
How large of a bundle is it? And are we talking about wikipedia stuffed into sqlite, or only a few hundred pages of internal docs?
replies(1): >>44466110 #
35. bsaul ◴[] No.44462252[source]
how large is the wasm package for an empty sqlite, together with the client library to access it ?
replies(1): >>44466115 #
36. fer ◴[] No.44462610{5}[source]
> Just to be pedantic, SQLite is not really typed. I'd call them type-hints, like in Python

Someone already chimed in for SQLite, so worth mentioning that Python is hard typed, just dynamic. Everyone has seen TypeError; you'll get that even without hints. It becomes particularly obvious when using Cython, the dynamic part is gone and you have to type your stuff manually. Type hints are indeed hints, but for your IDE, or mypy, or you (for clarity).

It's a bit like saying C++ isn't typed because you can use "auto".

37. fmbb ◴[] No.44463359{3}[source]
The data files are not human readable though, right?
38. jpc0 ◴[] No.44463448{5}[source]
> SQLite will be there in 2035, but maybe not the current Go drivers

Go binaries are statically linked, unless you expect the elf/pe format to not exist in 2035 your binary will still run just the same.

And if not well there will be an SQLite driver in 2035 and other than 5 lines of init code I don’t interact with the SQLite drover but rather the SQL abstraction in golang.

And if it’s such an issue then directly target the sqlite C api which will also still be there in 2035.

39. tansan ◴[] No.44464188{3}[source]
The way you write this makes it sound like your websites are pulling from the CSV per request. However, you're building static websites and uploading it to a CDN. I don't think SQL is needed here and CSV makes life way easier, but you can swap your CSV with any other storage device in this strategy and it would work the same.
40. nickjj ◴[] No.44464263[source]
If you ignore size as a benefit, CSV files still have a lot of value:

    - It's plain text
    - It's super easy to diff
    - It's a natural fit for saving it in a git repo
    - It's searchable using standard tools (grep, etc.)
    - It's easy to backup and restore
    - You don't need to worry about it getting corrupt
    - There are many tools designed to read it to produce X types of outputs
A few months ago I wrote my own CLI driven CSV based income and expense tracker at https://github.com/nickjj/plutus. It helps me do quartly taxes in a few minutes and I can get an indepth look at my finances on demand in 1 command.

My computer built in 2014 can parse 100,000 CSV rows in 560ms which is already 10x more items than I really have. I also spent close to zero effort trying to optimize the script for speed. It's a zero dependency single file Python script using "human idiomatic" code.

Overall I'm very pleased in the decision to use a single CSV file instead of a database.

41. felipeccastro ◴[] No.44465144{8}[source]
Not sure why this was downvoted, but I’d be very interested in learning how well does pglite compares to SQLite (pros and cons of each, maturity, etc)
42. MobiusHorizons ◴[] No.44465512{8}[source]
Interesting. TIL
43. SOLAR_FIELDS ◴[] No.44466110{3}[source]
I'm using wa-sqlite, and the standalone wasm package is 714kb. The use case is a few hundred pages of internal docs.
44. SOLAR_FIELDS ◴[] No.44466115{3}[source]
the standalone wasm package is 714kb