---
title: "All Your GUCs in a Row: commit_delay and commit_siblings"
url: https://daily.dev/posts/all-your-gucs-in-a-row-commit-delay-and-commit-siblings-ny2v6xixo
source_url: https://postgr.es/p/9kD
type: article
source: "Planet PostgreSQL"
published: 2026-05-31T07:44:53.207Z
updated: 2026-05-31T09:22:53.832Z
tags: ["backend", "postgresql"]
reading_time: 4
upvotes: 0
comments: 0
language: en
---

> ## Documentation Index
> Fetch the complete documentation index at: https://daily.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# All Your GUCs in a Row: commit_delay and commit_siblings

**[Planet PostgreSQL](https://daily.dev/sources/planet-postgresql)** · 4 min read · 0 upvotes · 0 comments

## Summary

A deep dive into PostgreSQL's `commit_delay` and `commit_siblings` GUC parameters, explaining how they control group commit behavior by introducing a deliberate pause before WAL flushes to batch more transactions. The post clarifies the post-9.3 group commit mechanics, explains the correct tuning method using `pg_test_fsync` to measure flush cost, and describes how to interpret `pg_stat_wal` (or `pg_stat_io` in PG18) to confirm WAL sync is actually the bottleneck. The key insight: raise `commit_siblings` on fast storage (only batch under heavy concurrency), lower it on slow storage. For most workloads, defaults are correct, and `synchronous_commit` is a bigger lever for commit-cost savings.

## Full article

daily.dev links to this article rather than hosting it. Read it at the original source: <https://postgr.es/p/9kD>

## Similar posts on daily.dev

- [All Your GUCs in a Row: fsync](https://daily.dev/posts/all-your-gucs-in-a-row-fsync-6hzisw8sb) · Planet PostgreSQL · 0 upvotes · 0 comments
- [All Your GUCs in a Row: data\_sync\_retry](https://daily.dev/posts/all-your-gucs-in-a-row-data-sync-retry-i7zey1kmj) · Planet PostgreSQL · 0 upvotes · 0 comments
- [All Your GUCs in a Row: default\_transaction\_deferrable](https://daily.dev/posts/all-your-gucs-in-a-row-default-transaction-deferrable-cktpaq3fg) · Planet PostgreSQL · 0 upvotes · 0 comments

---

Tags: [#backend](https://daily.dev/tags/backend), [#postgresql](https://daily.dev/tags/postgresql)

[View this post on daily.dev](https://daily.dev/posts/all-your-gucs-in-a-row-commit-delay-and-commit-siblings-ny2v6xixo)
