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 md...@apache.org on 2016/12/15 12:45:10 UTC

svn commit: r1774432 - in /jackrabbit/oak/trunk/oak-doc/src/site/markdown: FAQ.md coldstandby/coldstandby.md differences.md dos_and_donts.md osgi_config.md plugins/blobstore.md query/query-engine.md

Author: mduerig
Date: Thu Dec 15 12:45:10 2016
New Revision: 1774432

URL: http://svn.apache.org/viewvc?rev=1774432&view=rev
Log:
OAK-4452: Consistently use the term segment-tar
Replace TarMK, SegmentMK with SegmentNodeStore where possible.

Modified:
    jackrabbit/oak/trunk/oak-doc/src/site/markdown/FAQ.md
    jackrabbit/oak/trunk/oak-doc/src/site/markdown/coldstandby/coldstandby.md
    jackrabbit/oak/trunk/oak-doc/src/site/markdown/differences.md
    jackrabbit/oak/trunk/oak-doc/src/site/markdown/dos_and_donts.md
    jackrabbit/oak/trunk/oak-doc/src/site/markdown/osgi_config.md
    jackrabbit/oak/trunk/oak-doc/src/site/markdown/plugins/blobstore.md
    jackrabbit/oak/trunk/oak-doc/src/site/markdown/query/query-engine.md

Modified: jackrabbit/oak/trunk/oak-doc/src/site/markdown/FAQ.md
URL: http://svn.apache.org/viewvc/jackrabbit/oak/trunk/oak-doc/src/site/markdown/FAQ.md?rev=1774432&r1=1774431&r2=1774432&view=diff
==============================================================================
--- jackrabbit/oak/trunk/oak-doc/src/site/markdown/FAQ.md (original)
+++ jackrabbit/oak/trunk/oak-doc/src/site/markdown/FAQ.md Thu Dec 15 12:45:10 2016
@@ -29,7 +29,7 @@ You are accessing a `Session` instance c
 Enabling `DEBUG` logging for `SessionDelegate` provides stack traces for both sessions involved. 
 *Note*: this should be used for debugging only as it has a major impact on system performance.
 
