-
Notifications
You must be signed in to change notification settings - Fork 439
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Couldn't start compute #3405
Comments
Searching logs for this tenant:
So, the pagserver's /storage is full again It grew from 91.7% to 100% disk usage at 9:28 UTC today, see https://neonprod.grafana.net/d/JKnWhTO7z/zenith-pageserver?orgId=1&var-cluster=victoria[…]-east-2.aws.neon.build&from=1674458272063&to=1674479872063 (edited) Do you want me to root-cause why the disk usage grew or is that enough explanation for the error? |
I've run such queries, that can affect the disc size: CREATE TABLE x (x INT);
INSERT INTO x SELECT * FROM generate_series(1, 100000);
SELECT SUM(x) FROM x;
DROP TABLE x;
VACUUM; And I received the error while |
Yeah, that'd be expected. Just in case it's not obvious: even though the SQL is freeing up logical space, this doesn't free up any space on the pageserver, in fact, it consumes more space. Until PITR is over and compaction comes around to generate image layers. But even that needs more space before it can delete the delta layers. |
This is by design and known behavior |
Steps to reproduce
Try to connect to our largest tenant on staging
Expected result
The compute is started
Actual result
Environment
staging
Logs, links
I got the same error while vacuuming this database
the task is related to #3404
The text was updated successfully, but these errors were encountered: