ELSEIF
Your brief EB
398 stories from 200 feeds 1258 clusters Refreshed 57 minutes ago next pull 08:32

TOPIC

Databases

Storage engines, query planners, and the pipelines that move data between them. Benchmarks with methodology, migrations with real numbers, and the failure modes worth designing around before you meet them.

5TODAY
8FEEDS
7mMEDIAN
FEEDS Techmeme 147 Hacker News 82 ClickHouse 44 Lobsters 32 PostgreSQL 19 www.theregister.com - Articles 19 Engadget 18 Tomshardware 16

DATABASES

Everything in Databases.

01 409 new

Databases Farid Zakaria’s Blog

Prototype replaces ELF executable format with SQLite database for direct execution

Why it matters — ELF is a de-facto database that reinvents indexing, string interning and schema management. Replacing it with SQLite could eliminate redundant parsers and enable declarative analysis of binaries. The prototype demonstrates feasibility but adoption would require toolchain and kernel changes

4 feeds
13 min
02 373 new

Databases Tailscale

How we tracked down a 16-year-old SQLite bug

Why it matters — SQLite is widely trusted for its stability, but this bug reveals that even mature, single-writer deployments can encounter rare but severe corruption. For engineers running SQLite at scale, the incident underscores the need for robust integrity checks and recovery pipelines. The fix also demonstrates how persistent forensic analysis can resolve elusive, low-level issues.

4 feeds
14 min
03 333 -6

Databases ClickHouse

The official ClickHouse provider for Apache Airflow is now available

Why it matters — This integration allows teams using ClickHouse to orchestrate data workflows within Apache Airflow more seamlessly. By using standard SQL operators, it reduces the complexity of connecting the two systems and helps maintain compatibility with future ClickHouse updates.

1 feed
6 min
05 321 -4

Databases Blog — PlanetScale

Introducing TIN: full-text search for Postgres

Why it matters — TIN enhances Postgres with a robust full-text search capability that meets various application needs. This extension allows for complex queries and real-time updates, which can significantly improve application performance and user experience.

2 feeds
15 min
06 318 new

Databases The Consensus (Paywall)

Cassandra 6 reportedly adds strictly serializable cross-partition ACID transactions with Accord

Why it matters — For engineers building distributed applications, this change could reduce complexity by allowing multi-partition transactions without sacrificing Cassandra’s scalability. However, adoption may require schema redesign and performance tuning, as Accord’s strict serializability imposes coordination overhead.

3 feeds
3 min
07 312 new

Databases Cloudflare

Announcing Cloudflare Wallets: The programmable wallet for the agentic Internet

Why it matters — The solution removes the manual steps agents currently face when trying new APIs, allowing them to explore services autonomously. By pairing verifiable handles with programmable spending limits, it reduces friction while keeping financial risk under human control. This creates the foundation for a two-sided agentic market where providers can sell resources headlessly and agents can consume them without constant oversight.

2 feeds
7 min
08 308 new

Databases DuckDB

A Preview of DuckDB v2.0

Why it matters — The server mode lets DuckDB run as a networked service, enabling multi-tenant and long-running deployments that were previously limited to in-process use. VARIANT becoming first-class simplifies handling of evolving semi-structured data without manual schema definition, which is valuable for real-time log ingestion. The async I/O, new parser and storage format introduce performance and compatibility changes that developers will need to evaluate when upgrading.

3 feeds
14 min
09 307 -5

Databases ClickHouse

Postgres week in the Netherlands: PGDay Lowlands & Percona Live 2026

Why it matters — PGDay Lowlands and Percona Live are significant gatherings for PostgreSQL enthusiasts and professionals. They provide an opportunity for engineers to learn about the latest developments and best practices in PostgreSQL and related technologies, such as ClickHouse integrations.

1 feed
8 min
11 279 new

Databases The Consensus (Paywall)

SQLite WAL-Reset bug let checkpoints discard committed frames for sixteen years