-#### I have a SegmentMK store and the size is growing beyond control
+#### My repository size on disk is growing beyond control (SegmentNodeStore)
 
 You need to setup a regular job for [compacting the segments](nodestore/segmentmk.html#Segment_Compaction).
 

Modified: jackrabbit/oak/trunk/oak-doc/src/site/markdown/coldstandby/coldstandby.md
URL: http://svn.apache.org/viewvc/jackrabbit/oak/trunk/oak-doc/src/site/markdown/coldstandby/coldstandby.md?rev=1774432&r1=1774431&r2=1774432&view=diff
==============================================================================
--- jackrabbit/oak/trunk/oak-doc/src/site/markdown/coldstandby/coldstandby.md (original)
+++ jackrabbit/oak/trunk/oak-doc/src/site/markdown/coldstandby/coldstandby.md Thu Dec 15 12:45:10 2016
@@ -37,7 +37,7 @@ The clients periodically request the seg
 
 ### Prerequisites
 
-An Oak installation using a SegmentStore using the TarMK.
+An Oak installation using the SegmentNodeStore
 
 ### Setup
 

Modified: jackrabbit/oak/trunk/oak-doc/src/site/markdown/differences.md
URL: http://svn.apache.org/viewvc/jackrabbit/oak/trunk/oak-doc/src/site/markdown/differences.md?rev=1774432&r1=1774431&r2=1774432&view=diff
==============================================================================
--- jackrabbit/oak/trunk/oak-doc/src/site/markdown/differences.md (original)
+++ jackrabbit/oak/trunk/oak-doc/src/site/markdown/differences.md Thu Dec 15 12:45:10 2016
@@ -202,8 +202,8 @@ As a result the `available()` method of
 the full count of remaining bytes, regardless of whether the next `read()`
 call would block to wait for disk IO.
 
-In Oak binaries are typically stored in an external database or (with the
-TarMK) using a custom data structure in the local file system. The streams
+In Oak binaries are typically stored in an external database or (in case of
+the SegmentNodeStore) using a custom data structure in the local file system. The streams
 returned by Oak are therefore custom `InputStream` subclasses that implement
 the `available()` method based on whether the next `read()` call will return
 immediately or if it needs to block to wait for the underlying IO operations.

Modified: jackrabbit/oak/trunk/oak-doc/src/site/markdown/dos_and_donts.md
URL: http://svn.apache.org/viewvc/jackrabbit/oak/trunk/oak-doc/src/site/markdown/dos_and_donts.md?rev=1774432&r1=1774431&r2=1774432&view=diff
==============================================================================
--- jackrabbit/oak/trunk/oak-doc/src/site/markdown/dos_and_donts.md (original)
+++ jackrabbit/oak/trunk/oak-doc/src/site/markdown/dos_and_donts.md Thu Dec 15 12:45:10 2016
@@ -74,7 +74,7 @@ If that is set to say 4096 then any bina
 as part of node data itself and not in BlobStore.
 
 Its recommended to not set very high value for this as depending on implementation it
-might hit some limit causing the commit to fail. For e.g. SegmentMK enforces a limit of
+might hit some limit causing the commit to fail. For e.g. the SegmentNodeStore enforces a limit of
 8k for any inlined binary value. Further this would also lead to repository growth as
 by default when binaries are stored in BlobStore then they are deduplicated.
 

Modified: jackrabbit/oak/trunk/oak-doc/src/site/markdown/osgi_config.md
URL: http://svn.apache.org/viewvc/jackrabbit/oak/trunk/oak-doc/src/site/markdown/osgi_config.md?rev=1774432&r1=1774431&r2=1774432&view=diff
==============================================================================
--- jackrabbit/oak/trunk/oak-doc/src/site/markdown/osgi_config.md (original)
+++ jackrabbit/oak/trunk/oak-doc/src/site/markdown/osgi_config.md Thu Dec 15 12:45:10 2016
@@ -51,7 +51,7 @@ This implementation has been deprecated,
 
 ##### org.apache.jackrabbit.oak.segment.SegmentNodeStoreService
 
-repository.home (string) - tarmk
+repository.home (string) - repository
 : A path on the file system where repository data will be stored.
 The Segment Store persists its data in a subdirectory of `repository.home` named `segmentstore`.
 The provided path can be relative or absolute.

Modified: jackrabbit/oak/trunk/oak-doc/src/site/markdown/plugins/blobstore.md
URL: http://svn.apache.org/viewvc/jackrabbit/oak/trunk/oak-doc/src/site/markdown/plugins/blobstore.md?rev=1774432&r1=1774431&r2=1774432&view=diff
==============================================================================
--- jackrabbit/oak/trunk/oak-doc/src/site/markdown/plugins/blobstore.md (original)
+++ jackrabbit/oak/trunk/oak-doc/src/site/markdown/plugins/blobstore.md Thu Dec 15 12:45:10 2016
@@ -89,9 +89,9 @@ Depending on NodeStore type and usage re
 a particular BlobStore implementation. For OSGi env refer to [Configuring DataStore/BlobStore]
 (../osgi_config.html#config-blobstore)
 
-#### SegmentNodeStore
+#### SegmentNodeStore (TarMK)
 
-By default SegmentNodeStore does not require a BlobStore. Instead the binary content is
+By default SegmentNodeStore (aka TarMK) does not require a BlobStore. Instead the binary content is
 directly stored as part of segment blob itself. Depending on requirements one of the following 
 can be used  
  

Modified: jackrabbit/oak/trunk/oak-doc/src/site/markdown/query/query-engine.md
URL: http://svn.apache.org/viewvc/jackrabbit/oak/trunk/oak-doc/src/site/markdown/query/query-engine.md?rev=1774432&r1=1774431&r2=1774432&view=diff
==============================================================================
--- jackrabbit/oak/trunk/oak-doc/src/site/markdown/query/query-engine.md (original)
+++ jackrabbit/oak/trunk/oak-doc/src/site/markdown/query/query-engine.md Thu Dec 15 12:45:10 2016
@@ -379,7 +379,7 @@ Sometimes there is a need to inspect the
 The index content is generally stored as content under the index definition as hidden nodes (this doesn't apply to the solr index).
 In order to be able to browse down into an index content you need a low level repository tool that allows NodeStore level access.
 There are currently 2 options: the oak-console (command line tool, works will all existing NodeStore implementations) and the oak-explorer
-(gui based on java swing, works only on the TarMK), both available as run modes of the [oak-run](https://github.com/apache/jackrabbit-oak/blob/trunk/oak-run/README.md) module
+(gui based on java swing, works only with the SegmentNodeStore), both available as run modes of the [oak-run](https://github.com/apache/jackrabbit-oak/blob/trunk/oak-run/README.md) module
 
 The structure of the index is specific to each implementation and is subject to change. What is worth mentioning is that all the _*PropertyIndex_
 flavors store the content as unstructured nodes (clear readable text), the _Lucene_ index is stored as binaries, so one would need to export the