Github user joshelser commented on a diff in the pull request: https://github.com/apache/accumulo/pull/224#discussion_r103727728 --- 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 -- Why `false`?
--- 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 infrastruct...@apache.org or file a JIRA ticket with INFRA. ---