Github user meiercaleb commented on a diff in the pull request:
https://github.com/apache/incubator-rya/pull/127#discussion_r110951142
--- Diff:
dao/accumulo.rya/src/main/java/org/apache/rya/accumulo/AccumuloRdfConfiguration.java
---
@@ -68,10 +48,88 @@ public AccumuloRdfConfiguration(Configuration other) {
super(other);
}
+ public AccumuloRdfConfigurationBuilder getBuilder() {
+ return new AccumuloRdfConfigurationBuilder();
+ }
+
+ /**
+ * Creates an AccumuloRdfConfiguration object from a Properties file.
This method assumes
+ * that all values in the Properties file are Strings and that the
Properties file uses the keys below.
+ * See accumulo/rya/src/test/resources/properties/rya.properties for an
example.
+ * <br>
+ * <ul>
+ * <li>"accumulo.auths" - String of Accumulo authorizations. Default is
empty String.
+ * <li>"accumulo.visibilities" - String of Accumulo visibilities
assigned to ingested triples.
+ * <li>"accumulo.instance" - Accumulo instance name (required)
+ * <li>"accumulo.user" - Accumulo user (required)
+ * <li>"accumulo.password" - Accumulo password (required)
+ * <li>"accumulo.rya.prefix" - Prefix for Accumulo backed Rya instance.
Default is "rya_"
+ * <li>"accumulo.zookeepers" - Zookeepers for underlying Accumulo
instance (required if not using Mock)
--- End diff --
Done.
---
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.
---