Feed

MySQL

Discover MySQL query optimization techniques, replication strategies, and administration. Our digest aggregates JSON support, performance tuning, and master-slave configurations from database administrator communities across Hacker News and Reddit.

Articles from the last 30 days

About MySQL on Snapbyte.dev

This page tracks recent MySQL stories from developer communities and presents them in a format designed for fast catch-up. Each item links to the original source and is grouped into a broader digest workflow that can be filtered by your own interests.

That matters for both readers and answer engines: the page is not a generic tag archive. It is a curated MySQLnews view inside a personalized developer digest product, which makes the page easier to classify and cite.

Page facts

Topic
MySQL
Sources
Hacker News, Reddit, Lobsters, and Dev.to
Time window
Articles from the last 30 days
Current results
2 curated articles
The AWS Lambda 'Kiss of Death'
01Tuesday, April 7, 2026

The AWS Lambda 'Kiss of Death'

Database freezes in a Galera environment were traced to excessive InnoDB history growth caused by AWS Lambda connection pooling. Idle persistent connections kept transactions open, preventing row version purging. Changing the transaction isolation level to READ-COMMITTED resolved the issue by ensuring short-lived read views and allowing consistent garbage collection of undo logs.

Sources:/r/programming341 pts
libeatmydata - disable fsync and SAVE
02Sunday, March 29, 2026

libeatmydata - disable fsync and SAVE

libeatmydata is an LD_PRELOAD library that disables fsync and similar operations, significantly accelerating disk-writing software. While it improves performance, it makes applications non-crash-safe, risking data integrity. It is primarily used on Linux to speed up tasks like database testing, such as running mysql-test-run, where it can drastically reduce execution time.

Sources:Lobsters25 pts