Show HN: Forkrun – NUMA-aware shell parallelizer (50×–400× faster than parallel)
A drop-in replacement for xargs -P and GNU parallel, offering 50x-400x faster performance, 200,000+ batch dispatches/sec, and ~95-99% CPU utilization for high-frequency, low-latency workloads.
View Origin Link
Product Positioning & Context
AI Executive Synthesis
A drop-in replacement for xargs -P and GNU parallel, offering 50x-400x faster performance, 200,000+ batch dispatches/sec, and ~95-99% CPU utilization for high-frequency, low-latency workloads.
This product addresses a critical performance bottleneck in shell scripting and data processing pipelines. The reported 50x-400x speedup and significantly higher dispatch rates over GNU Parallel represent a substantial improvement for compute-intensive, low-latency workloads. The focus on NUMA awareness, SIMD acceleration, and lock-free mechanisms targets fundamental system-level inefficiencies, directly impacting CPU utilization and throughput. For B2B SaaS, this translates to reduced infrastructure costs for data processing, faster ETL operations, and improved responsiveness for real-time analytics or batch jobs. Organizations dealing with large-scale data ingestion, transformation, or scientific computing will find this compelling. The 'drop-in replacement' aspect minimizes adoption friction, making it a viable upgrade for existing systems struggling with parallelization overhead. This targets a niche but high-value segment where performance directly correlates with operational efficiency and cost savings.
forkrun is the culmination of a 10-year-long journey focused on "how to make shell parallelization fast". What started as a standard "fork jobs in a loop" has turned into a lock-free, CAS-retry-loop-free, SIMD-accelerated, self-tuning, NUMA aware shell-based stream parallelization engine that is (mostly) a drop-in replacement for xargs -P and GNU parallel.On my 14-core/28-thread i9-7940x, forkrun achieves:* 200,000+ batch dispatches/sec (vs ~500 for GNU Parallel)* ~95–99% CPU utilization across all 28 logical cores, even when the workload is non-existant (bash no-ops / `:`) (vs ~6% for GNU Parallel). These benchmarks are intentionally worst-case (near-zero work per task) because they measure the capability of the parallelization framework itself, not how much work an external tool can do.* Typically 50×–400× faster on real high-frequency low-latency workloads (vs GNU Parallel)A few of the techniques that make this possible:* Born-local NUMA: stdin is splice()'d into a shared memfd, then pages are placed on the target NUMA node via set_mempolicy(MPOL_BIND) before any worker touches them, making the memfd NUMA-spliced. Each numa node only claims work that is already born-local on its node. Stealing from other nodes is permitted under some conditions when no local work exists.* SIMD scanning: per-node indexers/scanners use AVX2/NEON to find line boundaries (delimiters) at speeds approaching memory bandwidth, and publish byte-offsets and line-counts into per-node lock-free rings.* Lock-free claiming: workers claim batches with a single atomic_fetch_add — no locks, no CAS retry loops; contention is reduced to a single atomic on one cache line.* Memory management: a background thread uses fallocate(PUNCH_HOLE) to reclaim space without breaking the logical offset system.…and that’s just the surface. The implementation uses many additional systems-level techniques (phase-aware tail handling, adaptive batching, early-flush detection, etc.) to eliminate overhead, increase throughput and reduce latency at every stage.In its fastest (-b) mode (fixed-size batches, minimal processing), it can exceed 1B lines/sec.forkrun ships as a single bash file with an embedded, self-extracting C extension — no Perl, no Python, no install, full native support for parallelizing arbitrary shell functions. The binary is built in public GitHub Actions so you can trace it back to CI (see the GitHub "Blame" on the line containing the base64 embeddings). Trying it is literally two commands: . frun.bash
frun shell_func_or_cmd < inputs
For benchmarking scripts and results, see the BENCHMARKS dir in the GitHub repoFor an architecture deep-dive, see the DOCS dir in the GitHub repoHappy to answer questions.
NUMA-aware
shell parallelizer
lock-free
CAS-retry-loop-free
SIMD-accelerated
self-tuning
NUMA-spliced
AVX2/NEON
Related Ecosystem & Alternatives
Discover adjacent products, open-source repositories, and developer tools sharing similar technical architecture.
Deep-Dive FAQs
What is Forkrun – NUMA-aware shell parallelizer (50×–400× faster than parallel)?
Forkrun – NUMA-aware shell parallelizer (50×–400× faster than parallel) is analyzed by our AI as: A drop-in replacement for xargs -P and GNU parallel, offering 50x-400x faster performance, 200,000+ batch dispatches/sec, and ~95-99% CPU utilization for high-frequency, low-latency workloads.. It focuses on This product addresses a critical performance bottleneck in shell scripting and data processing pipelines. The reported 50x-400x speedup and signif...
Where did Forkrun – NUMA-aware shell parallelizer (50×–400× faster than parallel) originate?
Data for Forkrun – NUMA-aware shell parallelizer (50×–400× faster than parallel) was aggregated directly from the Hacker News community ecosystem, representing raw developer and early-adopter sentiment.
When was Forkrun – NUMA-aware shell parallelizer (50×–400× faster than parallel) publicly launched?
The initial public indexing or launch date for Forkrun – NUMA-aware shell parallelizer (50×–400× faster than parallel) within our tracked developer communities was recorded on April 1, 2026.
How popular is Forkrun – NUMA-aware shell parallelizer (50×–400× faster than parallel)?
Forkrun – NUMA-aware shell parallelizer (50×–400× faster than parallel) has achieved measurable traction, logging over 127 traction score and facilitating 31 recorded discussions or engagements.
Which technical categories define Forkrun – NUMA-aware shell parallelizer (50×–400× faster than parallel)?
Based on metadata extraction, Forkrun – NUMA-aware shell parallelizer (50×–400× faster than parallel) is categorized under topics such as: NUMA-aware, shell parallelizer, lock-free, CAS-retry-loop-free.
What are some commercial alternatives to Forkrun – NUMA-aware shell parallelizer (50×–400× faster than parallel)?
Our semantic intelligence engine identifies potential commercial alternatives in the SaaS space, such as Brew , which offers overlapping value propositions.
How does the creator describe Forkrun – NUMA-aware shell parallelizer (50×–400× faster than parallel)?
The original author or development team describes the product as follows: "forkrun is the culmination of a 10-year-long journey focused on "how to make shell parallelization fast". What started as a standard "fork jobs in a loop" has turned into a lock-free, CAS-retry-loo..."
Community Voice & Feedback
Discovery Source

Hacker News
Aggregated via automated community intelligence tracking.
Tech Stack Dependencies
No direct open-source NPM package mentions detected in the product documentation.
Media Tractions & Mentions
No mainstream media stories specifically mentioning this product name have been intercepted yet.
Deep Research & Science
No direct peer-reviewed scientific literature matched with this product's architecture.
Although to adapt to your style I did this instead: ls 0* | frun -- jq -rf my_program.jq
In a directory containing 14k data files. I think your reference should be rush, not a Perl script.