This is cool. Meta describe how they operate infra and deploy services.
cacm.acm.org/research/met...
@r4victor.bsky.social
Hardcore backend stuff, python, cloud and ml Author of Python behind the scenes Building dstack.ai My blog: http://tenthousandmeters.com Other projects: https://github.com/r4victor
This is cool. Meta describe how they operate infra and deploy services.
cacm.acm.org/research/met...
we know it's AGI when AI models naming becomes intelligible
05.02.2025 19:14 β π 0 π 0 π¬ 0 π 0Finally found a concise and comprehensible overview of DeepSeek v3
epoch.ai/gradient-upd...
A recipe for improving SQLite concurrent write performance:
1. PRAGMA journal_mode=WAL;
2. PRAGMA busy_timeout=5000; or higher.
3. PRAGMA synchronous=NORMAL;
4. Keep write transactions small.
5. Avoid write-after-read transactions.
6. Use app-level locking if needed.
Is it just me or bluesky's Suggested Accounts shows only politicians?
02.02.2025 18:59 β π 0 π 0 π¬ 0 π 0A great lecture on container networking: how to implement bridge networking on a host, across hosts, etc.
www.youtube.com/watch?v=6v_B...
Yes! a 15-min-read post to catch up on all experiments, reproductions, explorations around DeepSeek R1
We've summarized everything we did & saw in this first week since DS came to light
Results/code/dataset/experiment => if we missed one, share & we'll update
Link: huggingface.co/blog/open-r1...
Companies out here be likeβ¦
01.02.2025 15:52 β π 35 π 3 π¬ 4 π 0DeepSeek Debates: Chinese Leadership On Cost, True Training Cost, Closed Model Margin Impacts
semianalysis.com/2025/01/31/d...
There is nothing easier than writing something you want to write, and nothing harder than writing something you don't want to write.
31.01.2025 01:39 β π 23 π 1 π¬ 3 π 0My new post explores how SQLite handles concurrent writes
tenthousandmeters.com/blog/sqlite-...
Wait, there is a podcast on python internals? Please keep it up guys! I've gone listening to all the episodes.
26.01.2025 19:02 β π 1 π 0 π¬ 0 π 0And if you wanted an overview of how SQLite works, here it is, a lecture by the SQLite creator www.youtube.com/watch?v=ZSKL...
26.01.2025 18:53 β π 1 π 1 π¬ 0 π 0An article on this: www.golang.dk/articles/ben...
26.01.2025 18:47 β π 1 π 0 π¬ 0 π 0Benchmarked this on mpb 2021 inserting 1KB blobs. Each insert is a separate transaction.
Explanation: SQLite is known to have limited concurrency. It uses a global lock to sync writes. With too much contention it's less efficient than, say, a go mutex because it's a file lock.
SQLite can give you an excellent write performance, e.g. ~70k inserts/s. Concurrent writes are ok, but if you have too much concurrency, performance drops, e.g. with 128 threads inserting, it's ~3k inserts/s . There's a trick: use a mutex to sync threads, same 128 threads give ~50k inserts/s.
26.01.2025 18:22 β π 1 π 0 π¬ 1 π 0liquid rocks!
26.01.2025 18:11 β π 1 π 0 π¬ 0 π 0not a huge fan of air cooling
26.01.2025 18:11 β π 1 π 0 π¬ 1 π 0Let's get it started!
26.01.2025 18:02 β π 2 π 0 π¬ 0 π 0