You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by va...@apache.org on 2019/02/01 17:04:11 UTC

[couchdb] branch shard-split updated (c3d29ad -> 192c764)

This is an automated email from the ASF dual-hosted git repository.

vatamane pushed a change to branch shard-split
in repository https://gitbox.apache.org/repos/asf/couchdb.git.


    from c3d29ad  Renaming http endpoint to _reshard/
     new 71ac54d  Renamed files mem3_shard_split* -> mem3_reshard*
     new 92e2849  Renamed functions / modules : mem3_shard_split -> mem3_reshard
     new 192c764  Added ability to create multiple jobs by posting to _reshard/jobs

The 11573 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:
 src/mem3/src/mem3.app.src                          |   2 +-
 src/mem3/src/mem3_httpd_handlers.erl               |   2 +-
 src/mem3/src/mem3_rep.erl                          |   2 +-
 .../src/{mem3_shard_split.erl => mem3_reshard.erl} |  91 +++++-----
 .../src/{mem3_shard_split.hrl => mem3_reshard.hrl} |   7 +-
 ...hard_split_dbdoc.erl => mem3_reshard_dbdoc.erl} |  10 +-
 ...hard_split_debug.erl => mem3_reshard_debug.erl} |  24 +--
 ...hard_split_httpd.erl => mem3_reshard_httpd.erl} | 183 ++++++++++++++++-----
 ...hard_split_index.erl => mem3_reshard_index.erl} |   2 +-
 ...m3_shard_split_job.erl => mem3_reshard_job.erl} |  63 ++++---
 ..._split_job_sup.erl => mem3_reshard_job_sup.erl} |   8 +-
 ...hard_split_store.erl => mem3_reshard_store.erl} |  24 ++-
 ...m3_shard_split_sup.erl => mem3_reshard_sup.erl} |  14 +-
 ...plit_validate.erl => mem3_reshard_validate.erl} |  16 +-
 src/mem3/src/mem3_rpc.erl                          |   2 +-
 src/mem3/src/mem3_sup.erl                          |   4 +-
 16 files changed, 290 insertions(+), 164 deletions(-)
 rename src/mem3/src/{mem3_shard_split.erl => mem3_reshard.erl} (89%)
 rename src/mem3/src/{mem3_shard_split.hrl => mem3_reshard.hrl} (93%)
 rename src/mem3/src/{mem3_shard_split_dbdoc.erl => mem3_reshard_dbdoc.erl} (97%)
 rename src/mem3/src/{mem3_shard_split_debug.erl => mem3_reshard_debug.erl} (89%)
 rename src/mem3/src/{mem3_shard_split_httpd.erl => mem3_reshard_httpd.erl} (64%)
 rename src/mem3/src/{mem3_shard_split_index.erl => mem3_reshard_index.erl} (99%)
 rename src/mem3/src/{mem3_shard_split_job.erl => mem3_reshard_job.erl} (88%)
 rename src/mem3/src/{mem3_shard_split_job_sup.erl => mem3_reshard_job_sup.erl} (88%)
 rename src/mem3/src/{mem3_shard_split_store.erl => mem3_reshard_store.erl} (90%)
 rename src/mem3/src/{mem3_shard_split_sup.erl => mem3_reshard_sup.erl} (77%)
 rename src/mem3/src/{mem3_shard_split_validate.erl => mem3_reshard_validate.erl} (88%)