Skip to content

Commit d4e1be0

Browse files
authored
Merge branch 'main' into add-email-observability
2 parents 70b2bc7 + f4d808e commit d4e1be0

16 files changed

Lines changed: 569 additions & 268 deletions

File tree

contributing/styles/config/vocabularies/Platform/accept.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,7 @@ IPs?
8080
JVM
8181
imagetragick
8282
impactful
83+
inodes?
8384
jpegoptim
8485
[Kk]afka
8586
Lando

package-lock.json

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

search/poetry.lock

Lines changed: 77 additions & 76 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

search/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ license = "Attribution-ShareAlike 4.0 International"
77

88
[tool.poetry.dependencies]
99
python = "^3.10"
10-
cryptography = "^46.0.5"
11-
Scrapy = "^2.13.4"
10+
cryptography = "^46.0.7"
11+
Scrapy = "^2.14.2"
1212
meilisearch = "^0.24.0"
1313
platformshconfig = "^2.3.1"
1414
PyYAML = "^6.0"

sites/platform/package-lock.json

Lines changed: 57 additions & 36 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

sites/platform/src/add-services/edgee.md

Lines changed: 0 additions & 43 deletions
This file was deleted.

sites/platform/src/create-apps/troubleshoot-disks.md

Lines changed: 20 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -27,21 +27,27 @@ To fix the error, do one of the following:
2727
* Increase your plan's storage limits.
2828
This can only be done by people with the [manage plans permission](/administration/users.md#organization-permissions).
2929

30-
## Low disk space
30+
## Low disk space or inode exhaustion
3131

32-
If you have set up [health notifications](/integrations/notifications.md),
33-
you may receive a notification of low disk space.
32+
[Health notifications](/integrations/notifications.md) can alert you to low disk space,
33+
inode exhaustion (a file count limit), or both.
3434

35-
To solve this issue:
35+
To help identify the cause, you can:
3636

3737
* [Check mount usage](/create-apps/troubleshoot-mounts.md#disk-space-issues)
3838
* [Check your database disk space](#check-your-database-disk-space) (if applicable)
39-
* [Increase the available disk space](#increase-available-disk-space) (if necessary)
39+
40+
Deleting unnecessary files such as temporary files, logs, or build artifacts can free up disk space and inodes.
41+
If you know their origin, consider setting up automated cleanup to prevent recurrence.
42+
43+
If cleanup measures are insufficient, you can [increase the allocated disk space](#increase-allocated-disk-space).
4044

4145
### Check your database disk space
4246

43-
To get approximate disk usage for a database, run the command `{{% vendor/cli %}} db:size`.
44-
This returns an estimate such as the following:
47+
If you receive a low disk space notification, the database might be a contributing factor.
48+
49+
To get an estimate of current database disk usage, run `{{% vendor/cli %}} db:size`.
50+
The estimate looks something like this:
4551

4652
```text
4753
+----------------+-----------------+--------+
@@ -51,12 +57,11 @@ This returns an estimate such as the following:
5157
+----------------+-----------------+--------+
5258
```
5359

54-
Keep in mind that this estimate doesn't represent the exact real size on disk.
55-
But if you notice that the usage percentage is high, you may need to increase the available space.
60+
Try cleaning up unused data before [increasing the allocated disk space](#increase-allocated-disk-space).
5661

57-
### Increase available disk space
62+
### Increase allocated disk space
5863

59-
If you find that your application or service is running out of disk space,
64+
If you find that your application or service is running out of disk space, available inodes, or both,
6065
you can increase the available storage.
6166

6267
To increase the space available for applications and services,
@@ -74,12 +79,13 @@ During the `build` hook, you may see the following error:
7479
W: [Errno 28] No space left on device: ...
7580
```
7681

77-
This is caused by the amount of disk provided to the build container before deployment.
78-
Application images are restricted to 8 GB during build, no matter how much writable disk has been set aside for the deployed application.
82+
This is caused by the disk limit on the build container — a temporary environment used to compile
83+
your app before deployment. The resulting image is restricted to 8 GB, no matter how much
84+
writable disk has been allocated for the deployed application.
7985

8086
Some build tools (yarn/npm) store cache for different versions of their modules.
8187
This can cause the build cache to grow over time beyond the maximum.
8288
Try [clearing the build cache](/development/troubleshoot.md#clear-the-build-cache) and [triggering a redeploy](/development/troubleshoot.md#force-a-redeploy).
8389

84-
If for some reason your application absolutely requires more than 8 GB during build,
90+
If your application requires more than 8 GB during the build phase,
8591
you can open a [support ticket](/learn/overview/get-support.md) to have this limit increased.

0 commit comments

Comments
 (0)