| 60 | | If you have low disk space then you will need to set the environment variable FS_DISK_LIMIT. It holds the minimum percentage of disk space the 4store will insist on having before it will import data. You can set it in your bash profile like: |
| 61 | | |
| 62 | | {{{ |
| 63 | | export FS_DISK_LIMIT=1 |
| 64 | | }}} |
| 65 | | |
| 66 | | After setting this variable you need to restart the backends for it to take effect. |
| 67 | | |
| 68 | | But beware, 4store does not gracefully handle running out of disk space, you will lose the new data if you try to import when there's no free disk space. |
| | 60 | 4store does not gracefully handle running out of disk space, you will lose the new data if you try to import when there's no free disk space. By default it will not allow imports if there is less that 1% of disk space free. This can be altered with the {{{FS_DISK_LIMIT}}} environment variable. |