You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by wo...@apache.org on 2020/01/16 18:39:15 UTC

[couchdb] branch mango_metrics updated (f55bd00 -> 7429f59)

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

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


    from f55bd00  Instrument Mango execution stats
     add 8d92f21  Reset a view shard if the signature is wrong
     add c8a75fa  Debug mem3 eunit error
     add e10498f  Merge pull request #2438 from apache/reset-corrupt-view-index
     add 73d1e3c  Happy New Year 2020! (#2443)
     add efb374a  Improve replicator error reporting
     add de9c683  Eliminate multiple compiler warnings
     add 3593b5a  Disable JIT compiler on SpiderMonkey 60
     add 660889d  Enable arm64v8 builds on Jenkins (#2436)
     add 0a20de6  Properly account for replication stats when splitting bulk docs batches
     add 3573dcc  Preserve replication job stats when jobs are re-created
     add a27713c  mochiweb v2.20
     add d51ace1  Add SameSite support to auth cookie
     add 34bace7  More way to detect presence of hastings for Ken
     add 5b15c14  Merge pull request #2450 from apache/couchdb-ken-hastings
     add 75e3acb  Fix fabric worker failures for partition requests
     add d7188ba  Debug mem3_sync_event_listener flakiness
     add 7429f59  Merge branch 'master' into mango_metrics

No new revisions were added by this update.

Summary of changes:
 .gitignore                                         |   1 +
 LICENSE                                            |   2 +-
 NOTICE                                             |   2 +-
 build-aux/Jenkinsfile.full                         |  57 ++++-
 rebar.config.script                                |   2 +-
 rel/overlay/etc/default.ini                        |   2 +
 src/couch/priv/couch_js/60/main.cpp                |   3 +
 src/couch/src/couch_bt_engine.erl                  |   2 +-
 src/couch/src/couch_httpd_auth.erl                 |  16 +-
 src/couch/test/exunit/same_site_cookie_tests.exs   |  44 ++++
 src/couch_mrview/src/couch_mrview_index.erl        |   6 +
 .../src/couch_replicator_api_wrap.erl              |  12 +-
 .../src/couch_replicator_scheduler.erl             |   8 +-
 .../src/couch_replicator_scheduler_job.erl         |  63 +++--
 .../src/couch_replicator_stats.erl                 |  38 ++-
 .../src/couch_replicator_worker.erl                |  23 +-
 .../couch_replicator_error_reporting_tests.erl     | 271 +++++++++++++++++++++
 ...ch_replicator_retain_stats_between_job_runs.erl | 145 ++++++++---
 src/dreyfus/src/dreyfus_fabric.erl                 | 133 ++++++++--
 src/dreyfus/src/dreyfus_fabric_group1.erl          |   9 +-
 src/dreyfus/src/dreyfus_fabric_group2.erl          |   9 +-
 src/dreyfus/src/dreyfus_fabric_info.erl            |   6 +-
 src/dreyfus/src/dreyfus_fabric_search.erl          |  18 +-
 src/dreyfus/src/dreyfus_httpd.erl                  |   2 -
 src/dreyfus/src/dreyfus_index_updater.erl          |   4 +-
 src/dreyfus/src/dreyfus_util.erl                   |  24 +-
 src/fabric/src/fabric_db_partition_info.erl        |  84 +++++--
 src/fabric/src/fabric_util.erl                     |   7 +-
 src/fabric/src/fabric_view.erl                     |  36 +--
 src/ken/rebar.config.script                        |   4 +-
 src/mem3/src/mem3_rep.erl                          |   1 -
 src/mem3/src/mem3_sync_event_listener.erl          |   6 +-
 test/elixir/test/replication_test.exs              |  72 +++---
 33 files changed, 888 insertions(+), 224 deletions(-)
 create mode 100644 src/couch/test/exunit/same_site_cookie_tests.exs
 create mode 100644 src/couch_replicator/test/eunit/couch_replicator_error_reporting_tests.erl