Project

General

Profile

ActionsLike0

Feature #6615

closed

Release GVL in zlib when calling inflate() or deflate()

Added by drbrain (Eric Hodel) almost 13 years ago. Updated almost 13 years ago.

Status:
Closed
Assignee:
-
Target version:
[ruby-core:45733]

Description

This patch switches from zstream_run from using rb_thread_schedule() to rb_thread_blocking_region().

I don't see a way to safely interrupt deflate() or inflate() so the unblocking function is empty.

This patch should allow use of output buffer sizes larger than 16KB. I suspect 16KB was chosen to allow reasonable context-switching time for ruby 1.8 and earlier. A larger buffer size would reduce GVL contention when processing large streams.

An alternate way to reduce GVL contention would be to move zstream_run's loop outside the GVL, but some manual allocation would be required as currently the loop uses a ruby String as the output buffer.


Files

zlib.release_gvl.patch (2.32 KB) zlib.release_gvl.patch drbrain (Eric Hodel), 06/21/2012 09:20 AM
zlib.release_gvl.2.patch (5.3 KB) zlib.release_gvl.2.patch Move entire run loop outside GVL drbrain (Eric Hodel), 06/21/2012 03:56 PM
zlib.release_gvl.3.patch (5.35 KB) zlib.release_gvl.3.patch drbrain (Eric Hodel), 06/26/2012 08:27 AM

Added by drbrain (Eric Hodel) almost 13 years ago

Revision 802c468f

  • ext/zlib/zlib.c (zstream_run): Process zlib streams without GVL.
    [Feature #6615]
  • NEWS: ditto.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@36270 b2dd03c8-39d4-4d8f-98ff-823fe69b080e

Added by drbrain (Eric Hodel) almost 13 years ago

Revision 1884f1c0

  • ext/zlib/zlib.c (zstream_run_func): Fix bug that caused early exit
    of GVL-free loop. [Feature #6615]
  • ext/zlib/zlib.c: Fix style to match existing functions.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@36283 b2dd03c8-39d4-4d8f-98ff-823fe69b080e

ActionsLike0

Also available in: Atom PDF