You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@accumulo.apache.org by "EdColeman (via GitHub)" <gi...@apache.org> on 2023/02/03 19:01:08 UTC

[GitHub] [accumulo] EdColeman commented on a diff in pull request #3187: WIP: Make scan initial wait configurable

EdColeman commented on code in PR #3187:
URL: https://github.com/apache/accumulo/pull/3187#discussion_r1096167446


##########
core/src/main/java/org/apache/accumulo/core/conf/Property.java:
##########
@@ -419,6 +419,9 @@ public enum Property {
       PropertyType.COUNT, "Max number of files a major compaction thread can open at once. "),
   TSERV_SCAN_MAX_OPENFILES("tserver.scan.files.open.max", "100", PropertyType.COUNT,
       "Maximum total files that all tablets in a tablet server can open for scans. "),
+  @Experimental
+  TSERV_SCAN_INITIAL_WAIT_ENABLED("tserver.scan.initial.wait.enabled", "true", PropertyType.BOOLEAN,
+      "Determines if the client waits for writes before scanning a table for the first time"),

Review Comment:
   Might want to include why.  Something along the lines of:
   
   `Determines if the client waits for writes in progress before scanning a table for the first time to ensure the client sees all data previously written.`



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscribe@accumulo.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org