Why it matters — This is a data integrity bug in SQLite's WAL mechanism that has existed for sixteen years, meaning any SQLite database using WAL mode could have silently lost committed writes or become corrupted. The fact that it reproduces within seconds using only the public API makes it a practical concern for anyone relying on SQLite for durable storage.

2 feeds
3 min
12 269 new

Databases DuckDB

DuckDB v2.0: Your Database Deserves a Better Parser

Why it matters — The parser is a foundational component of any database system, dictating how SQL queries are validated and structured. A more maintainable and extensible parser reduces friction for future DuckDB enhancements, particularly as its SQL dialect diverges further from PostgreSQL. This change is transparent to users but critical for developers working on DuckDB internals or custom extensions.

2 feeds
14 min
13 267 new

Databases Farid Zakaria’s Blog

nixpkgs-multiverse explores three ways to query SQLite from inside Nix evaluation

Why it matters — Nix has no builtins.sqlite, and its JSON parsing is eager, meaning a 5.3 MB index file is fully parsed and materialized on the Nix heap for every lookup. For projects like nixpkgs-multiverse that index 305,492 package versions, this makes JSON impractical as the index grows. The post outlines escape hatches that trade safety or ergonomics for query efficiency.

2 feeds
11 min
14 257 new

Databases ClickHouse

What's new in pg_clickhouse v0.10.0: Subqueries, TPC-H Speedups, C Driver, and Aggregates

Why it matters — Engineers using PostgreSQL-to-ClickHouse federation can now run more analytical queries entirely inside ClickHouse, cutting latency by orders of magnitude for workloads that previously required row-by-row evaluation. The updated C driver reduces maintenance overhead and fixes concurrency bugs that could cause intermittent failures under load. Knowing the remaining unsupported TPC-H shapes helps teams plan further query rewrites or await future pg_clickhouse enhancements.

2 feeds
11 min
16 252 new

Databases prela-lang.org

UCLA RePL's Prela tutorial demonstrates a query language based on binary relations in 11 lines of Python

Why it matters — For engineers who model relational data, the tutorial offers a different abstraction: every wide table is decomposed into two-column relations that compose like functions, with foreign-key resolution handled implicitly. The cost is visible in the prototype, more relations to keep track of, tuple-nested results from `&`, and no query planner or persistence layer. The article is a principles tutorial rather than a production release, so any claim that Prela is "better" than SQL rests on the one line-count comparison it shows.

2 feeds
6 min
18 252 new

Databases Farid Zakaria’s Blog

Executables stored as SQLite databases enable queryable state and code in single files

Why it matters — This approach collapses binary tooling and application state into SQL, eliminating the need for separate filesystems like /var or /tmp. For engineers, it introduces a novel way to manage program state and configuration, but may complicate debugging and security auditing due to mutable executables. The trade-off between simplicity and operational risks will determine adoption

2 feeds
8 min
20 252 new

Databases antithesis.com

Breaking the WAL

Why it matters — This demonstrates how automated, deterministic testing can rapidly uncover rare concurrency bugs that evade traditional testing. For engineers maintaining critical systems, it highlights the potential to reduce months of debugging to minutes of automated analysis. The event also underscores the difficulty of reproducing timing-sensitive database bugs in production environments

2 feeds
4 min
21 252 new

Databases ducklabs.com

AWS acquires DuckLabs, DuckDB and related projects to remain open source under MIT license

Why it matters — DuckDB’s adoption has grown rapidly due to its lightweight, high-performance analytical capabilities, often used for embedded analytics and data processing. AWS’s acquisition provides DuckLabs with resources to scale development and infrastructure while maintaining open-source governance. Engineers using DuckDB can expect continued support and potential deeper integration with AWS services, but long-term independence of the project may shift under AWS ownership.

2 feeds
8 min
22 249 new

Databases Blog — PlanetScale

Concurrency vs. Throughput: why more parallelism can make databases slower

Why it matters — Engineers must recognize that locking is not the only source of contention; version chain traversal can turn read-only work into a scalability bottleneck. Understanding the difference between queuing thread pools and fail-fast transaction pools helps prevent a slowdown from cascading into widespread errors. Proper concurrency limits and backpressure mechanisms are essential to keep the database stable under load.

