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/11 16:55:54 UTC

[couchdb] branch prototype/fdb-replicator updated (9770e9a -> 78ea639)

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 9770e9a  Update and clean up tests
 discard 9bb017a  Update replicator's readme file
 discard 853f3c3  Update and cleanup default.ini replicator entries
 discard fc67a11  Update replicator http handlers and supervisor
 discard ff6cd16  Update backend replicator modules
 discard 1018aaf  Update frontend replicator modules
 discard 8acd9fb  Introduce couch_replicator_jobs abstraction module
 discard 8c2c70a  Update couch_replicator_ids
 discard 9377509  Handle option maps in lower level modules
 discard d8b262f  Move parsing and validation to couch_replicator_parse module
 discard 12a1f3e  Cleanup couch_replicator_utils module
 discard b30602d  Delete old 2.x-3.x replicator modules
 discard b89a23a  Add fold_jobs/4 and pending_count/2,3 to couch_jobs API
 discard 9b5cd15  Handle possible iodata from jiffy:encode in couch_jobs
 discard aa6f4c3  Read attachment data outside the transaction
 discard 46b28bc  Add after_db_create/2 and after_db_delete/2 callbacks to fabric
     add 947308d  Allow creating new deleted documents
     add 3acb20d  Implement ebtree:insert_multi/3
     add 3e969fc  Implement ebtree:lookup_multi/3
     add 02e5914  Implement caching of immutable ebtree nodes
     add 2dd85af  Optimize umerge_members
     add b55afbd  Disable node validation in production
     add f677f1e  Add option to delay responses until the end
     add b82a575  Make COPY doc return only one "ok"
     add fe7d521  Merge pull request #3133 from bessbd/backport-fdb-fix-copy-doc
     add a819e45  Add node and pid to indexer active tasks output
     add 6cedf87  Update all the type monitors after setting any couch jobs type timeout
     add 9412526  Fix flaky active tasks test
     add 56e0f9c  Fix buffer_response=true (#3145)
     add eac42e6  Add after_db_create/2 and after_db_delete/2 callbacks to fabric
     add 07c3f41  Read attachment data outside the transaction
     add 38f605d  Handle possible iodata from jiffy:encode in couch_jobs
     add b04403a  Add fold_jobs/4 and pending_count/2,3 to couch_jobs API
     add 01eb8f8  Delete old 2.x-3.x replicator modules
     add 1bb4014  Cleanup couch_replicator_utils module
     add 14166d6  Move parsing and validation to couch_replicator_parse module
     add 3191876  Handle option maps in lower level modules
     add 4a20c27  Update couch_replicator_ids
     add c3f39ea  Introduce couch_replicator_jobs abstraction module
     add 00180f8  Update frontend replicator modules
     add 5b56575  Update backend replicator modules
     add 8c4b5f9  Update replicator http handlers and supervisor
     add 94f4b9b  Update and cleanup default.ini replicator entries
     add 2aa64c8  Update replicator's readme file
     add 78ea639  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   (9770e9a)
            \
             N -- N -- N   refs/heads/prototype/fdb-replicator (78ea639)

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:
 rel/overlay/etc/default.ini                        |   3 +
 src/chttpd/src/chttpd.erl                          |  61 ++-
 src/chttpd/src/chttpd_db.erl                       |   2 +-
 src/chttpd/test/eunit/chttpd_db_test.erl           |  12 +
 src/chttpd/test/eunit/chttpd_delayed_test.erl      |  72 ++++
 src/couch_jobs/src/couch_jobs.erl                  |   3 +-
 src/couch_views/src/couch_views_util.erl           |   4 +-
 .../test/couch_views_active_tasks_test.erl         |  16 +
 src/ebtree/src/ebtree.erl                          | 434 ++++++++++++++++++---
 src/fabric/src/fabric2_db.erl                      |  11 +-
 src/fabric/test/fabric2_doc_crud_tests.erl         |  12 +-
 11 files changed, 569 insertions(+), 61 deletions(-)
 create mode 100644 src/chttpd/test/eunit/chttpd_delayed_test.erl