Disk quota exceeded on OpenShift

后端 未结 4 1011
野趣味
野趣味 2020-12-29 14:08

I just deployed application to OpenShift, and it worked fine, until I ment to push changes. Then it started to warn me about disk quota exceeded, and I\'m not able to do any

相关标签:
4条回答
  • 2020-12-29 14:17

    MongoDB preallocates data files and may preallocate journal files.

    If your database is empty and/or you don't care about the data, try stopping mongod and then blowing away your data directory. Then verify/set the following mongod options:

    smallfiles=true
    noprealloc=true
    
    0 讨论(0)
  • 2020-12-29 14:20

    Something that also helped me was to disable journaling

    Laying out complete steps

    1. SSH into your OpenShift

      rhc ssh $@ -a $app
      
    2. In the MongoDB configuration

      vim ~/mongodb/conf/mongodb.conf
      

      add or set

      nojournal = true
      

    Note: ~ automatically resolves to /var/lib/openshift/<YOUR_OPENSHIFT_ID>

    1. Delete previous journal data

      rm ~/mongodb/data/journal/*
      

    Then exit from SSH, and

    1. restart MongoDB

      rhc cartridge-restart mongodb-2.4 -a $app
      

    This of course, comes at the cost of not journaling, which is helpful for recovering the data in case of corruption or unclean shutdown. But if you're just testing things out and running out of space then disabling journaling can be very helpful as it takes a lot of space.

    0 讨论(0)
  • 2020-12-29 14:31

    If you're hitting the disk quota that's either because you hit the size or inode limit.

    To fix the size you can clean up tmp folders, app logs, git repos etc. You can use:

    rhc app-tidy -a <appname>
    

    To check if you're hitting the inode limit use quota command:

    quota -s
    

    To fix the quota issue, you will need to keep number of files to a minimum.

    If that doesn't help and you can try to shutdown the MongoDB and delete the contents of mongodb folder (i.e. use helmy's advice).

    0 讨论(0)
  • 2020-12-29 14:38

    I have the same problem. Login into your mongodb and run:

    db.repairDatabase()
    

    See more at: MongoDB - file size is huge and growing

    0 讨论(0)
提交回复
热议问题