You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@rya.apache.org by pu...@apache.org on 2018/10/01 13:09:57 UTC

[2/4] incubator-rya git commit: Minor fixes in the docs

Minor fixes in the docs


Project: http://git-wip-us.apache.org/repos/asf/incubator-rya/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-rya/commit/0018afd5
Tree: http://git-wip-us.apache.org/repos/asf/incubator-rya/tree/0018afd5
Diff: http://git-wip-us.apache.org/repos/asf/incubator-rya/diff/0018afd5

Branch: refs/heads/master
Commit: 0018afd5368e8cc1315ea447ff2666fa2444aa16
Parents: 639b980
Author: Maxim Kolchin <ko...@gmail.com>
Authored: Thu Jul 5 12:03:48 2018 +0300
Committer: Maxim Kolchin <ko...@gmail.com>
Committed: Thu Jul 5 12:03:48 2018 +0300

----------------------------------------------------------------------
 extras/rya.manual/src/site/markdown/loaddata.md   | 9 +++++----
 extras/rya.manual/src/site/markdown/quickstart.md | 2 +-
 2 files changed, 6 insertions(+), 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-rya/blob/0018afd5/extras/rya.manual/src/site/markdown/loaddata.md
----------------------------------------------------------------------
diff --git a/extras/rya.manual/src/site/markdown/loaddata.md b/extras/rya.manual/src/site/markdown/loaddata.md
index 9d43edd..8894cbd 100644
--- a/extras/rya.manual/src/site/markdown/loaddata.md
+++ b/extras/rya.manual/src/site/markdown/loaddata.md
@@ -104,7 +104,7 @@ Here are the steps to prepare and run the job:
   * Run the following sample command:
 
 ```
-hadoop hdfs://volume/rya.mapreduce-<version>-shaded.jar org.apache.rya.accumulo.mr.tools.RdfFileInputTool -Dac.zk=localhost:2181 -Dac.instance=accumulo -Dac.username=root -Dac.pwd=secret -Drdf.tablePrefix=triplestore_ -Drdf.format=N-Triples hdfs://volume/dir1,hdfs://volume/dir2,hdfs://volume/file1.nt
+hadoop hdfs://volume/rya.mapreduce-<version>-shaded.jar org.apache.rya.accumulo.mr.tools.RdfFileInputTool -Dac.zk=localhost:2181 -Dac.instance=accumulo -Dac.username=root -Dac.pwd=secret -Drdf.tablePrefix=rya_ -Drdf.format=N-Triples hdfs://volume/dir1,hdfs://volume/dir2,hdfs://volume/file1.nt
 ```
 
 Options:
@@ -124,10 +124,11 @@ They need to be loaded into HDFS before running. If loading a directory,
 all files should have the same RDF format.
 
 Once the data is loaded, it is actually a good practice to compact your tables.
-You can do this by opening the accumulo shell shell and running the compact
+You can do this by opening the accumulo shell and running the compact
 command on the generated tables. Remember the generated tables will be
-prefixed by the rdf.tablePrefix property you assigned above.
-The default tablePrefix is `rts`.
+prefixed by the `rdf.tablePrefix` property you assigned above.
+The default tablePrefix is `rya_`.
+
 Here is a sample Accumulo Shell command:
 
 ```

http://git-wip-us.apache.org/repos/asf/incubator-rya/blob/0018afd5/extras/rya.manual/src/site/markdown/quickstart.md
----------------------------------------------------------------------
diff --git a/extras/rya.manual/src/site/markdown/quickstart.md b/extras/rya.manual/src/site/markdown/quickstart.md
index 7a93cda..4483aa8 100644
--- a/extras/rya.manual/src/site/markdown/quickstart.md
+++ b/extras/rya.manual/src/site/markdown/quickstart.md
@@ -48,7 +48,7 @@ instance.name=accumulo  #Accumulo instance name
 instance.zk=localhost:2181  #Accumulo Zookeepers
 instance.username=root  #Accumulo username
 instance.password=secret  #Accumulo pwd
-rya.tableprefix=triplestore_  #Rya Table Prefix
+rya.tableprefix=rya_  #Rya Table Prefix
 rya.displayqueryplan=true  #To display the query plan
 ```