Github user keith-turner commented on a diff in the pull request:
https://github.com/apache/accumulo/pull/224#discussion_r103815757
--- Diff:
core/src/main/java/org/apache/accumulo/core/client/rfile/RFileWriterBuilder.java
---
@@ -92,10 +102,11 @@ public RFileWriter build() throws IOException {
} else {
fsdo = new FSDataOutputStream(out.getOutputStream(), new
FileSystem.Statistics("foo"));
}
- return new
RFileWriter(fileops.newWriterBuilder().forOutputStream(".rf", fsdo,
out.getConf()).withTableConfiguration(acuconf).build(), visCacheSize);
+ return new
RFileWriter(fileops.newWriterBuilder().forOutputStream(".rf", fsdo,
out.getConf()).withTableConfiguration(acuconf)
+ .setAccumuloStartEnabled(false).build(), visCacheSize);
} else {
return new
RFileWriter(fileops.newWriterBuilder().forFile(out.path.toString(),
out.getFileSystem(), out.getConf()).withTableConfiguration(acuconf)
- .build(), visCacheSize);
+ .setAccumuloStartEnabled(false).build(), visCacheSize);
--- End diff --
It presumed that this code us running in a client process, so do not want
to use Accumulo start to load classes.
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---