5 ms·
I'm easily reaching 30GB/s with a single client: dd if=/dev/zero of=/dev/null bs=1M status=progress A second dd process hits the same speed.
by fukka42 11mo ago
I'm easily reaching 30GB/s with a single client:
dd if=/dev/zero of=/dev/null bs=1M status=progress
A second dd process hits the same speed.
- epistasis 11mo agoMy artisanal architecture design uses writes with a few characters and uses unix pipes: yes | pv > /dev/null I hope that in my next rewrite I can advance to larger block sizes.
- fukka42 11mo agoInterestingly I tried this as well and was disappointed with the results: yes $(printf %1024s | tr " " "y") | pv > /dev/null About the same throughput as letting yes output a single character. I guess Unix pipes are slow.
- 1718627440 11mo ago> I guess Unix pipes are slow. Or string concatenation, or pipeviewer.
- fukka42 11mo agoyes doesn't do string concatenation, at least not in the loop that matters. It just prepares a buffer of bytes once and writes it to stdout repeatedly. https://github.com/coreutils/coreutils/blob/master/src/yes.c https://github.com/coreutils/coreutils/blob/master/src/yes.c
- eru 11mo agoCompare https://codegolf.stackexchange.com/questions/199528/fastest-yes-in-the-west https://codegolf.stackexchange.com/questions/199528/fastest-...
- rezonant 11mo agoWhat's the best hardware for running a /dev/null instance for production?
- epistasis 11mo agoI usually do a kubernetes cluster on top of VMs. But sometimes when I really want to scale the standard cloud server less platforms all support /dev/null out of the box. (Except for Windows...)
- wowczarek 11mo ago> Except for Windows... copy c:\file nul It's been there since DOS or more likely CP/M :)
- __turbobrew__ 11mo agoA single resistor at ground voltage.
- eru 11mo agoThat doesn't support expected features like 'stat /dev/null'.