Author: mduerig
Date: Mon Feb 5 08:35:53 2018
New Revision: 1823138
URL: http://svn.apache.org/viewvc?rev=1823138&view=rev
Log:
OAK-7241: oak-run documentation typo for checkpoints command
merged r1823135
Modified:
jackrabbit/oak/branches/1.8/ (props changed)
jackrabbit/oak/branches/1.8/oak-doc/src/site/markdown/command_line.md
Propchange: jackrabbit/oak/branches/1.8/
------------------------------------------------------------------------------
--- svn:mergeinfo (original)
+++ svn:mergeinfo Mon Feb 5 08:35:53 2018
@@ -1,3 +1,3 @@
/jackrabbit/oak/branches/1.0:1665962
-/jackrabbit/oak/trunk:1820660-1820661,1820729,1820734,1820859,1820861,1820878,1820888,1820947,1821130,1821140-1821141,1821240,1821249,1821258,1821325,1821358,1821361-1821362,1821370,1821375,1821393,1821477,1821487,1821516,1821665,1821668,1821681,1822723
+/jackrabbit/oak/trunk:1820660-1820661,1820729,1820734,1820859,1820861,1820878,1820888,1820947,1821130,1821140-1821141,1821240,1821249,1821258,1821325,1821358,1821361-1821362,1821370,1821375,1821393,1821477,1821487,1821516,1821665,1821668,1821681,1822723,1823135
/jackrabbit/trunk:1345480
Modified: jackrabbit/oak/branches/1.8/oak-doc/src/site/markdown/command_line.md
URL:
http://svn.apache.org/viewvc/jackrabbit/oak/branches/1.8/oak-doc/src/site/markdown/command_line.md?rev=1823138&r1=1823137&r2=1823138&view=diff
==============================================================================
--- jackrabbit/oak/branches/1.8/oak-doc/src/site/markdown/command_line.md
(original)
+++ jackrabbit/oak/branches/1.8/oak-doc/src/site/markdown/command_line.md Mon
Feb 5 08:35:53 2018
@@ -40,7 +40,7 @@ The `<backup>` option is the target dire
To list the checkpoints of a repository, use:
- java -mx4g -jar oak-run-*.jar checkpoint <repository>
+ java -mx4g -jar oak-run-*.jar checkpoints <repository>
When using the (default) Tar storage, the `<repository>` setting is the path
to the directory
that contains the segment (data*.tar) files.
@@ -51,7 +51,7 @@ The oak-run compact operation may be use
java -mx4g -jar oak-run-*.jar compact <repository>
-It makes sense to find and remove the old checkpoints, using the `checkpoint`
+It makes sense to find and remove the old checkpoints, using the `checkpoints`
command described above.
#### Index Management
@@ -60,7 +60,7 @@ The oak-run index operation is used to [
#### System properties supported by the oak-run
-When performing operations on the SegmentNodeStore (eg. backup, checkpoint,
compact), it's
+When performing operations on the SegmentNodeStore (eg. backup, checkpoints,
compact), it's
possible to tweak various system properties to get the optimal performance.
These are:
* `cache` - cache size for the SegmentNodeStore (default: `256`),
@@ -70,7 +70,7 @@ possible to tweak various system propert
Example:
- java -Dtar.memoryMapped=true -mx4g -jar oak-run-*.jar checkpoint
<repository>
+ java -Dtar.memoryMapped=true -mx4g -jar oak-run-*.jar checkpoints
<repository>
#### Analyzing Thread Dumps ####