HackerTrans
TopNewTrendsCommentsPastAskShowJobs

maxmcd

no profile record

comments

maxmcd
·vor 4 Monaten·discuss
Those care about quickly sending compact messages over the network, but most of them do not create a sparse in-memory representation that you can read on the fly. Especially in javascript.

This lib keeps the compact representation at runtime and lets you read it without putting all the entities on the heap.

Cool!
maxmcd
·vor 5 Monaten·discuss
They're implementing MVCC
maxmcd
·vor 6 Monaten·discuss
does having to maintain the slatedb as a consistent singleton (even with write fencing) make this as operationally tricky as a third party db?
maxmcd
·vor 6 Monaten·discuss
Is this possibly an intentional reference to GNU Linux, or unrelated?
maxmcd
·vor 6 Monaten·discuss
TCP performance gets quite poor over long distances. CDNs are very helpful if you're trying to make your site work well far away from your servers.
maxmcd
·vor 6 Monaten·discuss
Quite surprising. It does seem like you can get an https download with

    aws s3 cp --no-sign-request s3://download.opencontent.netflix.com/sparks/creative-commons-attribution-4-intl-public-license.txt .
Which is hitting the bucket path route at: https://s3.amazonaws.com/download.opencontent.netflix.com/sp...

"aws s3 ls" similarly requests: https://s3.amazonaws.com/download.opencontent.netflix.com?li...
maxmcd
·vor 7 Monaten·discuss
I found some more info here: https://biscuit.readthedocs.io/en/latest/benchmark_roaring.h...
maxmcd
·vor 7 Monaten·discuss
I think a lot of the original temporal/cadence authors were motivated by working on event-driven systems with retries. They exhibited complex failure scenarios that they could not reasonably account for without slapping on more supervisor systems. Durable executions allow you to have a consistent viewpoint to think about failures.

I agree determinism/idempotency and the complexities of these systems are a tough pill to swallow. Certainly need to be suited to the task.
maxmcd
·vor 7 Monaten·discuss
Great article for demystifying durable execution: https://lucumr.pocoo.org/2025/11/3/absurd-workflows/
maxmcd
·vor 7 Monaten·discuss
I believe you are making use of gVisor’s userspace TCP implementation. I’m not sure if there is something similar in Rust that would be so easy to set up like this.
maxmcd
·vor 7 Monaten·discuss
"Reply in the tone of Wikipedia" has worked pretty well for me
maxmcd
·vor 7 Monaten·discuss
> > You can force an fsync after each messsage [sic] with always, this will slow down the throughput to a few hundred msg/s.

Is the performance warning in the NATS possible to improve on? Couldn't you still run fsync on an interval and queue up a certain number of writes to be flushed at once? I could imagine latency suffering, but batches throughput could be preserved to some extent?
maxmcd
·vor 7 Monaten·discuss
Maybe this? https://forums.foundationdb.org/t/swift-or-c-20-coroutine-wh...
maxmcd
·vor 7 Monaten·discuss
Oh nice, yes I think your threads should be able to perform reads concurrently when the write lock is not held. Would make sure you are in WAL mode as well, since I think that will improve your concurrency.
maxmcd
·vor 7 Monaten·discuss
This will block threads while waiting for other threads to write. That might work great for your threading model but I usually end up putting the writer in one thread and then other threads send writes to the writer thread.
maxmcd
·vor 8 Monaten·discuss
Just that row should be locked since it's: "for update skip locked".

I agree the concurrency limitation is kind of rough, but it's kind of elegant because you don't have to implement some kind of timeout/retry thing. You're certainly still exposed to the possibility of double-sending, so yes, probably much nicer to update the row to "processing" and re-process those rows on a timeout.
maxmcd
·vor 8 Monaten·discuss
I went here next: https://www.youtube.com/@CMUDatabaseGroup
maxmcd
·vor 9 Monaten·discuss
Are there any open sourced sharded query planners like this? Something that can aggregate queries across many duckdb/sqlite dbs?
maxmcd
·vor 10 Monaten·discuss
There are a few different styles: https://github.com/orgs/community/discussions/16925
maxmcd
·vor 10 Monaten·discuss
Do they mention transactions anywhere? Maybe it will be OLAP?