This is an automated email from the ASF dual-hosted git repository.
kturner pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/accumulo.git
from 4c259d73f4 Removed unreferenced code (#5935)
add 0b4288b8be Uses rendezvous hashing for scan server selection (#5937)
new e1f833508c Merge branch '2.1'
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:
.../scan/ConfigurableScanServerHostSelector.java | 215 +++++++------
.../spi/scan/ConfigurableScanServerSelector.java | 151 ++++-----
.../accumulo/core/spi/scan/RendezvousHasher.java | 336 +++++++++++++++++++++
.../core/spi/scan/ScanServersSnapshot.java | 127 ++++++++
.../ConfigurableScanServerHostSelectorTest.java | 111 +++----
.../scan/ConfigurableScanServerSelectorTest.java | 109 +++++++
.../core/spi/scan/RendezvousHasherTest.java | 201 ++++++++++++
7 files changed, 1020 insertions(+), 230 deletions(-)
create mode 100644
core/src/main/java/org/apache/accumulo/core/spi/scan/RendezvousHasher.java
create mode 100644
core/src/main/java/org/apache/accumulo/core/spi/scan/ScanServersSnapshot.java
create mode 100644
core/src/test/java/org/apache/accumulo/core/spi/scan/RendezvousHasherTest.java