Upsun User Documentation

Troubleshoot disks

Sign up

Get your free trial by clicking the link below.

Get your Upsun free trial

For more general information, see how to troubleshoot development.

Low disk space Anchor to this heading

If you have set up health notifications, you may receive a notification of low disk space.

To solve this issue:

Check your database disk space Anchor to this heading

To get approximate disk usage for a database, run the command upsun db:size. This returns an estimate such as the following:

+----------------+-----------------+--------+
| Allocated disk | Estimated usage | % used |
+----------------+-----------------+--------+
| 1.0 GiB        | 520.3 MiB       | ~ 51%  |
+----------------+-----------------+--------+

Keep in mind that this estimate doesn’t represent the exact real size on disk. But if you notice that the usage percentage is high, you may need to increase the available space.

Increase available disk space Anchor to this heading

If you find that your application or service is running out of disk space, you can increase the available storage.

To increase the space available for applications and services, use the upsun resources:set command. For more information, see how to manage resources.

No space left on device Anchor to this heading

During the build hook, you may see the following error:

W: [Errno 28] No space left on device: ...

This is caused by the amount of disk provided to the build container before deployment. Application images are restricted to 8ย GB during build, no matter how much writable disk has been set aside for the deployed application.

Some build tools (yarn/npm) store cache for different versions of their modules. This can cause the build cache to grow over time beyond the maximum. Try clearing the build cache and triggering a redeploy.

If for some reason your application absolutely requires more than 8ย GB during build, you can open a support ticket to have this limit increased.

Is this page helpful?