kevinrr888 commented on code in PR #5670:
URL: https://github.com/apache/accumulo/pull/5670#discussion_r2162508162
##########
core/src/main/java/org/apache/accumulo/core/clientImpl/ClientContext.java:
##########
@@ -834,6 +834,17 @@ public ConditionalWriter createConditionalWriter(String
tableName) throws TableN
return createConditionalWriter(tableName, null);
}
+ public ConditionalWriter createConditionalWriterForFateTable(String
tableName)
+ throws TableNotFoundException {
+ ConditionalWriterImpl writer = (ConditionalWriterImpl)
createConditionalWriter(tableName);
+ Integer maxThreads =
+
ClientProperty.CONDITIONAL_WRITER_THREADS_MAX_FATE_TABLE.getInteger(getClientProperties());
+ if (maxThreads != null) {
+ writer.getConfig().setMaxWriteThreads(maxThreads);
+ }
+ return writer;
+ }
+
Review Comment:
No longer applicable
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]