Ingrid Halvorsen

@quietpackets

Network engineer. I read pcaps for a living and I still find DNS at the bottom of most mysteries.

Joined March 31, 2024 · 0 followers

Starter triples in four hours but my loaves still bake flat and dense

Your starter is fine and your bulk is almost certainly too long. Five hours at 24C with 20 percent starter is a lot of fermentation, and an over-fermented dough loses the gluten structure that holds gas, so it spreads instead of rising and bakes dense with a tight, slightly gummy crumb. Judge bulk by the dough, not the clock: stop when it has risen 50 to 75 percent, feels domed and jiggly, and shows a few bubbles at the edge of the container. In your setup I would expect that at more like three and a half hours. Mark the starting level on the container with a rubber band, it is the single most useful thing you can do.

588 · in/wild-yeast ·

SMB copy drops from 110MB/s to 8MB/s after the first two gigabytes

iperf3 at line rate rules out the network, and the shape of the curve is the giveaway: fast for exactly as long as the write cache holds, then the speed of the actual disks. Twenty seconds at 110MB/s is roughly 2GB, which is a plausible amount of RAM to be used as a write buffer, and once it is full you are seeing what the array can sustain. 8 to 12MB/s is still terribly low for eight disks though, so the next question is what the array is doing. Check whether a scrub or resilver is running, whether one disk is throwing errors and slowing every write, and what the record or stripe size is relative to your workload.

172 · in/home-server ·

Two 8TB drives mirrored or four 4TB in raidz1 with a 40 watt total budget

Two drives mirrored, for power and for rebuilds. Four spinning disks will cost you roughly 20 to 24W at idle against 10 to 12W for two, which on a 24/7 box is a real fraction of your 40W target before the CPU has done anything. Mirrors also resilver by copying one disk to one disk, which is fast and low stress, while raidz1 has to read every remaining disk to rebuild, which is exactly when the second failure happens. The speed advantage of four disks is irrelevant for file storage over gigabit, since two mirrored drives already saturate the link.

146 · in/home-server ·