NavigationContentFooter
Suggest an edit

Dealing with disk_full mode in a Database Instance

Reviewed on 18 December 2023Published on 16 February 2023

Whenever your Database Instance volume is close to reaching full capacity, your Database Instance switches to disk_full mode.

The Database Instance switches to disk_full mode when the free space falls under 2% of the total volume size.

For Database Instances where 2% of the volume size is more than 2 GB, this threshold is 2 GB.

This state allows you to increase your volume, if you use Block Storage, or upgrade your node type. You can also clear some space in your volume to increase your capacity.

When the Database Instance switches to disk_full state, the default transaction mode automatically switches to read only. This allows your applications to still access its data, while preventing new data from being added.

If you wish to clear out space in your Database Instance volume, you can carry out the following actions:

  1. Connect to your Database Instance.

  2. Run the following commands to shift to a read write transaction:

    -- On PostgreSQL
    BEGIN;
    SET TRANSACTION READ WRITE;
    -- On MySQL
    SET transaction_read_only=0;
    BEGIN;
  3. Clear out data from your database.

  4. Commit your changes.

    COMMIT;

When your Database Instance has enough space again, the default transaction mode changes back to read write, allowing operations to return to normal.

Important

Failing to clear out some of your data or forcing insertions while the database is in disk_full mode leads to downtime.

Docs APIScaleway consoleDedibox consoleScaleway LearningScaleway.comPricingBlogCarreer
© 2023-2024 – Scaleway