feat(novel-crawl): 新增磁盘保护机制,支持邮件告警与自动熔断

- 实现定时检测磁盘使用率,避免爬虫耗尽磁盘资源
- 当磁盘使用率达到 85%、90%、95% 时,分别发送告警邮件
- 当使用率达到 95% 时,强制停止当前爬虫进程
This commit is contained in:
xiongxiaoyang
2025-10-24 19:04:50 +08:00
parent 0279a86e56
commit 938ae8571d
8 changed files with 351 additions and 1 deletions

View File

@@ -37,6 +37,10 @@
<artifactId>jackson-databind</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-mail</artifactId>
</dependency>
</dependencies>