如何解决“OSError:[Errno 122]超出磁盘配额”?

如何解决“OSError:[Errno 122]超出磁盘配额”?

我运行一个 python3 脚本,该程序将输出几个 JSON 文件,每个文件大约 114.17 MB。但在生成大约 60 个文件后,我收到错误消息:

Traceback (most recent call last):
  File "dlp.py", line 206, in <module>
    json.dump(prediction, fp, indent=2)
OSError: [Errno 122] Disk quota exceeded

我执行quota命令但没有输出(与这里)。

这是我的磁盘统计数据:

$ df -i .
Filesystem                        Inodes    IUsed      IFree IUse% Mounted on
head03-10g:/share/home1/zhusf 6835937472 37193534 6798743938    1% /share/home1/zhusf

$ df -h .
Filesystem                     Size  Used Avail Use% Mounted on
head03-10g:/share/home1/zhusf  319T   79T  241T  25% /share/home1/zhusf

我可以做什么来解决我的问题?

相关内容