You are viewing a plain text version of this content. The canonical link for it is here.
Posted to oak-commits@jackrabbit.apache.org by ch...@apache.org on 2017/07/18 05:08:53 UTC

svn commit: r1802235 - /jackrabbit/oak/trunk/oak-doc/src/site/markdown/query/oak-run-indexing.md

Author: chetanm
Date: Tue Jul 18 05:08:53 2017
New Revision: 1802235

URL: http://svn.apache.org/viewvc?rev=1802235&view=rev
Log:
OAK-6081 - Indexing tooling via oak-run

Add fds-path options to examples

Modified:
    jackrabbit/oak/trunk/oak-doc/src/site/markdown/query/oak-run-indexing.md

Modified: jackrabbit/oak/trunk/oak-doc/src/site/markdown/query/oak-run-indexing.md
URL: http://svn.apache.org/viewvc/jackrabbit/oak/trunk/oak-doc/src/site/markdown/query/oak-run-indexing.md?rev=1802235&r1=1802234&r2=1802235&view=diff
==============================================================================
--- jackrabbit/oak/trunk/oak-doc/src/site/markdown/query/oak-run-indexing.md (original)
+++ jackrabbit/oak/trunk/oak-doc/src/site/markdown/query/oak-run-indexing.md Tue Jul 18 05:08:53 2017
@@ -156,7 +156,9 @@ following ways
 
 In this mode we import the index using oak-run
 
-    java -jar oak-run*.jar index --index-import --read-write --index-import-dir=<index dir> /path/to/segmentstore
+    java -jar oak-run*.jar index --index-import --read-write \
+        --index-import-dir=<index dir>  \
+        --fds-path=/path/to/datastore /path/to/segmentstore
     
 Here "index dir" is the directory which contains the index files created in step #3. Check the logs from previous
 command for the directory path.
@@ -190,7 +192,7 @@ This is same as in out-of-band indexing
 In this step we configure oak-run to connect to repository in read-write mode and let it perform all other steps i.e
 checkpoint creation, indexing and import
 
-    java -jar oak-run*.jar index --reindex --index-paths=/oak:index/lucene --read-write /path/to/segmentstore
+    java -jar oak-run*.jar index --reindex --index-paths=/oak:index/lucene --read-write --fds-path=/path/to/datastore /path/to/segmentstore
     
 
 ### <a name="tika-setup"></a> Tika Setup