You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@accumulo.apache.org by mw...@apache.org on 2017/10/20 16:20:24 UTC

[accumulo-website] branch master updated: ACCUMULO-4721 Document rfile-info in user manual (#28)

This is an automated email from the ASF dual-hosted git repository.

mwalch pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/accumulo-website.git


The following commit(s) were added to refs/heads/master by this push:
     new 9b8f18d  ACCUMULO-4721 Document rfile-info in user manual (#28)
9b8f18d is described below

commit 9b8f18d36ca47b8307c11d5026302ae832028c86
Author: Mark Owens <jm...@gmail.com>
AuthorDate: Fri Oct 20 12:20:23 2017 -0400

    ACCUMULO-4721 Document rfile-info in user manual (#28)
    
    * Updated the 2.0 website documentation to reference rfile-info rather
    than org.apache.accumulo.core.file.rfile.PrintInfo. Should be easier to
    uderstand for a user than the longer classname.
---
 _docs-2-0/troubleshooting/basic.md |  6 +++---
 _docs-2-0/troubleshooting/tools.md | 16 ++++++++--------
 2 files changed, 11 insertions(+), 11 deletions(-)

diff --git a/_docs-2-0/troubleshooting/basic.md b/_docs-2-0/troubleshooting/basic.md
index 03f4e5f..8ab4a30 100644
--- a/_docs-2-0/troubleshooting/basic.md
+++ b/_docs-2-0/troubleshooting/basic.md
@@ -132,10 +132,10 @@ Do you have your auths set so that it matches your visibilities?
 
 **What are my visibilities?**
 
-Use the [PrintInfo][print-info] tool on a representative file to get some idea
+Use the [rfile-info] tool on a representative file to get some idea
 of the visibilities in the underlying data.
 
-Note that the use of `PrintInfo` is an administrative tool and can only
+Note that the use of `rfile-info` is an administrative tool and can only
 by used by someone who can access the underlying Accumulo data. It
 does not provide the normal access controls in Accumulo.
 
@@ -231,5 +231,5 @@ Node count: 22524
 
 Check zookeeper status, verify that it has a quorum, and has not exceeded maxClientCnxns.
 
-[print-info]: {{ page.docs_baseurl }}/troubleshooting/tools#PrintInfo
+[rfile-info]: {{ page.docs_baseurl }}/troubleshooting/tools#RFileInfo
 [native-maps]: {{ page.docs_baseurl }}/administration/in-depth-install#native-map
diff --git a/_docs-2-0/troubleshooting/tools.md b/_docs-2-0/troubleshooting/tools.md
index 8a0d8ed..32ab247 100644
--- a/_docs-2-0/troubleshooting/tools.md
+++ b/_docs-2-0/troubleshooting/tools.md
@@ -4,14 +4,14 @@ category: troubleshooting
 order: 3
 ---
 
-The `accumulo` command can be used to run classes from the command line.
+The `accumulo` command can be used to run various tools and classes from the command line.
 
-## PrintInfo
+## RFileInfo
 
-The `PrintInfo` tool will examine an Accumulo storage file and print out basic metadata.
+The `rfile-info` tool will examine an Accumulo storage file and print out basic metadata.
 
 ```
-$ accumulo org.apache.accumulo.core.file.rfile.PrintInfo /accumulo/tables/1/default_tablet/A000000n.rf
+$ accumulo rfile-info /accumulo/tables/1/default_tablet/A000000n.rf
 2013-07-16 08:17:14,778 [util.NativeCodeLoader] INFO : Loaded the native-hadoop library
 Locality group         : <DEFAULT>
         Start block          : 0
@@ -37,9 +37,9 @@ Meta block     : RFile.index
       Compression type     : gz
 ```
 
-When trying to diagnose problems related to key size, the `PrintInfo` tool can provide a histogram of the individual key sizes:
+When trying to diagnose problems related to key size, the `rfile-info` tool can provide a histogram of the individual key sizes:
 
-    $ accumulo org.apache.accumulo.core.file.rfile.PrintInfo --histogram /accumulo/tables/1/default_tablet/A000000n.rf
+    $ accumulo rfile-info --histogram /accumulo/tables/1/default_tablet/A000000n.rf
     ...
     Up to size      count      %-age
              10 :        222  28.23%
@@ -53,9 +53,9 @@ When trying to diagnose problems related to key size, the `PrintInfo` tool can p
      1000000000 :          0   0.00%
     10000000000 :          0   0.00%
 
-Likewise, `PrintInfo` will dump the key-value pairs and show you the contents of the RFile:
+Likewise, `rfile-info` will dump the key-value pairs and show you the contents of the RFile:
 
-    $ accumulo org.apache.accumulo.core.file.rfile.PrintInfo --dump /accumulo/tables/1/default_tablet/A000000n.rf
+    $ accumulo rfile-info --dump /accumulo/tables/1/default_tablet/A000000n.rf
     row columnFamily:columnQualifier [visibility] timestamp deleteFlag -> Value
     ...
 

-- 
To stop receiving notification emails like this one, please contact
['"commits@accumulo.apache.org" <co...@accumulo.apache.org>'].