This is an automated email from the ASF dual-hosted git repository.
dlmarion pushed a commit to branch 2.1
in repository https://gitbox.apache.org/repos/asf/accumulo.git
The following commit(s) were added to refs/heads/2.1 by this push:
new 73b068d87e Updates to ConsistencyLevel javadoc to provide more
information (#4941)
73b068d87e is described below
commit 73b068d87eb7b9cae934cf3d86ad00cdab34db9c
Author: Dave Marion <[email protected]>
AuthorDate: Fri Oct 4 13:26:15 2024 -0400
Updates to ConsistencyLevel javadoc to provide more information (#4941)
Closes #4478
---
core/src/main/java/org/apache/accumulo/core/client/ScannerBase.java | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git
a/core/src/main/java/org/apache/accumulo/core/client/ScannerBase.java
b/core/src/main/java/org/apache/accumulo/core/client/ScannerBase.java
index 13bd9c17fa..a9ae3e561e 100644
--- a/core/src/main/java/org/apache/accumulo/core/client/ScannerBase.java
+++ b/core/src/main/java/org/apache/accumulo/core/client/ScannerBase.java
@@ -48,7 +48,10 @@ public interface ScannerBase extends
Iterable<Entry<Key,Value>>, AutoCloseable {
* Consistency level for the scanner. The default level is IMMEDIATE, which
means that this
* scanner will see keys and values that have been successfully written to a
TabletServer.
* EVENTUAL means that the scanner may not see the latest data that was
written to a TabletServer,
- * but may instead see an older version of data.
+ * but may instead see an older version of data. To use the EVENTUAL
consistency level, ScanServer
+ * processes must be running. If not specifically configured, clients will
use the default
+ * settings ({@code ConfigurableScanServerSelector#PROFILES_DEFAULT}). See
+ * {@code ConfigurableScanServerSelector} for information on how to
configure the client.
*
* @since 2.1.0
*/