This is an automated email from the ASF dual-hosted git repository.
rnewson pushed a change to branch nouveau-streaming-index-update
in repository https://gitbox.apache.org/repos/asf/couchdb.git
discard 1802782f3 update nouveau indexes with bulk request for performance
add a04ac084d test: port 15-execution-stats-test from python to elixir
add d86bf6fe8 test: deprecate 15-execution-stats-test.py
add 6c3a5a156 test: port 19-find-conflicts from python to elixir
add ad7c3afc0 test: deprecate 19-find-conflicts.py
add afcfed69a test: port 10 disable array length field to elixir
add 0818957a5 test: deprecate 10 disable array length field python test
add b6243b563 fix: reduce flakeyness of auto config reload test
add c43596967 fix: remove flakeyness from new elixir mango tests
add d5a1339f3 chore: fail elixir test after first error instead of waiting
for the whole suite
add 47a952f31 Merge branch 'main' into 10-disable-array-length-field-test
add bee31c168 Merge pull request #5781 from
neighbourhoodie/10-disable-array-length-field-test
add a1649129f improve flakiness of Auto-reload config test
add d8a3f1d4c Merge pull request #5907 from
apache/flaky-auto-reload-config-test
add 38b362b6e Merge branch 'main' into 19-find-conflicts
add 1160780db fix: typo
add 32e305d12 Merge pull request #5786 from
neighbourhoodie/19-find-conflicts
add dfa01c4b0 Merge branch 'main' into 15-execution-stats-test
add a1e7d2318 Merge pull request #5782 from
neighbourhoodie/15-execution-stats-test
add 3f69107d5 unset node env in mise.toml
add a61893879 Merge pull request #5908 from apache/mise-node-env
add 0d8340c76 Bump jiffy to 1.1.3
add 2e92334b8 Use -fvisibility=hidden for some C bits
add d97e7717e Pin credo
add 7aa9eb317 Fix signatures in mrview purge checkpoints
add 25e126917 Avoid creating purge checkpoints for invalid views
add 549185c32 Don't use db handle after closing in dreyfus_index
add ab6bd038e Do not reset dreyfus purge_seq back to 0 in dreyfus
add b950ae0ac add group test for search
add 574768997 improve disk_monitor_test.exs
add 30293ec19 Merge pull request #5917 from apache/group-search-elixir-test
add f519c1b1f Handle a just deleted db in auto-purge plugin
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
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 (1802782f3)
\
N -- N -- N refs/heads/nouveau-streaming-index-update (d2994e7e5)
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 +-
mise.toml | 5 +-
mix.exs | 2 +-
rebar.config.script | 2 +-
rel/overlay/etc/default.ini | 4 +
src/b64url/rebar.config | 2 +-
src/couch/rebar.config.script | 4 +-
src/couch/src/couch_auto_purge_plugin.erl | 5 +-
src/couch/src/couch_proc_manager.erl | 32 +-
src/couch/src/couch_query_servers.erl | 22 +-
src/couch_index/src/couch_index_util.erl | 1 +
src/couch_mrview/src/couch_mrview.erl | 2 +-
src/couch_mrview/src/couch_mrview_index.erl | 43 ++-
src/couch_mrview/src/couch_mrview_util.erl | 35 +-
.../eunit/couch_mrview_purge_docs_fabric_tests.erl | 362 +++++++++++----------
src/couch_quickjs/rebar.config.script | 2 +-
src/docs/src/api/ddoc/common.rst | 5 +-
src/docs/src/ddocs/ddocs.rst | 75 +++++
src/dreyfus/src/dreyfus_index.erl | 4 +-
src/dreyfus/src/dreyfus_index_updater.erl | 43 ++-
src/exxhash/rebar.config | 2 +-
src/fabric/src/fabric_doc_update.erl | 195 +++++++++--
src/fabric/test/eunit/fabric_tests.erl | 96 +++++-
src/ken/src/ken_server.erl | 23 +-
src/mango/src/mango_native_proc.erl | 27 ++
.../test/10-disable-array-length-field-test.py | 43 ---
src/mango/test/15-execution-stats-test.py | 161 ---------
src/mango/test/19-find-conflicts.py | 33 --
test/elixir/test/config/search.elixir | 9 +
test/elixir/test/config/suite.elixir | 26 ++
test/elixir/test/config_test.exs | 5 +-
test/elixir/test/disk_monitor_test.exs | 3 +
.../mango/10_disable_array_length_field_test.exs | 50 +++
test/elixir/test/mango/15_execution_stats_test.exs | 199 +++++++++++
test/elixir/test/mango/19_find_conflicts.exs | 36 ++
test/elixir/test/search_test.exs | 22 ++
test/elixir/test/support/mango_database.ex | 26 +-
test/elixir/test/validate_doc_update_test.exs | 212 ++++++++++++
38 files changed, 1277 insertions(+), 543 deletions(-)
delete mode 100644 src/mango/test/10-disable-array-length-field-test.py
delete mode 100644 src/mango/test/15-execution-stats-test.py
delete mode 100644 src/mango/test/19-find-conflicts.py
create mode 100644
test/elixir/test/mango/10_disable_array_length_field_test.exs
create mode 100644 test/elixir/test/mango/15_execution_stats_test.exs
create mode 100644 test/elixir/test/mango/19_find_conflicts.exs
create mode 100644 test/elixir/test/validate_doc_update_test.exs