You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by rn...@apache.org on 2020/01/29 20:47:48 UTC

[couchdb] branch reserve-search-namespace updated (db70666 -> 1496c49)

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

rnewson pushed a change to branch reserve-search-namespace
in repository https://gitbox.apache.org/repos/asf/couchdb.git.


 discard db70666  reserve search namespace
     add 0cea6a4  Optimize view read latency when the view ready
     add 2247c80  Retry for failed indexes builds
     add 788538d  Normalize fabric2 test suite
     add 77e6901  Silence test suite warning message about crypto
     add cea9274  Delete attachments when no longer referenced
     add 2f7957c  Expiring cache
     add b3899c4  Merge pull request #2331 from cloudant/expiring-cache
     add ab4eafa  Improve transaction name setting when tracing FDB transactions
     add 963f84b  Add `external`  tag to opentrace events
     add 6b1da76  Merge pull request #2451 from cloudant/tracing-external
     add ecaf215  Change map indexes to be stored in one row
     add ea23fa1  Bump ioq to 2.1.3
     add 34be5dd  Merge pull request #2495 from apache/prototype/fdb-layer-bump-ioq
     add b6c8a21  Delete unused ets table creation
     add d81356f  Merge pull request #2499 from apache/expiring-cache-cleanup
     add 1496c49  reserve search namespace

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   (db70666)
            \
             N -- N -- N   refs/heads/reserve-search-namespace (1496c49)

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:
 rebar.config.script                                |   3 +-
 src/chttpd/src/chttpd.erl                          |  12 +-
 src/couch/src/test_util.erl                        |   4 +
 src/couch_expiring_cache/README.md                 |  71 +++++
 .../include/couch_expiring_cache.hrl}              |  10 +-
 src/{fabric => couch_expiring_cache}/rebar.config  |   0
 .../src/couch_expiring_cache.app.src}              |  12 +-
 .../src/couch_expiring_cache.erl                   |  56 ++++
 .../src/couch_expiring_cache_fdb.erl               | 116 +++++++++
 .../src/couch_expiring_cache_server.erl            | 109 ++++++++
 .../test/couch_expiring_cache_tests.erl            |  95 +++++++
 src/couch_views/include/couch_views.hrl            |   3 -
 src/couch_views/src/couch_views.erl                |  46 ++--
 src/couch_views/src/couch_views_fdb.erl            | 126 ++-------
 src/couch_views/src/couch_views_indexer.erl        |  74 +++++-
 src/couch_views/src/couch_views_jobs.erl           |   3 +-
 src/couch_views/src/couch_views_reader.erl         |   2 +-
 src/ctrace/README.md                               |   3 +
 src/fabric/include/fabric2.hrl                     |   7 +-
 src/fabric/src/fabric2_db.erl                      |  16 +-
 src/fabric/src/fabric2_fdb.erl                     | 131 ++++++++--
 src/fabric/src/fabric2_util.erl                    |  16 ++
 src/fabric/test/fabric2_changes_fold_tests.erl     |  17 +-
 src/fabric/test/fabric2_db_crud_tests.erl          |  16 +-
 src/fabric/test/fabric2_db_misc_tests.erl          |  24 +-
 src/fabric/test/fabric2_db_security_tests.erl      |  33 +--
 src/fabric/test/fabric2_dir_prefix_tests.erl       |  24 +-
 src/fabric/test/fabric2_doc_att_tests.erl          | 285 +++++++++++++++++++++
 src/fabric/test/fabric2_doc_count_tests.erl        |  13 +-
 src/fabric/test/fabric2_doc_crud_tests.erl         |  85 +++---
 src/fabric/test/fabric2_doc_fold_tests.erl         |  29 +--
 src/fabric/test/fabric2_fdb_tx_retry_tests.erl     |  48 ++--
 src/fabric/test/fabric2_local_doc_fold_tests.erl   |  29 +--
 src/fabric/test/fabric2_node_types_tests.erl       |  21 +-
 src/fabric/test/fabric2_rev_stemming.erl           |  23 +-
 .../test/fabric2_test.hrl}                         |  24 +-
 src/fabric/test/fabric2_trace_db_create_tests.erl  |   9 +-
 src/fabric/test/fabric2_trace_db_delete_tests.erl  |   7 +-
 src/fabric/test/fabric2_trace_db_open_tests.erl    |   7 +-
 src/fabric/test/fabric2_trace_doc_create_tests.erl |  13 +-
 test/elixir/test/map_test.exs                      |  32 +++
 41 files changed, 1253 insertions(+), 401 deletions(-)
 create mode 100644 src/couch_expiring_cache/README.md
 copy src/{ddoc_cache/test/eunit/ddoc_cache_ev.erl => couch_expiring_cache/include/couch_expiring_cache.hrl} (78%)
 copy src/{fabric => couch_expiring_cache}/rebar.config (100%)
 copy src/{couch_eval/src/couch_eval.app.src => couch_expiring_cache/src/couch_expiring_cache.app.src} (79%)
 create mode 100644 src/couch_expiring_cache/src/couch_expiring_cache.erl
 create mode 100644 src/couch_expiring_cache/src/couch_expiring_cache_fdb.erl
 create mode 100644 src/couch_expiring_cache/src/couch_expiring_cache_server.erl
 create mode 100644 src/couch_expiring_cache/test/couch_expiring_cache_tests.erl
 create mode 100644 src/fabric/test/fabric2_doc_att_tests.erl
 copy src/{chttpd/src/chttpd_test_util.erl => fabric/test/fabric2_test.hrl} (57%)