This is an automated email from the ASF dual-hosted git repository.
ronny pushed a change to branch ci/default-parallel-eunit
in repository https://gitbox.apache.org/repos/asf/couchdb.git
discard a306dd36b ci: Run EUnit tests in parallel on CI workers
add 5610e7688 fix: Align vdu_rejects counter with actual VDU behaviour
add 3cba0ae81 chore: Add some basic testing for the JS-based VDU interface
add 166335b0e feat: Add the ability for VDUs to be written as Mango
selectors
add ae57d855d docs: Documentation for Mango-selector-based VDUs
add 28ee29984 Merge pull request #5839 from neighbourhoodie/mango-vdu
add 18ab16af9 refactor to allow delayed worker startup
add 49d5fce77 start workers sequentially by range
add e68a2862b consider a conflict a final decision
add a12e0ab08 distribute load over nodes by dbname and range
add 711e51993 eunit tests to prove early termination on conflict
add 0879fe59d config toggle between serial and parallel worker startup
add c570deff3 Merge pull request #5371 from
apache/reduce-intra-cluster-conflicts
add d2994e7e5 update nouveau indexes with bulk request for performance
add 3afc6fd71 Merge pull request #5896 from
apache/nouveau-streaming-index-update
add 2613f6ec6 Use a more reliable "in release" checking method
add b1394fdfa add sbt to mise for clouseau building
add cdae5b4c7 optionally disable the clouseau node check
add 45b0fbc5f Merge pull request #5922 from apache/clouseau-tweaks
add 1ddf7472f ci: Run EUnit tests in parallel on CI workers
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 (a306dd36b)
\
N -- N -- N refs/heads/ci/default-parallel-eunit (1ddf7472f)
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 | 2 +-
configure | 6 +-
dev/run | 10 +-
extra/nouveau/build.gradle | 1 +
.../api/{Ok.java => BulkUpdateRequest.java} | 11 +-
.../couchdb/nouveau/api/DocumentDeleteRequest.java | 2 +-
.../nouveau/api/{Ok.java => DocumentRequest.java} | 18 +-
.../nouveau/api/{Ok.java => DocumentUpdate.java} | 10 +-
.../couchdb/nouveau/api/DocumentUpdateRequest.java | 2 +-
.../couchdb/nouveau/health/IndexHealthCheck.java | 11 +-
.../couchdb/nouveau/resources/IndexResource.java | 19 ++
mise.toml | 1 +
rel/overlay/etc/default.ini | 4 +
src/couch/src/couch_query_servers.erl | 22 +--
src/couch_mrview/src/couch_mrview.erl | 2 +-
src/docs/src/api/ddoc/common.rst | 5 +-
src/docs/src/ddocs/ddocs.rst | 75 ++++++++
src/fabric/src/fabric_doc_update.erl | 195 ++++++++++++++++---
src/mango/src/mango_native_proc.erl | 27 +++
src/nouveau/src/nouveau_api.erl | 89 +++++++++
src/nouveau/src/nouveau_index_updater.erl | 122 ++++++++----
test/elixir/test/config/suite.elixir | 12 ++
test/elixir/test/validate_doc_update_test.exs | 212 +++++++++++++++++++++
23 files changed, 740 insertions(+), 118 deletions(-)
copy extra/nouveau/src/main/java/org/apache/couchdb/nouveau/api/{Ok.java =>
BulkUpdateRequest.java} (82%)
copy extra/nouveau/src/main/java/org/apache/couchdb/nouveau/api/{Ok.java =>
DocumentRequest.java} (58%)
copy extra/nouveau/src/main/java/org/apache/couchdb/nouveau/api/{Ok.java =>
DocumentUpdate.java} (82%)
create mode 100644 test/elixir/test/validate_doc_update_test.exs