gpt4 book ai didi

linux - EC2 微型实例 CPU 每天定期达到 100%

转载 作者:IT王子 更新时间:2023-10-29 00:19:42 24 4
gpt4 key购买 nike

enter image description here

我知道如果 Amazon 占用了一定数量的 CPU 时间,它就会限制微型实例,但我认为情况并非如此。所有尖峰都出现在世界标准时间 6:30 到 6:40 左右。我检查了我的 cron 作业,没有为那个时间安排任何事情:

@reboot ~/path/to/script1.sh >> ~/log/cron.log
0 13 * * * ~/path/to/script2.sh >> ~/log/cron.log

还能是什么?

PS:请注意 CPU 利用率下拉列表设置为“最大”。该图看起来与“平均”相似。PPS:此实例是 2 实例负载平衡设置的一部分。

这是我的/etc/cron.daily 中的内容(其他 cron 是空的):

apport, apt, aptitude, bsdmainutils, dpkg, logrotate, man-db, mlocate, passwd, popularity-contest, standard, update-notifier-common

最佳答案

通常,Amazon 上的 Ubuntu AMI 在 /etc/cron.daily 下将其日常 cron 作业安排在早上。此计划使用 /etc/crontab 进行管理。以下是示例 /etc/crontab 的样子:

$ cat /etc/crontab 
# /etc/crontab: system-wide crontab
# Unlike any other crontab you don't have to run the `crontab'
# command to install the new version when you edit this file
# and files in /etc/cron.d. These files also have username fields,
# that none of the other crontabs do.

SHELL=/bin/sh
PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin

# m h dom mon dow user command
17 * * * * root cd / && run-parts --report /etc/cron.hourly
25 6 * * * root test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.daily )
47 6 * * 7 root test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.weekly )
52 6 1 * * root test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.monthly )
#

显然,日常任务在早上 6:25 运行。如果这会影响服务器的直接交付,您可能需要调整这些设置以将日常任务移至其他时间。此外,您可以调查 /etc/cron.daily 下的项目。对我来说,它看起来像:

$ ls /etc/cron.daily/
apport apt aptitude bsdmainutils dpkg logrotate man-db mlocate popularity-contest standard

其中,通常 man-dblogrotate 可能会占用主要的 CPU 时间来执行。这些是标准任务,可以调整以获得最佳性能。您可能需要研究调整您的 logrotate 和 man-db 策略。

希望这对您有所帮助。

关于linux - EC2 微型实例 CPU 每天定期达到 100%,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13983323/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com