ELSEIF
Your brief EB
362 stories from 119 feeds 483 clusters Refreshed 7 minutes ago next pull 17:37

DATABASES Signal 324

What else runs on your Postgres server, and how do we stop it from taking the database down?

ClickHouse Managed Postgres uses cgroup v2 memory limits, GOMEMLIMIT, and disk-full session exemptions to keep supporting processes from compromising database availability.

WHY IT MATTERS

For engineers running Postgres alongside monitoring and backup agents, this shows a concrete pattern for isolating auxiliary processes so they cannot exhaust memory or CPU and take down the database. The approach combines runtime-level Go heap targets with kernel-enforced cgroup ceilings and scoped OOM victim selection.

Written by elseif from the cluster below · every claim links back to a source

The three things worth knowing

01

Supporting services run in a separate cgroup v2 slice with memory.high and memory.max controls.

02

GOMEMLIMIT makes Go runtimes collect garbage more aggressively before hitting cgroup limits.

03

Disk-full watchdog terminates sessions except replication and monitoring usernames.

THE CLUSTER

Same story, 1 feed.

ORDERED BY FIRST SEEN
ClickHouse What else runs on your Postgres server, and how do we stop it from taking the database down? Open ↗