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

[couchdb] branch add-chttpd-stats updated (82580d4 -> 1f27026)

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

davisp pushed a change to branch add-chttpd-stats
in repository https://gitbox.apache.org/repos/asf/couchdb.git.


 discard 82580d4  Implement customizable chttpd statistics
 discard 44eea83  Enforce partition size limits
 discard 848e893  Use an accumulator when merging revision trees
 discard 31a4a53  Add Elixir tests for database partitions
 discard 10348c3  Support partitioned queries in Mango
 discard c58cfd1  Use index names when testing index selection
 discard f9ad101  Optimize offset/limit for partition queries
 discard 724e772  Optimize all_docs queries in a single partition
 discard d6fe14b  Implement partitioned views
 discard 96efacc  Implement `couch_db:get_partition_info/2`
 discard 63b1505  Implement partitioned dbs
 discard cf886f5  Implement configurable hash functions
 discard a44fd72  Validate design document options more strictly
 discard f50da84  Pass the DB record to index validation functions
 discard 82696c7  Implement `fabric_util:open_cluster_db`
 discard 5f6a008  Improve `couch_db:clustered_db` flexibility
 discard 352bc80  Add PSE API to store opaque properties
     new 587d674  Fix end_time field in /_replicate response
     new c6b095b  Fix read repair in a mixed cluster environment
     new 38c1ab4  Improve vm.args template comments (#1861)
     new 5269d79  Fix fabric_open_doc_revs
     new 90d5bf6  Support one purge request with more than 100 docid
     new a3f99df  Merge pull request #1865 from apache/purge_request_with_101_docid
     new 1ee35e8  Move Jenkins to use Erlang 19 for initial build step (#1866)
     new 0f833fd  Fix timeout in chttpd_purge_tests
     new 5d219dd  Add PSE API to store opaque properties
     new 24a3698  Improve `couch_db:clustered_db` flexibility
     new 3ff043e  Implement `fabric_util:open_cluster_db`
     new 72eb129  Pass the DB record to index validation functions
     new 7bbe828  Validate design document options more strictly
     new 05678b9  Implement configurable hash functions
     new 25ac408  Implement partitioned dbs
     new 6edb9a5  Implement `couch_db:get_partition_info/2`
     new 3a1dd0a  Implement partitioned views
     new eb1ffcf  Optimize all_docs queries in a single partition
     new dc369e9  Optimize offset/limit for partition queries
     new 47efcbd  Use index names when testing index selection
     new 53d3515  Support partitioned queries in Mango
     new 16e6af4  Add Elixir tests for database partitions
     new aeb1ba4  Use an accumulator when merging revision trees
     new 8d2af71  Enforce partition size limits
     new 1f27026  Implement customizable chttpd statistics

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   (82580d4)
            \
             N -- N -- N   refs/heads/add-chttpd-stats (1f27026)

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.

The 11549 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 Jenkinsfile                                        |   6 +-
 rel/overlay/etc/vm.args                            |  15 +-
 src/chttpd/src/chttpd.erl                          |   4 +-
 src/chttpd/src/chttpd_db.erl                       |  21 +-
 src/chttpd/test/chttpd_purge_tests.erl             |  35 ++
 src/couch/src/couch_db_updater.erl                 |  27 +-
 src/couch_mrview/src/couch_mrview_updater.erl      |   9 +-
 .../src/couch_replicator_scheduler_job.erl         |   4 +-
 src/fabric/src/fabric_doc_open.erl                 |   4 +-
 src/fabric/src/fabric_doc_open_revs.erl            | 118 +++++--
 src/fabric/src/fabric_doc_purge.erl                |   2 +-
 test/elixir/test/partition_all_docs_test.exs       | 118 +++++++
 test/elixir/test/partition_crud_test.exs           |  36 ++
 test/elixir/test/partition_ddoc_test.exs           | 171 ++++++++++
 test/elixir/test/partition_size_limit_test.exs     | 305 +++++++++++++++++
 test/elixir/test/partition_size_test.exs           | 368 +++++++++++++++++----
 test/elixir/test/partition_view_update_test.exs    |  82 +++++
 17 files changed, 1202 insertions(+), 123 deletions(-)
 create mode 100644 test/elixir/test/partition_all_docs_test.exs
 create mode 100644 test/elixir/test/partition_ddoc_test.exs
 create mode 100644 test/elixir/test/partition_size_limit_test.exs