I replaced a five day spreadsheet with a cron job, then spent two weeks fixing what I got wrong
Every twenty or twenty five days someone at the company would sit down and build a rate card. A rate card is a spreadsheet. Countries down one side,…
Tech news from the best sources
Every twenty or twenty five days someone at the company would sit down and build a rate card. A rate card is a spreadsheet. Countries down one side,…
If you run PostgreSQL in production for a long time, you will probably see this problem at some point: Queries start waiting. Connections increase.…
Here is the disk layout of one mobile mapping survey — a vehicle with a LiDAR scanner and a panoramic camera, driven along a road: data/001_MMS/ 507…
PGW: A PGBACKREST INTERLUDE: (Andreas Scherbaum, Jimmy Angelakos) Andreas Scherbaum and Jimmy Angelakos presented a quantitative analysi…
Originally published at parvejshah.com/blog/scaling-competitive-programming-lms-architectures by Parvej Shah . Competitive programming requires buil…
You've generated thousands of UUIDs without thinking twice. id column, default value, done — a 36-character string that looks like f47ac10b-58cc-437…
The schema catalog for an AI assistant is the artefact that answers the question "what does this database look like right now". Whether the database…
The PostgreSQL manual is unusually direct about this: When an application receives this error message, it should abort the current transaction and r…
Sooner or later, someone on your team wants to point an AI assistant at the production database. Maybe it's a support engineer who wants to answer "…
There is a layer in my database called 1 . Somebody created it, presumably by accident, and it sat there for months looking harmless. It was the onl…
If your third-party OAuth integration works for days and then dies with {"error":"invalid_grant"} , the cause is usually not clock skew, a wrong cli…
A rate limiter changes when it leaves memory Rate limiting can start with a Map and a counter. That is enough for a single process. The design chang…
I was writing a blog post about the architecture of a system I built when I found a bug in it. This is that bug, and the much more interesting thing…
A short refresher for navigating PostgreSQL databases, schemas, and objects from the psql command line. Schemas List all schemas: \ dn List schemas…
At 3 am the pager is activated. Your queue is backed up, your database is on fire, and those two facts are the same fact. This is the trap nobody wa…
Handling payment webhooks sounds straightforward—until network retries hit your server three times in a row, or an attacker intercepts a valid paylo…
The Story: A Simple Requirement Meets Too Much Curiosity A while ago, I received a fairly straightforward ticket in our sprint: "Allow users to add…
Running production databases on cloud infrastructure presents a persistent engineering tradeoff. Managed database services provided by major cloud v…
A comment on my last article was better than the article. The subject was single-database multi-tenancy, and @to21as argued that the predicate shoul…
This is a submission for DEV's Summer Bug Smash: Clear the Lineup . The error message said the operation had failed. PostgreSQL told a different sto…
Why you are here You ran a migration that went sideways, or you are resetting a local dev database, or a test suite needs a clean slate. The psql co…
A manual psql check answers exactly one question: does this policy work right now, against today's schema, with today's roles. It says nothing about…
Mark (aka Winsaucerer) here to show you how you can test your PostgreSQL database like a sorcerer. We are going to be using Spawn, a SQL build syste…
Как я собрал на чистом Ruby мультиплексор поверх pipeline mode из libpq, обогнал классический пул соединений на 27% при вдвое меньшем числе коннекто…
Disclosure: I build Schemity , a desktop ERD tool - this post is from our blog and uses it for the examples. TL;DR: The database has a built-in plac…
The API makes it look trivial. const number = await carrier . numbers . buy ({ phone_number : " +1... " }); await db . insert ( " rented_numbers " ,…
Референсная архитектура движка подбора билетов на redb: канонная модель, Scatter-Gather по трём GDS и ж/д, дерево-маршрут и saga-переоформление в до…
The short version A PostgreSQL connection string is a single URL that tells a client how to reach your database. It looks like this: postgresql : //…
There's a moment every developer hits the first time they connect an AI assistant to a real database: it works beautifully, the model writes a clean…
I run self-hosted Chatwoot as the WhatsApp inbox for a dozen or so small Israeli businesses. Two servers, a few thousand conversations a week, a dri…