Remix.run Logo
dangoodmanUT a day ago

> DbOptions::durable()

> Appended to the WAL without a per-write sync

So… it’s not durable? Durable doesn’t mean “survives a process restart”, it means “durably saved to persistent storage”. For example, this “durable” mode wouldn’t survive power loss.

procaryote a day ago | parent | next [-]

Pretty much... paranoid() seems to be the real durable() which isn't a great look for a database project.

Being able to recover a db without corruption beyound losing the last few writes is a pretty useful feature, and buys a lot of performance, but it would be better to label that clearly, as a reasonable expectation on the durable() preset would be for it to be Durable.

stingraycharles a day ago | parent | prev | next [-]

Yeah this should be benchmarked against other systems that have flush() disabled.

mmap is nice but it doesn’t support durable semantics in the way that we usually mean with databases.

if a write is acknowledged it should not be forgotten, which is not what this is.

muvlon 18 hours ago | parent | next [-]

As of a couple years ago, mmap actually has a MAP_SYNC flag that makes it durable in the DB sense. The caveat is that it requires DAX on the file and so comes with a whole bunch of restrictions w.r.t. filesystem, storage media and even CPU architecture.

rgbimbochamp a day ago | parent | prev [-]

You're right, that mode provides process crash recovery, not power-loss durability. The benchmark compares it against fjall’s equivalent buffered-WAL mode.

deathanatos a day ago | parent | next [-]

Word choice matters. Defaults matter. People will go "well it says durable right here" and while arguably, yes, they should RTFM, it would still be great if tool-builders did not set the shotgun's default state to State::AT_FOOT. It would be nice if every paragraph of technical writing that I have to do need not be burdened by a thousand asterisks of "durable in this context means something other than durable".

carlmr a day ago | parent [-]

>arguably, yes, they should RTFM

Agreed. Good design is when the things do what you expect them to do without reading the manual, don't reuse wording with other meaning in the wrong way. That way if you do encounter nee wording, you know you should read the manual.

gryfft 19 hours ago | parent [-]

https://en.wikipedia.org/wiki/Principle_of_least_astonishmen...

a2ff6eeb0 a day ago | parent | prev [-]

If that's your design constraint, couldn't you speed it up by getting rid of the WAL?

oneshadab a day ago | parent [-]

You'd lose durability against process crashes.

If your system has a reasonable tolerance for power failure (multi-az multi-cloud), this can provide much better throughput

t098i3 a day ago | parent [-]

Indeed, a common enough pattern for etcd is to run it backed by a RAMdisk and have multi-az availability + periodic backups + tolerance at a business level to be OK losing some recent data.

nijave 15 hours ago | parent | prev | next [-]

I give a little leeway to distributed systems that replicate and don't flush since there's a bit of middle ground assuming they're in different fault domains. Garage object storage defaults to that

However, this doesn't appear to be the case here...

Unsurprisingly, performance goes to crap when sync is enabled.

This is pretty old now but has some useful fsync/sec numbers which can be completely divorced from other I/O performance https://www.percona.com/blog/fsync-performance-storage-devic...

rdtsc 15 hours ago | parent | prev | next [-]

Absolutely. If they just dirty some pages in memory and return back to the client the benchmarks will look "insanely fast".

I have nothing against this being a non-default option in a db/kv engine but anything advertising to be durable and not fsyncing by default is something I would stay away from. To me it's like a litmus test of how well the author knows/cares data durability and not destroying users data.

rgbimbochamp 13 hours ago | parent [-]

durable() syncs periodically on flush, WAL rotation, and clean close; paranoid() is the sync-before-ack mode. This is clarified in the README, and the benchmarks report all three modes separately. Other KV-stores that you see on the market, do this too. It's a performance tradeoff most applications make. Sync on every write kills every optimization. See the benchmark table for example.

deepsun a day ago | parent | prev | next [-]

Are we back to MongoDB -- no fsync() but webscale speed?

HatchedLake721 21 hours ago | parent | next [-]

webscale… https://youtu.be/b2F-DItXtZs?is=wFhGujRHma3b7VLp

whirlwin 13 hours ago | parent [-]

This brings back memories!

rgbimbochamp a day ago | parent | prev | next [-]

Nope - https://github.com/kingroryg/turbokv#durability-presets

re-thc 18 hours ago | parent | prev [-]

Agent scale!

random3 10 hours ago | parent | prev | next [-]

Every few years someone pulls this. If you search HN for fsync you can see the trail :)

Betelbuddy 10 hours ago | parent | prev | next [-]

10 years after MongoDB is back....

https://youtu.be/b2F-DItXtZs

insanitybit 20 hours ago | parent | prev [-]

This is surprisingly common, from what I can tell.