You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by ko...@apache.org on 2020/01/06 21:32:52 UTC

[couchdb] branch master updated (c8a5757 -> 7b09892)

This is an automated email from the ASF dual-hosted git repository.

kocolosk pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/couchdb.git.


    from c8a5757  bump hqueue dep for Windows build
     add 6293a8b  Initial commit
     add 04aea73  new IOQ api
     add c7f9ad1  Fallback to direct I/O if ioq is not running
     add 40d157f  Update state on config changes
     add c552c66  Allow to customize concurrency value
     add 2175035  Handle {gen_event_EXIT,{config_listener,ioq},shutdown} message
     add ad60d32  Update config_listener behaviuor
     add 0ffa7cd  Don't restart event handler on termination
     add c7c75eb  Merge remote-tracking branch 'iilyak/2561-make-config-API-consistent'
     add bdcfe6a  Update handle_config_terminate API
     add 126a849  Fix a typo in a child name
     add ba99ec7  Merge remote branch 'cloudant:3102-fix-config_subscription'
     add 5f5375a  Remove unused code
     add 1d2b149  Merge remote branch 'cloudant:remove-unused-config-subscriber'
     add 345804c  Use couch_rand compatibility module
     add 04bebb3  Merge branch 'use-couch-rand-module'
     add e641a74  Enable users to bypass IOQ for certain IO classes
     add 53d3d8f  Add 'src/ioq/' from commit 'e641a740978447f0b29785580e46d2e30e822001'
     add 2ed9a6c  Configure IOQ defaults
     add 7c12f14  Remove ioq/hqueue dependencies, add ioq as subdir
     add 7b09892  Merge pull request #2408 from apache/ioq-in-tree

No new revisions were added by this update.

Summary of changes:
 rebar.config.script                                |   3 +-
 rel/overlay/etc/default.ini                        |  34 ++++
 rel/reltool.config                                 |   2 -
 src/ioq/.gitignore                                 |   2 +
 .../couch_index.app.src => ioq/src/ioq.app.src}    |  12 +-
 src/ioq/src/ioq.erl                                | 189 +++++++++++++++++++++
 .../couch_stats_app.erl => ioq/src/ioq_app.erl}    |   6 +-
 .../couch_peruser_sup.erl => ioq/src/ioq_sup.erl}  |   9 +-
 8 files changed, 237 insertions(+), 20 deletions(-)
 create mode 100644 src/ioq/.gitignore
 copy src/{couch_index/src/couch_index.app.src => ioq/src/ioq.app.src} (73%)
 create mode 100644 src/ioq/src/ioq.erl
 copy src/{couch_stats/src/couch_stats_app.erl => ioq/src/ioq_app.erl} (91%)
 copy src/{couch_peruser/src/couch_peruser_sup.erl => ioq/src/ioq_sup.erl} (89%)