Author: amitj
Date: Fri Jan 29 04:46:48 2016
New Revision: 1727480
URL: http://svn.apache.org/viewvc?rev=1727480&view=rev
Log:
OAK-3935: SharedDataStore - Allow unique repository ID to be specified by config
Added documentation
Modified:
jackrabbit/oak/trunk/oak-doc/src/site/markdown/osgi_config.md
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=1727480&r1=1727479&r2=1727480&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 Fri Jan 29
04:46:48 2016
@@ -51,6 +51,20 @@ tarmk.size
: Default - 256 (in MB)
: Maximum file size (in MB)
+customBlobStore
+: Default false
+: Boolean value indicating that custom `BlobStore` to use. By default it uses
`MongoBlobStore`.
+
+blobGcMaxAgeInSecs
+: Default 86400 (24 hrs)
+: Blob Garbage Collector (GC) logic would only consider those blobs for GC
which are not accessed recently
+ (currentTime - lastModifiedTime > blobGcMaxAgeInSecs). For example as per
default only those blobs which have
+ been created 24 hrs ago would be considered for GC
+
+sharedDSRepoId (From Oak 1.2.11 & Oak 1.3.15)
+: Default ""
+: Custom SharedDataStore repositoryId. Used when custom blobstore configured.
Should be unique among the repositories sharing the datastore.
+
<a name="document-node-store"></a>
#### DocumentNodeStore
@@ -136,6 +150,10 @@ cacheStackMoveDistance
: The delay to move entries to the head of the queue in the LIRS cache
: Since 1.0.15, 1.2.3, 1.3.0
+sharedDSRepoId (From Oak 1.2.11 & Oak 1.3.15)
+: Default ""
+: Custom SharedDataStore repositoryId. Used when custom blobstore configured.
Should be unique among the repositories sharing the datastore.
+
Example config file
mongouri=mongodb://localhost:27017