This is an automated email from the ASF dual-hosted git repository. jaydoane pushed a change to branch cleanup-expiring-key-on-update in repository https://gitbox.apache.org/repos/asf/couchdb.git.
discard 8835541 Implement range function discard 0c5a489 Clean up existing expiry key on update add a14f62d Add mango_plugin add 396a3b5 Merge pull request #2767 from cloudant/prototype/fdb-layer-mango-plugin add 56137f3 Fix job removal notifications add daf1082 Fix division by zero add cbad08d Make 'make check' run all the passing FDB tests on this branch add 2bb0ccd Fix incorrect usage of couch_epi in mango plugin add aad871b Merge pull request #2775 from cloudant/mango-plugin-fixup add d4bc3a5 Fix flaky fabric2_index test add 742c64e Fix index updater configuration keys add 247b809 Rename variables to indicate transaction state add 3c0a017 Move process_db/1 to match the logical progression add 3e1c822 Update to use `fabric2_db:get_design_docs/1` add 7bc9148 Extend fabric2_index callbacks for index cleanup add e0d0391 Implement couch_views:cleanup_indices/2 add 4275a49 Implement _view_cleanup for FoundationDB add 7aeb54b Optionally cleanup stale indices automatically add 2e5a556 Remove jobs on index cleanup add 30fdef7 Remove failed view jobs add 7575152 Implement couch_views_cleanup_test.erl add 4d62f48 Refactor expiring cache FDB interface add 212b971 WIP add b2af4af WIP add a9502d9 WIP add 53be407 WIP 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 (8835541) \ N -- N -- N refs/heads/cleanup-expiring-key-on-update (53be407) 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: Makefile | 10 +- build-aux/Jenkinsfile.pr | 2 +- rel/overlay/etc/default.ini | 9 +- src/chttpd/src/chttpd_db.erl | 2 +- src/chttpd/src/chttpd_httpd_handlers.erl | 2 +- .../src/couch_expiring_cache.erl | 11 +- .../src/couch_expiring_cache_fdb.erl | 68 ++-- .../src/couch_expiring_cache_server.erl | 2 +- .../test/couch_expiring_cache_tests.erl | 17 +- src/couch_jobs/src/couch_jobs_fdb.erl | 4 + src/couch_jobs/test/couch_jobs_tests.erl | 28 ++ src/couch_rate/src/couch_rate_limiter.erl | 2 + src/couch_views/src/couch_views.erl | 19 + src/couch_views/src/couch_views_fdb.erl | 40 +- src/couch_views/src/couch_views_jobs.erl | 35 +- src/couch_views/test/couch_views_cleanup_test.erl | 411 +++++++++++++++++++++ src/couch_views/test/couch_views_indexer_test.erl | 2 +- src/couch_views/test/couch_views_map_test.erl | 2 +- src/fabric/include/fabric2.hrl | 1 + src/fabric/src/fabric2_index.erl | 73 ++-- src/fabric/test/fabric2_index_tests.erl | 6 +- src/mango/src/mango_epi.erl | 4 +- src/mango/src/mango_httpd.erl | 20 +- .../src/mango_plugin.erl} | 40 +- 24 files changed, 685 insertions(+), 125 deletions(-) create mode 100644 src/couch_views/test/couch_views_cleanup_test.erl copy src/{global_changes/src/global_changes_plugin.erl => mango/src/mango_plugin.erl} (59%)