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/08 17:36:40 UTC

[couchdb] branch feature/database-partition-limits updated (64bd9fc -> 44eea83)

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

davisp pushed a change to branch feature/database-partition-limits
in repository https://gitbox.apache.org/repos/asf/couchdb.git.


 discard 64bd9fc  Enforce partition size limits
 discard d5a6870  Use an accumulator when merging revision trees
    omit b4b86b8  Add Elixir tests for database partitions
    omit 1eb0a51  Support partitioned queries in Mango
    omit b1c7a8a  Use index names when testing index selection
    omit a2020e3  Optimize offset/limit for partition queries
    omit 92f8726  Optimize all_docs queries in a single partition
    omit dace0ba  Implement partitioned views
    omit c61ca17  Implement `couch_db:get_partition_info/2`
    omit 219286f  Implement partitioned dbs
    omit 148e6c3  Implement configurable hash functions
    omit cb7e72e  Validate design document options more strictly
    omit ff77a34  Pass the DB record to index validation functions
    omit ce0fb41  Implement `fabric_util:open_cluster_db`
    omit 8f5d0fd  Improve `couch_db:clustered_db` flexibility
    omit 3d6247e  Add PSE API to store opaque properties
     add d12c22b  Introduce cpse_test_purge_seqs again
     add dc93156  Merge pull request #1831 from apache/intro-cpse_test_purge_seqs
     add c68863a  Update before_doc_update/2 to before_doc_update/3
     add 72b788e  Merge pull request #1808 from apache/before_doc_update
     add 352bc80  Add PSE API to store opaque properties
     add 5f6a008  Improve `couch_db:clustered_db` flexibility
     add 82696c7  Implement `fabric_util:open_cluster_db`
     add f50da84  Pass the DB record to index validation functions
     add a44fd72  Validate design document options more strictly
     add cf886f5  Implement configurable hash functions
     add 63b1505  Implement partitioned dbs
     add 96efacc  Implement `couch_db:get_partition_info/2`
     add d6fe14b  Implement partitioned views
     add 724e772  Optimize all_docs queries in a single partition
     add f9ad101  Optimize offset/limit for partition queries
     add c58cfd1  Use index names when testing index selection
     add 10348c3  Support partitioned queries in Mango
     add 31a4a53  Add Elixir tests for database partitions
     add 848e893  Use an accumulator when merging revision trees
     add 44eea83  Enforce partition size limits

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   (64bd9fc)
            \
             N -- N -- N   refs/heads/feature/database-partition-limits (44eea83)

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:
 src/chttpd/src/chttpd_db.erl                       |  5 ++++-
 src/couch/include/couch_db.hrl                     |  1 +
 src/couch/src/couch_db.erl                         |  8 ++++----
 src/couch/src/couch_db_plugin.erl                  | 12 +++++++-----
 src/couch/src/couch_server.erl                     |  4 ++--
 src/couch/src/couch_users_db.erl                   |  4 ++--
 src/couch/test/couch_db_plugin_tests.erl           | 17 ++++++++++-------
 src/couch_pse_tests/src/cpse_test_purge_seqs.erl   | 12 +++++++-----
 src/couch_pse_tests/src/cpse_util.erl              |  3 ++-
 src/couch_replicator/src/couch_replicator_docs.erl |  8 ++++----
 src/fabric/src/fabric_doc_update.erl               |  6 ++++--
 src/mango/src/mango_idx.erl                        | 10 +++++-----
 src/mango/src/mango_idx_text.erl                   |  1 +
 src/mango/src/mango_idx_view.erl                   |  1 +
 test/elixir/test/partition_view_update_test.exs    |  2 +-
 15 files changed, 55 insertions(+), 39 deletions(-)