高重建内存需求:2025年4月版

好的,下一个测试已完成。

我使用以下插件构建:

https://github.com/discourse/docker_manager.git
https://github.com/discourse/discourse-data-explorer
https://github.com/communiteq/discourse-legal-compliance
https://github.com/pfaffman/discourse-allow-pm-to-staff
https://github.com/singerscreations/discourse-stopforumspam
https://github.com/discourse/discourse-cakeday

交换空间被禁用,因此只有 4GiB/3.8GB RAM。

构建期间的最大内存使用量为 3.4GB。构建时间为 6m 48s。

4 个赞

我遇到的问题是交换文件,在将其从0增加到2GB后,目前一切正常。

sudo fallocate -l 2G /swapfile        
sudo chmod 600 /swapfile
sudo mkswap /swapfile
sudo swapon /swapfile
echo '/swapfile none swap sw 0 0' | sudo tee -a /etc/fstab

在你的服务器终端中执行。之后,重新构建。

2 个赞