Bug 1314622
Summary: | [RHEL-7] gluster-swift: During GETs, duplicate fd leaks for files that need Etag recomputed | |||
---|---|---|---|---|
Product: | [Red Hat Storage] Red Hat Gluster Storage | Reporter: | Prashanth Pai <ppai> | |
Component: | gluster-swift | Assignee: | Prashanth Pai <ppai> | |
Status: | CLOSED ERRATA | QA Contact: | surabhi <sbhaloth> | |
Severity: | high | Docs Contact: | ||
Priority: | high | |||
Version: | rhgs-3.1 | CC: | nlevinki, rcyriac, rhinduja, rhs-bugs, thiago | |
Target Milestone: | --- | Keywords: | ZStream | |
Target Release: | RHGS 3.1.3 | |||
Hardware: | All | |||
OS: | All | |||
Whiteboard: | ||||
Fixed In Version: | swiftonfile-2.3.0-0 | Doc Type: | Bug Fix | |
Doc Text: | Story Points: | --- | ||
Clone Of: | ||||
: | 1328443 (view as bug list) | Environment: | ||
Last Closed: | 2016-06-23 05:31:38 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: | 1299184, 1328443 |
Description
Prashanth Pai
2016-03-04 05:47:54 UTC
Upstream change on review: http://review.gluster.org/13593 Upstream change merged: http://review.gluster.org/#/c/13593/ Followed following steps : 1. PUT an object with some data : curl -i -d "swiftonfile" http://localhost:8080/v1/AUTH_test/c1/file1 -X PUT 2. curl -i http://localhost:8080/v1/AUTH_test/c1/file1 -X GET 3. Observe the process by attaching to strace: Process 19074 attached with 21 threads [pid 19074] open("/mnt/gluster-object/test/c1/file1", O_RDONLY|O_CLOEXEC) = 10 [pid 19074] close(10) = 0 [pid 19074] close(6) = 0 4. # echo "aaaaaaaaaaa" > /mnt/gluster-object/test/c1/file1 [pid 19074] open("/mnt/gluster-object/test/c1/file1", O_RDONLY|O_CLOEXEC) = 10 [pid 19074] dup(10) = 12 [pid 19074] close(12) = 0 [pid 19074] close(10) = 0 5. # curl -i http://localhost:8080/v1/AUTH_test/c1/file1 -X GET Process 19074 attached with 21 threads [pid 19074] open("/mnt/gluster-object/test/c1/file1", O_RDONLY|O_CLOEXEC) = 10 [pid 19074] close(10) = 0 [pid 19074] close(6) = 0 [pid 19074] open("/mnt/gluster-object/test/c1/file1", O_RDONLY|O_CLOEXEC) = 10 [pid 19074] dup(10) = 12 [pid 19074] close(12) = 0 [pid 19074] close(10) = 0 [pid 19074] close(6) = 0 ls -l /proc/19074/fd | grep file1 There is no fd leak observed on open , dup and also verified there is close on each open. Marking the BZ to verified. Versions: swiftonfile-2.3.0-2.el7rhgs.noarch glusterfs-3.7.9-1.el7rhgs.x86_64 Since the problem described in this bug report should be resolved in a recent advisory, it has been closed with a resolution of ERRATA. For information on the advisory, and where to find the updated files, follow the link below. If the solution does not work for you, open a new bug report. https://access.redhat.com/errata/RHEA-2016:1289 |