Curated Picks

Hand-picked articles, podcasts, and videos, annotated with our insights

r/rust subreddit Nov 19, 2025

Cloudflare outage on November 18, 2025 - Caused by single .unwrap()

Reddit user

On November 18, 2025, a global Cloudflare outage stemmed from a failure in their bot management service, internally named FL2, which was partially written in Rust. According to Cloudflare's technical post-mortem, the root cause was a database permission alteration that caused a metadata query to return over 200 items, exceeding a strictly pre-allocated memory buffer of 200 slots. The service attempted to append these items via a function returning a Result, which failed and produced an Err. This error was met with a .unwrap(), causing the thread to panic and the service to crash.

The subsequent discussion on r/rust, centered on Cloudflare's blog post, debated whether the unwrap was the fundamental cause or a symptomatic failure that exposed deeper systemic issues. Many commenters argued it revealed insufficient validation of internally-generated configuration and a lack of canary deployment practices, with the panic serving as a beneficial circuit breaker that prevented silent corruption. Others contended that while expect() would have provided marginally better logs, the core failure was a flawed assumption about database query results.

Concrete outcomes from the analysis include Cloudflare's public commitment to treat internally-generated configurations with the same rigor as external inputs. The incident also fueled community advocacy for enforcing lints like clippy::unwrap_used and clippy::expect_used in production CI pipelines, and reconsidering panic strategies (e.g., panic = abort) for faster failure detection in distributed systems.

Rust
r/python subreddit Feb 5, 2025

How Rust is quietly taking over the Python ecosystem

Reddit user

A February 2025 Reddit thread generated over 900 upvotes and extensive debate on r/Python. The original post noted that performance-critical Python tooling like the Ruff linter, Polars DataFrame library, and uv package manager are increasingly implemented in Rust, attributing their adoption to order-of-magnitude speed improvements. Commenters debated whether this constitutes Rust "taking over" or simply continuing Python's historical role as a glue language for C/C++ extensions, with many arguing Rust is primarily replacing C/C++ in this niche due to its memory safety and modern tooling. Concrete outcomes include the successful migration of high-profile projects like Pydantic v2 to a Rust core (pydantic-core) and the emergence of a commercial entity, Astral (creators of Ruff and uv), securing venture funding to develop these Rust-based tools. The discussion revealed significant community friction, with critics labeling Rust advocates as overly vocal and expressing concern about ecosystem lock-in and compile-time dependencies, while proponents highlighted tangible gains in developer experience and performance.

Rust