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:29:53 UTC

[accumulo-website] branch asf-site updated: Jekyll build from master:9b8f18d

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

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


The following commit(s) were added to refs/heads/asf-site by this push:
     new ad257e5  Jekyll build from master:9b8f18d
ad257e5 is described below

commit ad257e57cb5a753b4c1a8f0caa08054b6dccbe45
Author: Mike Walch <mw...@apache.org>
AuthorDate: Fri Oct 20 12:29:29 2017 -0400

    Jekyll build from master:9b8f18d
    
    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.html |  4 ++--
 docs/2.0/troubleshooting/tools.html | 16 ++++++++--------
 feed.xml                            |  4 ++--
 3 files changed, 12 insertions(+), 12 deletions(-)

diff --git a/docs/2.0/troubleshooting/basic.html b/docs/2.0/troubleshooting/basic.html
index d0ab7de..1e5b36d 100644
--- a/docs/2.0/troubleshooting/basic.html
+++ b/docs/2.0/troubleshooting/basic.html
@@ -466,10 +466,10 @@ processes should be stable on the order of months and not require frequent resta
 
 <p><strong>What are my visibilities?</strong></p>
 
-<p>Use the <a href="/docs/2.0/troubleshooting/tools#PrintInfo">PrintInfo</a> tool on a representative file to get some idea
+<p>Use the <a href="/docs/2.0/troubleshooting/tools#RFileInfo">rfile-info</a> tool on a representative file to get some idea
 of the visibilities in the underlying data.</p>
 
-<p>Note that the use of <code class="highlighter-rouge">PrintInfo</code> is an administrative tool and can only
+<p>Note that the use of <code class="highlighter-rouge">rfile-info</code> 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.</p>
 
diff --git a/docs/2.0/troubleshooting/tools.html b/docs/2.0/troubleshooting/tools.html
index ef9a13c..49a766f 100644
--- a/docs/2.0/troubleshooting/tools.html
+++ b/docs/2.0/troubleshooting/tools.html
@@ -328,13 +328,13 @@
       <div class="col-md-2"><a class="pull-right" style="margin-top: 25px;" href="https://github.com/apache/accumulo-website/edit/master/_docs-2-0/troubleshooting/tools.md" role="button"><i class="glyphicon glyphicon-pencil"></i> <small>Edit this page</small></a></div>
     </div>
 
-    <p>The <code class="highlighter-rouge">accumulo</code> command can be used to run classes from the command line.</p>
+    <p>The <code class="highlighter-rouge">accumulo</code> command can be used to run various tools and classes from the command line.</p>
 
-<h2 id="printinfo">PrintInfo</h2>
+<h2 id="rfileinfo">RFileInfo</h2>
 
-<p>The <code class="highlighter-rouge">PrintInfo</code> tool will examine an Accumulo storage file and print out basic metadata.</p>
+<p>The <code class="highlighter-rouge">rfile-info</code> tool will examine an Accumulo storage file and print out basic metadata.</p>
 
-<div class="highlighter-rouge"><pre class="highlight"><code>$ accumulo org.apache.accumulo.core.file.rfile.PrintInfo /accumulo/tables/1/default_tablet/A000000n.rf
+<div class="highlighter-rouge"><pre class="highlight"><code>$ 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         : &lt;DEFAULT&gt;
         Start block          : 0
@@ -361,9 +361,9 @@ Meta block     : RFile.index
 </code></pre>
 </div>
 
-<p>When trying to diagnose problems related to key size, the <code class="highlighter-rouge">PrintInfo</code> tool can provide a histogram of the individual key sizes:</p>
+<p>When trying to diagnose problems related to key size, the <code class="highlighter-rouge">rfile-info</code> tool can provide a histogram of the individual key sizes:</p>
 
-<div class="highlighter-rouge"><pre class="highlight"><code>$ accumulo org.apache.accumulo.core.file.rfile.PrintInfo --histogram /accumulo/tables/1/default_tablet/A000000n.rf
+<div class="highlighter-rouge"><pre class="highlight"><code>$ accumulo rfile-info --histogram /accumulo/tables/1/default_tablet/A000000n.rf
 ...
 Up to size      count      %-age
          10 :        222  28.23%
@@ -379,9 +379,9 @@ Up to size      count      %-age
 </code></pre>
 </div>
 
-<p>Likewise, <code class="highlighter-rouge">PrintInfo</code> will dump the key-value pairs and show you the contents of the RFile:</p>
+<p>Likewise, <code class="highlighter-rouge">rfile-info</code> will dump the key-value pairs and show you the contents of the RFile:</p>
 
-<div class="highlighter-rouge"><pre class="highlight"><code>$ accumulo org.apache.accumulo.core.file.rfile.PrintInfo --dump /accumulo/tables/1/default_tablet/A000000n.rf
+<div class="highlighter-rouge"><pre class="highlight"><code>$ accumulo rfile-info --dump /accumulo/tables/1/default_tablet/A000000n.rf
 row columnFamily:columnQualifier [visibility] timestamp deleteFlag -&gt; Value
 ...
 </code></pre>
diff --git a/feed.xml b/feed.xml
index 3b8f69a..134f2a7 100644
--- a/feed.xml
+++ b/feed.xml
@@ -6,8 +6,8 @@
 </description>
     <link>https://accumulo.apache.org/</link>
     <atom:link href="https://accumulo.apache.org/feed.xml" rel="self" type="application/rss+xml"/>
-    <pubDate>Thu, 05 Oct 2017 10:30:09 -0400</pubDate>
-    <lastBuildDate>Thu, 05 Oct 2017 10:30:09 -0400</lastBuildDate>
+    <pubDate>Fri, 20 Oct 2017 12:29:15 -0400</pubDate>
+    <lastBuildDate>Fri, 20 Oct 2017 12:29:15 -0400</lastBuildDate>
     <generator>Jekyll v3.5.2</generator>
     
     

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