reactor/BlockHound
Java agent to detect blocking calls from non-blocking threads. observed · 2026-08-28
Health v2 · maintenance only
87/100
- Activity 99
- Release rhythm 63
- Longevity 100
How is this computed?
round(0.45*activity + 0.35*rhythm + 0.20*longevity); archived -> min(score, 10) — computed 2026-09-03. Adoption (stars, forks) is never an input.
- gap_med: 98
- age_days: 2829
- days_rel: 86
- days_push: 9
- n_releases_24m: 8
Adoption not part of the score
1506 stars · 95 forks observed · 2026-08-28
What it is AI-extracted, prompt v1, taxonomy v1, 2026-08-30, confidence not recorded
BlockHound is a Java agent that detects blocking calls (like IO or Thread.sleep) made from threads marked as non-blocking, such as Reactor's parallel scheduler threads. It transparently instruments JVM classes and throws an error pinpointing the exact location of the offending blocking call.
Use cases
- detect blocking calls in reactive code
- find Thread.sleep in non-blocking threads
- debug Project Reactor applications for blocking operations
- catch accidental blocking IO in event loop threads
- verify non-blocking guarantees in tests
- locate source of BlockingOperationError in reactive pipelines
When to choose
- you develop reactive applications with Project Reactor or RxJava
- you want to enforce non-blocking discipline in tests
- you need to pinpoint exactly where blocking calls happen in async code
When to avoid
- your codebase is purely blocking/synchronous
- you need runtime production monitoring rather than detection during development or testing
- you work outside the JVM ecosystem
Facets
library · maturity stable
testing developer-tools developer-tools testing performance jvm cross-platform java-agent reactor reactive-programming non-blocking blocking-detection bytecode-instrumentation instrumentation
1 source
- readme: https://github.com/reactor/BlockHound · fetched 2026-08-28 · 532b8ed14032
Member repositories
| Repository | Role | Health v2 |
|---|---|---|
| reactor/BlockHound | main | 87 |
For agents
markdown · JSON · MCP: product_card(name="reactor/BlockHound")
Data as of 2026-08-30T08:39:29.467469+00:00 · Report a problem