This is an automated email from the ASF dual-hosted git repository.
rnewson pushed a change to branch out-of-disk-handler
in repository https://gitbox.apache.org/repos/asf/couchdb.git
discard 48abc5a12 WIP Introduce countermeasures as we run out of disk space
discard 933fb4c4c include os_mon
add 3690f9e24 Improve emitted change feed sequence after a split
add be2eeccdc docs: update sphinx resource hyperlink
add 290ea87b8 docs: add `adm:pass` to URL examples
add fafa982c5 Fix the ability to use ; in config values
add d9b4c199e upgrade nouveau to lucene 9.7.0
add 16f47d758 Merge pull request #4654 from apache/lucene-9.7.0
add f5897635e mango: replace `foldl` with a `map`
add 8dbb021aa Fix undefined range in mem3_rep purge replication logic
add e3eb6dfca upgrde to dropwizard 4.0.1
new 86f555ce2 Introduce countermeasures as we run out of disk space
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 (48abc5a12)
\
N -- N -- N refs/heads/out-of-disk-handler (86f555ce2)
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:
README-DEV.rst | 2 +-
nouveau/build.gradle | 4 +-
rel/overlay/etc/vm.args | 9 ++
src/config/src/config.erl | 40 ++++-
src/couch/src/couch_alarm_handler.erl | 167 ---------------------
src/couch/src/couch_app.erl | 3 -
src/couch/src/couch_disk_manager.erl | 152 +++++++++++++++++++
src/couch/src/couch_secondary_sup.erl | 3 +-
src/couch_mrview/src/couch_mrview_util.erl | 4 +-
src/docs/src/api/database/security.rst | 2 +-
src/docs/src/api/document/attachments.rst | 8 +-
src/docs/src/best-practices/forms.rst | 6 +-
src/docs/src/best-practices/iso-date.rst | 4 +-
src/docs/src/cluster/sharding.rst | 6 +-
src/docs/src/config/intro.rst | 6 +-
src/docs/src/ddocs/views/collation.rst | 2 +-
src/docs/src/ddocs/views/pagination.rst | 4 +-
src/docs/src/intro/api.rst | 14 +-
src/docs/src/intro/curl.rst | 16 +-
src/docs/src/intro/security.rst | 8 +-
src/docs/src/maintenance/compaction.rst | 10 +-
src/docs/src/partitioned-dbs/index.rst | 18 +--
src/docs/src/setup/single-node.rst | 6 +-
src/fabric/src/fabric_doc_update.erl | 21 ++-
src/fabric/src/fabric_rpc.erl | 2 +-
src/fabric/src/fabric_view.erl | 4 +-
src/fabric/src/fabric_view_changes.erl | 37 ++++-
src/fabric/src/fabric_view_map.erl | 4 +-
src/ken/src/ken_server.erl | 4 +-
src/mango/src/mango_cursor_view.erl | 9 +-
src/mem3/src/mem3_rep.erl | 50 ++++++-
src/mem3/test/eunit/mem3_rep_test.erl | 229 ++++++++++++++++++-----------
32 files changed, 507 insertions(+), 347 deletions(-)
delete mode 100644 src/couch/src/couch_alarm_handler.erl
create mode 100644 src/couch/src/couch_disk_manager.erl