This is an automated email from the ASF dual-hosted git repository.
rnewson pushed a change to branch reduce-intra-cluster-conflicts
in repository https://gitbox.apache.org/repos/asf/couchdb.git
omit 2245a538d reject write at leader if conflict
add 899b593bf setup with mise
add 5a36de344 update devcontainer
add f651c177a fail build_js if compile step fails
add 63cd44744 Merge pull request #5885 from apache/build-dev-improvements
add 437a586f7 Improve replication `since_seq` parameter
add 7812f5329 Fix config:get_integer_or_infinity/3
add 322fcf0c0 Switch to hibernate_after
add 1e6dbe679 refactor to allow delayed worker startup
add 754f327bd start leaders first
add d31d351fa don't update followers where leader got conflicts
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 (2245a538d)
\
N -- N -- N refs/heads/reduce-intra-cluster-conflicts (d31d351fa)
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:
.devcontainer/Dockerfile | 4 +-
.devcontainer/devcontainer.json | 4 +-
.gitignore | 1 +
TODO | 1 +
mise.toml | 9 +
rel/overlay/etc/default.ini | 17 ++
src/config/src/config.erl | 4 +
src/couch/src/couch_db_updater.erl | 7 +-
src/couch/src/couch_stream.erl | 23 +-
src/couch/src/couch_util.erl | 13 +
src/couch/src/couch_work_queue.erl | 18 +-
src/couch/test/eunit/couch_util_tests.erl | 80 +++++
src/couch_quickjs/build_js.escript | 2 +-
src/couch_replicator/src/couch_replicator_ids.erl | 10 +-
.../src/couch_replicator_scheduler_job.erl | 11 +-
.../couch_replicator_attachments_too_large.erl | 4 +-
.../eunit/couch_replicator_large_atts_tests.erl | 2 +-
.../eunit/couch_replicator_scheduler_job_tests.erl | 330 +++++++++++++++++++++
.../test/eunit/couch_replicator_test_helper.erl | 3 +-
src/fabric/src/fabric_doc_update.erl | 207 ++++++-------
src/rexi/src/rexi_buffer.erl | 10 +-
21 files changed, 608 insertions(+), 152 deletions(-)
create mode 100644 TODO
create mode 100644 mise.toml
create mode 100644
src/couch_replicator/test/eunit/couch_replicator_scheduler_job_tests.erl