This is an automated email from the ASF dual-hosted git repository.
jaydoane pushed a change to branch configurable-binary-chunk-size
in repository https://gitbox.apache.org/repos/asf/couchdb.git.
discard 2464e24 Enable configurable binary chunk size
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
new e9facf7 Enable configurable binary chunk size
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 (2464e24)
\
N -- N -- N refs/heads/configurable-binary-chunk-size (e9facf7)
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 1 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:
rel/overlay/etc/default.ini | 11 +-
src/chttpd/src/chttpd_db.erl | 2 +-
src/chttpd/src/chttpd_httpd_handlers.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/src/fabric2_fdb.erl | 10 +-
src/fabric/src/fabric2_index.erl | 73 ++--
11 files changed, 559 insertions(+), 48 deletions(-)
create mode 100644 src/couch_views/test/couch_views_cleanup_test.erl