Bug 979182
| Summary: | file count limit not increasing relative to quota increase | |||
|---|---|---|---|---|
| Product: | OpenShift Online | Reporter: | Sumana Annam <sannam> | |
| Component: | Pod | Assignee: | Cesar Wong <cewong> | |
| Status: | CLOSED CURRENTRELEASE | QA Contact: | libra bugs <libra-bugs> | |
| Severity: | medium | Docs Contact: | ||
| Priority: | unspecified | |||
| Version: | 2.x | CC: | cewong, dmcphers, jhou, jofernan, ofayans, rpenta | |
| Target Milestone: | --- | Keywords: | Reopened | |
| Target Release: | --- | |||
| Hardware: | Unspecified | |||
| OS: | Unspecified | |||
| Whiteboard: | ||||
| Fixed In Version: | Doc Type: | Bug Fix | ||
| Doc Text: | Story Points: | --- | ||
| Clone Of: | ||||
| : | 1020776 1039847 (view as bug list) | Environment: | ||
| Last Closed: | 2015-03-19 09:52:55 UTC | Type: | Bug | |
| Regression: | --- | Mount Type: | --- | |
| Documentation: | --- | CRM: | ||
| Verified Versions: | Category: | --- | ||
| oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | ||
| Cloudforms Team: | --- | Target Upstream Version: | ||
| Embargoed: | ||||
| Bug Depends On: | ||||
| Bug Blocks: | 1020776, 1039847 | |||
|
Description
Sumana Annam
2013-06-27 20:43:14 UTC
Fixed in https://github.com/openshift/origin-server/pull/3026. Also test the fixer script 'rhc-fix-gear-filelimit' that will fix max file limit for all existing gears with additional storage (https://github.com/openshift/li/pull/1718). Commit pushed to master at https://github.com/openshift/li https://github.com/openshift/li/commit/23311711512886dde576ccc0d1e07a3d5c73f661 Merge pull request #1718 from pravisankar/dev/ravi/bug979182 Merged by openshift-bot Commits pushed to master at https://github.com/openshift/origin-server https://github.com/openshift/origin-server/commit/808a4f6e7aa232981b4d7de78d56124e52c4d409 Bug 979182 - Increase file limit for the gear in proportion to the filesystem storage. https://github.com/openshift/origin-server/commit/75ca64edbd9dcbe699318f69b6182b67acc4e60e Merge pull request #3026 from pravisankar/dev/ravi/bug979182 Merged by openshift-bot Tested this feature on devenv_3473, the file limit increased properly
Before adding quota(5G)
[d1-jhou.dev.rhcloud.com b514fd52e93111e29e2422000aa42526]\> quota -s
Disk quotas for user b514fd52e93111e29e2422000aa42526 (uid 501):
Filesystem blocks quota limit grace files quota limit grace
/dev/xvde2 420 0 1024M 112 0 40000
After adding quota(5G)
[d1-jhou.dev.rhcloud.com b514fd52e93111e29e2422000aa42526]\> quota -s
Disk quotas for user b514fd52e93111e29e2422000aa42526 (uid 501):
Filesystem blocks quota limit grace files quota limit grace
/dev/xvde2 420 0 6144M 112 0 240k
Also tested this fixer script, for the applications that have additional gear storage, the file limits didn't increase as exepcted
Before fix(On devenv_3271):
[app1-jhou.dev.rhcloud.com 578593102290071706402816]\> quota -s
Disk quotas for user 578593102290071706402816 (uid 503):
Filesystem blocks quota limit grace files quota limit grace
/dev/xvde2 944 0 6144M 273 0 40000
Run the fix script:
[root@ip-10-141-152-11 bin]# ./rhc-fix-gear-filelimit
Summary:: SUCCESS (total: 2, failed: 0)
After fix with rhc-fix-gear-filelimit, the file limit did not change.
[app1-jhou.dev.rhcloud.com 578593102290071706402816]\> quota -s
Disk quotas for user 578593102290071706402816 (uid 503):
Filesystem blocks quota limit grace files quota limit grace
/dev/xvde2 944 0 6144M 273 0 40000
Sorry, for the fix script, should have tested it after the instance is upgraded to version >= devenv_3473. Tested it after upgrading devevn-stage ami to lastest(devenv_3473), and the file limit issue is fixed. This bug could be verified. Reproduced again in the fresh devenv instance. AMI ID is ami-f04a1298 I am not able to reproduce this problem. On a new devenv environment:
- Create app
[root@ip-10-154-250-123 ~]# rhc create-app phptest php-5.4
- Get initial quota
[root@ip-10-154-250-123 ~]# quota -s -u 550862cffa9e89f541000009
Disk quotas for user 550862cffa9e89f541000009 (uid 1000):
Filesystem blocks quota limit grace files quota limit grace
/dev/xvda1 1012 0 1024M 221 0 80000
- Add storage
[root@ip-10-154-250-123 ~]# rhc cartridge-storage php-5.4 --add 1GB -a phptest
Set storage on cartridge ... set to 1GB
Storage Info
------------
Base Gear Storage: 1GB
Additional Gear Storage: 1GB
- Get quota after storage
[root@ip-10-154-250-123 ~]# quota -s -u 550862cffa9e89f541000009
Disk quotas for user 550862cffa9e89f541000009 (uid 1000):
Filesystem blocks quota limit grace files quota limit grace
/dev/xvda1 1012 0 2048M 221 0 160k
Can you please include the steps you used to reproduce the bug and output from the quota command? Thx. I was looking at the different column, sorry about that. |