You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by va...@apache.org on 2020/09/15 19:44:09 UTC

[couchdb] branch prototype/fdb-replicator updated (fb50329 -> a39c315)

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

vatamane pushed a change to branch prototype/fdb-replicator
in repository https://gitbox.apache.org/repos/asf/couchdb.git.


 discard fb50329  Update and clean up tests
 discard 56e022b  Update replicator's readme file
 discard 87101f4  Update and cleanup default.ini replicator entries
 discard ed8cafc  Update replicator http handlers and supervisor
 discard 8231812  Update backend replicator modules
 discard e561b05  Update frontend replicator modules
 discard ccb2020  Introduce couch_replicator_jobs abstraction module
 discard a9ea3a6  Update couch_replicator_ids
 discard 9a8cb62  Handle option maps in lower level modules
 discard 321f294  Move parsing and validation to couch_replicator_parse module
 discard 53d37fc  Cleanup couch_replicator_utils module
 discard 0f7be24  Delete old 2.x-3.x replicator modules
 discard c69efff  Add fold_jobs/4 and pending_count/2,3 to couch_jobs API
 discard aefecd3  Handle possible iodata from jiffy:encode in couch_jobs
 discard 285263e  Read attachment data outside the transaction
 discard ce70b29  Add after_db_create/2 and after_db_delete/2 callbacks to fabric
     add 15ff580  Remove couch_rate
     add a626125  Optimize view indexer batch sizes
     add 8cd1792  Move error reporting test to EUnit
     add b178dd8  Add after_db_create/2 and after_db_delete/2 callbacks to fabric
     add 19652e4  Read attachment data outside the transaction
     add 819da5a  Handle possible iodata from jiffy:encode in couch_jobs
     add 29bc4a1  Add fold_jobs/4 and pending_count/2,3 to couch_jobs API
     add 8f3db14  Delete old 2.x-3.x replicator modules
     add f542d66  Cleanup couch_replicator_utils module
     add b445777  Move parsing and validation to couch_replicator_parse module
     add dd813fa  Handle option maps in lower level modules
     add 3f8143b  Update couch_replicator_ids
     add 4aa640a  Introduce couch_replicator_jobs abstraction module
     add 39dcf0f  Update frontend replicator modules
     add ce63f38  Update backend replicator modules
     add 6ccae11  Update replicator http handlers and supervisor
     add dd2e636  Update and cleanup default.ini replicator entries
     add 2a29324  Update replicator's readme file
     add a39c315  Update and clean up tests

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (fb50329)
            \
             N -- N -- N   refs/heads/prototype/fdb-replicator (a39c315)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

No new revisions were added by this update.

Summary of changes:
 .credo.exs                                         |   1 -
 .gitignore                                         |   1 -
 Makefile                                           |   2 +-
 mix.exs                                            |   8 +-
 mix.lock                                           |   1 -
 rebar.config.script                                |   1 -
 rel/files/eunit.ini                                |   3 -
 rel/overlay/etc/default.ini                        |  13 +-
 src/couch_rate/README.md                           | 155 --------
 src/couch_rate/src/couch_rate.app.src              |  24 --
 src/couch_rate/src/couch_rate.erl                  | 318 -----------------
 src/couch_rate/src/couch_rate.hrl                  |  19 -
 src/couch_rate/src/couch_rate_app.erl              |  28 --
 src/couch_rate/src/couch_rate_config.erl           |  66 ----
 src/couch_rate/src/couch_rate_ets.erl              | 119 -------
 src/couch_rate/src/couch_rate_limiter.erl          | 392 ---------------------
 src/couch_rate/src/couch_rate_pd.erl               |  90 -----
 src/couch_rate/src/couch_rate_sup.erl              |  36 --
 .../test/exunit/couch_rate_config_test.exs         |  88 -----
 .../test/exunit/couch_rate_limiter_test.exs        | 350 ------------------
 src/couch_rate/test/exunit/test_helper.exs         |  14 -
 src/couch_views/README.md                          |  53 ++-
 src/couch_views/src/couch_views.app.src            |   3 +-
 src/couch_views/src/couch_views_batch.erl          |  86 +++++
 src/couch_views/src/couch_views_batch_impl.erl     | 248 +++++++++++++
 src/couch_views/src/couch_views_indexer.erl        |  90 +++--
 .../test/couch_views_active_tasks_test.erl         |   4 +-
 src/couch_views/test/couch_views_batch_test.erl    |  90 +++++
 src/couch_views/test/couch_views_error_test.erl    | 102 ++++++
 src/couch_views/test/couch_views_indexer_test.erl  |  53 +--
 src/couch_views/test/couch_views_server_test.erl   |   1 -
 .../test/couch_views_trace_index_test.erl          |   2 +-
 test/elixir/test/map_test.exs                      |  32 --
 33 files changed, 620 insertions(+), 1873 deletions(-)
 delete mode 100644 src/couch_rate/README.md
 delete mode 100644 src/couch_rate/src/couch_rate.app.src
 delete mode 100644 src/couch_rate/src/couch_rate.erl
 delete mode 100644 src/couch_rate/src/couch_rate.hrl
 delete mode 100644 src/couch_rate/src/couch_rate_app.erl
 delete mode 100644 src/couch_rate/src/couch_rate_config.erl
 delete mode 100644 src/couch_rate/src/couch_rate_ets.erl
 delete mode 100644 src/couch_rate/src/couch_rate_limiter.erl
 delete mode 100644 src/couch_rate/src/couch_rate_pd.erl
 delete mode 100644 src/couch_rate/src/couch_rate_sup.erl
 delete mode 100644 src/couch_rate/test/exunit/couch_rate_config_test.exs
 delete mode 100644 src/couch_rate/test/exunit/couch_rate_limiter_test.exs
 delete mode 100644 src/couch_rate/test/exunit/test_helper.exs
 create mode 100644 src/couch_views/src/couch_views_batch.erl
 create mode 100644 src/couch_views/src/couch_views_batch_impl.erl
 create mode 100644 src/couch_views/test/couch_views_batch_test.erl
 create mode 100644 src/couch_views/test/couch_views_error_test.erl