2 feeds
8 min
23 247 new

Databases Blog — PlanetScale

118 million queries per second on Neki

Why it matters — Independent Databases feeds picked this up separately, which is the signal elseif ranks on. Open the cluster below to compare how each feed framed it.

2 feeds
2 min
24 247 new

Databases The Verge

Walmart begins nationwide Tap to Pay rollout for Apple Pay and Google Pay by end of the year

Why it matters — Engineers will need to enable Tap to Pay functionality on Walmart’s payment systems while keeping existing Walmart Pay and Scan-and-Go options operational. The phased rollout means payment software must support both new and legacy methods during the transition, increasing testing and maintenance effort. Engineers should also plan for the later deployment at fuel stations, which will not see Tap to Pay until the middle of 2027.

4 feeds
3 min
25 247 -2

Databases LWN.net

[$] LWN.net Weekly Edition for September 17, 2026

Why it matters — The discussion on server-data encryption is critical for ensuring data security in database management. Updates on PostgreSQL patches indicate ongoing improvements and potential vulnerabilities that engineers need to address. Additionally, faster kernel builds can enhance performance and efficiency in software development processes.

1 feed
4 min
26 245 new

Databases Blog — PlanetScale

Sharded Postgres query traverses router, four shards, and distributed planner to return unified result

Why it matters — Engineers scaling Postgres must understand how sharding transforms a simple query into a distributed operation. The router’s complexity is hidden from applications, but its failure modes and performance costs are not. This lifecycle reveals where latency, consistency, and availability trade-offs emerge in production.

2 feeds
25 min
28 239 new

Databases Blog — PlanetScale

Leaked session state in PgBouncer transaction mode poisons Postgres connection pools with read-only errors

Why it matters — This issue is difficult to diagnose because the database itself is healthy, but reused connections retain stale state from previous clients. Running DISCARD ALL on pooled connections clears the poisoned state, but the application code leaking the session settings must be fixed to prevent recurrence.

2 feeds
5 min
29 227 -3

Databases Techmeme

EU proposes Kids Act requiring age verification tools on social networks to prevent under-15s from opening accounts

Why it matters — The Kids Act aims to enhance online safety for children by implementing strict age verification measures on social networks. This could significantly impact how social media platforms design their user registration processes and privacy policies. Compliance will require substantial updates to existing systems, affecting operational costs and user engagement strategies.

1 feed
71 min
32 221 new

Databases Techmeme

Stripe reportedly acquires AI model router OpenRouter for over $7B to integrate inference billing

Why it matters — This acquisition signals Stripe’s push into AI infrastructure, treating model inference as a payments problem. For engineers, it suggests tighter integration between AI workloads and billing systems, potentially reducing friction in multi-model deployments. The valuation jump from $1.3B to $7B in months underscores the perceived strategic value of AI routing layers.

2 feeds
33 min
36 214 new

Databases Simon Willison

SQLite compressed text-history prototypes

Why it matters — The technique reduces the disk footprint of versioned documents from megabytes to a few kilobytes, which can lower hosting costs and improve backup times. It also offers a relational-database-native way to keep revision history without adding a separate service, but it introduces recompression work and limits random access to individual revisions.

1 feed
4 min
39 205 new

Databases PostgreSQL

LibreDB Studio: an open source, self-hosted SQL IDE for PostgreSQL in the browser

Why it matters — It removes the need to install an IDE on each developer machine by providing a centralized, browser-accessible tool. Deployment alongside the database ensures low-latency connections and uses pooled connections with explicit transaction control. Role-based access control and optional query assistant are tied to the database schema, limiting actions to what the connected role can see.

1 feed
2 min
40 206 new

Databases LWN.net

PostgreSQL 19 release quality questioned over late-breaking feature concerns

Why it matters — If quality issues persist into the release, teams relying on PostgreSQL's predictable annual cadence may face a choice between adopting a potentially unstable major version or delaying upgrades. The concerns also highlight tension between the project's release schedule and its feature-readiness.

1 feed
2 min