Files
markdown/blog/1.技术栈/992.AppWrite 项目资源占用情况.md
2025-08-08 10:01:03 +08:00

74 lines
1.4 KiB
Markdown
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
title: AppWrite 项目资源占用情况
description: AppWrite 项目资源占用情况
date: 2025-06-26
img: https://lijue-me.oss-cn-chengdu.aliyuncs.com/20250622140934487.png
navigation:
icon: simple-icons:appwrite
---
## CPU占用不高内存经过统计
> Debian12 Docker-compose部署AppWrite 1.7.3版
> 内存占用1.72G
```
根据 docker-compose 文件中的所有 Appwrite 相关容器内存占用情况如下
### 主要服务容器内存占用:
- appwrite (主服务): 345.5 MiB
- appwrite-realtime: 89.17 MiB
- appwrite-browser: 196.9 MiB
- appwrite-assistant: 98.13 MiB
- appwrite-mariadb: 125.7 MiB
- appwrite-redis-insight-1: 118.2 MiB
- appwrite-graphql-explorer: 53.55 MiB
### Worker 和 Task 容器内存占用:
- 各种 worker 容器: 30-46 MiB 每个
- 各种 task 容器: 33-46 MiB 每个
- 总计约 20+ 个 worker/task 容器
### 辅助服务容器内存占用:
- appwrite-redis: 10.66 MiB
- appwrite-console: 6.188 MiB
- appwrite-adminer: 8.625 MiB
- appwrite-mailcatcher: 21.36 MiB
- appwrite-requestcatcher: 20.09 MiB
- appwrite-traefik: 48.15 MiB
## 最终统计结果:
Appwrite 所有容器总内存占用1,761.91 MiB ≈ 1.72 GiB
这个数字包含了:
- Appwrite 核心服务
- 所有 worker 和 task 进程
- 数据库 (MariaDB)
- 缓存 (Redis)
- 反向代理 (Traefik)
- 各种辅助工具和可视化界面
所以 Appwrite 项目精确占用约 1.72 GB 内存。
```