You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@accumulo.apache.org by bi...@apache.org on 2019/11/14 18:34:34 UTC

[accumulo-website] branch asf-site updated: Jekyll build from master:818ebed

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

billie 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 e410cb1  Jekyll build from master:818ebed
e410cb1 is described below

commit e410cb1ea940ef2ad32cdcc11f930a959aa7dc08
Author: Billie Rinaldi <bi...@apache.org>
AuthorDate: Thu Nov 14 10:30:57 2019 -0800

    Jekyll build from master:818ebed
    
    Update blog to include openssl path to JAVA_OPTS in accumulo-env.sh (#208)
---
 blog/2019/10/15/accumulo-adlsgen2-notes.html | 15 +++++++++--
 feed.xml                                     | 39 ++++++++++++++++++----------
 redirects.json                               |  2 +-
 search_data.json                             |  2 +-
 tour/getting-started/index.html              |  2 +-
 5 files changed, 41 insertions(+), 19 deletions(-)

diff --git a/blog/2019/10/15/accumulo-adlsgen2-notes.html b/blog/2019/10/15/accumulo-adlsgen2-notes.html
index 2a9deb1..1c2cdd4 100644
--- a/blog/2019/10/15/accumulo-adlsgen2-notes.html
+++ b/blog/2019/10/15/accumulo-adlsgen2-notes.html
@@ -216,8 +216,19 @@ following versions were included with Hadoop 3.2.0.</p>
 <span class="nb">export </span>CLASSPATH
 </code></pre></div></div>
 
-<p>Tried adding <code class="highlighter-rouge">-Dorg.wildfly.openssl.path</code> to <code class="highlighter-rouge">JAVA_OPTS</code> in <code class="highlighter-rouge">accumulo-env.sh</code>, but it 
-did not appear to work, this needs further investigation.</p>
+<p>Include <code class="highlighter-rouge">-Dorg.wildfly.openssl.path</code> to <code class="highlighter-rouge">JAVA_OPTS</code> in <code class="highlighter-rouge">accumulo-env.sh</code> as shown below. This
+java property is an optional performance enhancement for TLS.</p>
+
+<div class="language-bash highlighter-rouge"><div class="highlight"><pre class="highlight"><code><span class="nv">JAVA_OPTS</span><span class="o">=(</span><span class="s2">"</span><span class="k">${</span><span class="nv">ACCUMULO_JAVA_OPTS</span><span class="p">[@]</span><span class="k">}</span><span class="s2">"</span>
+  <span class="s1">'-XX:+UseConcMarkSweepGC'</span>
+  <span class="s1">'-XX:CMSInitiatingOccupancyFraction=75'</span>
+  <span class="s1">'-XX:+CMSClassUnloadingEnabled'</span>
+  <span class="s1">'-XX:OnOutOfMemoryError=kill -9 %p'</span>
+  <span class="s1">'-XX:-OmitStackTraceInFastThrow'</span>
+  <span class="s1">'-Djava.net.preferIPv4Stack=true'</span>
+  <span class="s1">'-Dorg.wildfly.openssl.path=/usr/lib64'</span>
+  <span class="s2">"-Daccumulo.native.lib.path=</span><span class="k">${</span><span class="nv">lib</span><span class="k">}</span><span class="s2">/native"</span><span class="o">)</span>
+</code></pre></div></div>
 
 <p>Set the following in <code class="highlighter-rouge">accumulo.properties</code> and then run <code class="highlighter-rouge">accumulo init</code>, but don’t start Accumulo.</p>
 
diff --git a/feed.xml b/feed.xml
index 2ce1521..7cc4f1b 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, 07 Nov 2019 13:26:50 -0500</pubDate>
-    <lastBuildDate>Thu, 07 Nov 2019 13:26:50 -0500</lastBuildDate>
+    <pubDate>Thu, 14 Nov 2019 10:30:38 -0800</pubDate>
+    <lastBuildDate>Thu, 14 Nov 2019 10:30:38 -0800</lastBuildDate>
     <generator>Jekyll v4.0.0</generator>
     
     
@@ -97,7 +97,7 @@ they can be removed. This strategy prevents new usages of non-public APIs while
 to the maven-checkstyle-plugin configuration.&lt;/p&gt;
 
 </description>
-        <pubDate>Mon, 04 Nov 2019 00:00:00 -0500</pubDate>
+        <pubDate>Mon, 04 Nov 2019 00:00:00 -0800</pubDate>
         <link>https://accumulo.apache.org/blog/2019/11/04/checkstyle-import-control.html</link>
         <guid isPermaLink="true">https://accumulo.apache.org/blog/2019/11/04/checkstyle-import-control.html</guid>
         
@@ -178,8 +178,19 @@ following versions were included with Hadoop 3.2.0.&lt;/p&gt;
 &lt;span class=&quot;nb&quot;&gt;export &lt;/span&gt;CLASSPATH
 &lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;
 
-&lt;p&gt;Tried adding &lt;code class=&quot;highlighter-rouge&quot;&gt;-Dorg.wildfly.openssl.path&lt;/code&gt; to &lt;code class=&quot;highlighter-rouge&quot;&gt;JAVA_OPTS&lt;/code&gt; in &lt;code class=&quot;highlighter-rouge&quot;&gt;accumulo-env.sh&lt;/code&gt;, but it 
-did not appear to work, this needs further investigation.&lt;/p&gt;
+&lt;p&gt;Include &lt;code class=&quot;highlighter-rouge&quot;&gt;-Dorg.wildfly.openssl.path&lt;/code&gt; to &lt;code class=&quot;highlighter-rouge&quot;&gt;JAVA_OPTS&lt;/code&gt; in &lt;code class=&quot;highlighter-rouge&quot;&gt;accumulo-env.sh&lt;/code&gt; as shown below. This
+java property is an optional performance enhancement for TLS.&lt;/p&gt;
+
+&lt;div class=&quot;language-bash highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;&lt;span class=&quot;nv&quot;&gt;JAVA_OPTS&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=(&lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;&lt;/span&gt;&lt;span class=&quot;k&quot;&gt;${&lt;/span&gt;&lt;span class=&quot;nv&quot;&gt;ACCUMULO_JAVA_OPTS&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;[@]&lt;/span&gt;&lt;span class=&quot;k&quot; [...]
+  &lt;span class=&quot;s1&quot;&gt;'-XX:+UseConcMarkSweepGC'&lt;/span&gt;
+  &lt;span class=&quot;s1&quot;&gt;'-XX:CMSInitiatingOccupancyFraction=75'&lt;/span&gt;
+  &lt;span class=&quot;s1&quot;&gt;'-XX:+CMSClassUnloadingEnabled'&lt;/span&gt;
+  &lt;span class=&quot;s1&quot;&gt;'-XX:OnOutOfMemoryError=kill -9 %p'&lt;/span&gt;
+  &lt;span class=&quot;s1&quot;&gt;'-XX:-OmitStackTraceInFastThrow'&lt;/span&gt;
+  &lt;span class=&quot;s1&quot;&gt;'-Djava.net.preferIPv4Stack=true'&lt;/span&gt;
+  &lt;span class=&quot;s1&quot;&gt;'-Dorg.wildfly.openssl.path=/usr/lib64'&lt;/span&gt;
+  &lt;span class=&quot;s2&quot;&gt;&quot;-Daccumulo.native.lib.path=&lt;/span&gt;&lt;span class=&quot;k&quot;&gt;${&lt;/span&gt;&lt;span class=&quot;nv&quot;&gt;lib&lt;/span&gt;&lt;span class=&quot;k&quot;&gt;}&lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;/native&quot;&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;)&lt;/span&gt;
+&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;
 
 &lt;p&gt;Set the following in &lt;code class=&quot;highlighter-rouge&quot;&gt;accumulo.properties&lt;/code&gt; and then run &lt;code class=&quot;highlighter-rouge&quot;&gt;accumulo init&lt;/code&gt;, but don’t start Accumulo.&lt;/p&gt;
 
@@ -229,7 +240,7 @@ we are able to successfully run the continuos ingest test. Going forward, we’l
 with ADLS Gen2 and add/update blog as we come along.&lt;/p&gt;
 
 </description>
-        <pubDate>Tue, 15 Oct 2019 00:00:00 -0400</pubDate>
+        <pubDate>Tue, 15 Oct 2019 00:00:00 -0700</pubDate>
         <link>https://accumulo.apache.org/blog/2019/10/15/accumulo-adlsgen2-notes.html</link>
         <guid isPermaLink="true">https://accumulo.apache.org/blog/2019/10/15/accumulo-adlsgen2-notes.html</guid>
         
@@ -553,7 +564,7 @@ to Accumulo to make working with EC a bit easier. Our initial thoughts are colle
 Accumulo dev list &lt;a href=&quot;https://lists.apache.org/thread.html/4ac5b0f664e15fa120e748892612f1e417b7dee3e1539669d179900c@%3Cdev.accumulo.apache.org%3E&quot;&gt;post&lt;/a&gt;.&lt;/p&gt;
 
 </description>
-        <pubDate>Tue, 17 Sep 2019 00:00:00 -0400</pubDate>
+        <pubDate>Tue, 17 Sep 2019 00:00:00 -0700</pubDate>
         <link>https://accumulo.apache.org/blog/2019/09/17/erasure-coding.html</link>
         <guid isPermaLink="true">https://accumulo.apache.org/blog/2019/09/17/erasure-coding.html</guid>
         
@@ -694,7 +705,7 @@ S3Gaurd.  If this is the case then only the write ahead logs would need to be
 stored in HDFS.&lt;/p&gt;
 
 </description>
-        <pubDate>Tue, 10 Sep 2019 00:00:00 -0400</pubDate>
+        <pubDate>Tue, 10 Sep 2019 00:00:00 -0700</pubDate>
         <link>https://accumulo.apache.org/blog/2019/09/10/accumulo-S3-notes.html</link>
         <guid isPermaLink="true">https://accumulo.apache.org/blog/2019/09/10/accumulo-S3-notes.html</guid>
         
@@ -835,7 +846,7 @@ to configure the cluster in a way that allows the one fast scan to be prioritize
 &lt;p&gt;Checkout some examples in the &lt;a href=&quot;/docs/2.x//administration/scan-executors&quot;&gt;user guide&lt;/a&gt;.&lt;/p&gt;
 
 </description>
-        <pubDate>Mon, 12 Aug 2019 00:00:00 -0400</pubDate>
+        <pubDate>Mon, 12 Aug 2019 00:00:00 -0700</pubDate>
         <link>https://accumulo.apache.org/blog/2019/08/12/why-upgrade.html</link>
         <guid isPermaLink="true">https://accumulo.apache.org/blog/2019/08/12/why-upgrade.html</guid>
         
@@ -1043,7 +1054,7 @@ at table creation time can be much faster than adding splits after creation.&lt;
 &lt;p&gt;View the &lt;a href=&quot;/docs/2.x/administration/upgrading&quot;&gt;Upgrading Accumulo documentation&lt;/a&gt; for guidance.&lt;/p&gt;
 
 </description>
-        <pubDate>Fri, 02 Aug 2019 00:00:00 -0400</pubDate>
+        <pubDate>Fri, 02 Aug 2019 00:00:00 -0700</pubDate>
         <link>https://accumulo.apache.org/release/accumulo-2.0.0/</link>
         <guid isPermaLink="true">https://accumulo.apache.org/release/accumulo-2.0.0/</guid>
         
@@ -1060,7 +1071,7 @@ the 2.0 Accumulo user manual. The &lt;a href=&quot;https://github.com/apache/acc
 for using Spark with Accumulo.&lt;/p&gt;
 
 </description>
-        <pubDate>Wed, 24 Apr 2019 00:00:00 -0400</pubDate>
+        <pubDate>Wed, 24 Apr 2019 00:00:00 -0700</pubDate>
         <link>https://accumulo.apache.org/blog/2019/04/24/using-spark-with-accumulo.html</link>
         <guid isPermaLink="true">https://accumulo.apache.org/blog/2019/04/24/using-spark-with-accumulo.html</guid>
         
@@ -1240,7 +1251,7 @@ address thrift CVE. Issue &lt;a href=&quot;https://github.com/apache/accumulo/is
 &lt;p&gt;View the &lt;a href=&quot;/docs/2.x/administration/upgrading&quot;&gt;Upgrading Accumulo documentation&lt;/a&gt; for guidance.&lt;/p&gt;
 
 </description>
-        <pubDate>Wed, 10 Apr 2019 00:00:00 -0400</pubDate>
+        <pubDate>Wed, 10 Apr 2019 00:00:00 -0700</pubDate>
         <link>https://accumulo.apache.org/release/accumulo-1.9.3/</link>
         <guid isPermaLink="true">https://accumulo.apache.org/release/accumulo-1.9.3/</guid>
         
@@ -1270,7 +1281,7 @@ to attendees. If you are interested in a corporate sponsorship, please feel free
 &lt;a href=&quot;mailto:elserj@apache.org&quot;&gt;Josh Elser&lt;/a&gt; for more information.&lt;/p&gt;
 
 </description>
-        <pubDate>Thu, 28 Feb 2019 00:00:00 -0500</pubDate>
+        <pubDate>Thu, 28 Feb 2019 00:00:00 -0800</pubDate>
         <link>https://accumulo.apache.org/blog/2019/02/28/nosql-day.html</link>
         <guid isPermaLink="true">https://accumulo.apache.org/blog/2019/02/28/nosql-day.html</guid>
         
@@ -1312,7 +1323,7 @@ complete in this alpha release.&lt;/li&gt;
 &lt;/ul&gt;
 
 </description>
-        <pubDate>Thu, 31 Jan 2019 00:00:00 -0500</pubDate>
+        <pubDate>Thu, 31 Jan 2019 00:00:00 -0800</pubDate>
         <link>https://accumulo.apache.org/release/accumulo-2.0.0-alpha-2/</link>
         <guid isPermaLink="true">https://accumulo.apache.org/release/accumulo-2.0.0-alpha-2/</guid>
         
diff --git a/redirects.json b/redirects.json
index 6e10199..d26b373 100644
--- a/redirects.json
+++ b/redirects.json
@@ -1 +1 @@
-{"/release_notes/1.5.1.html":"https://accumulo.apache.org/release/accumulo-1.5.1/","/release_notes/1.6.0.html":"https://accumulo.apache.org/release/accumulo-1.6.0/","/release_notes/1.6.1.html":"https://accumulo.apache.org/release/accumulo-1.6.1/","/release_notes/1.6.2.html":"https://accumulo.apache.org/release/accumulo-1.6.2/","/release_notes/1.7.0.html":"https://accumulo.apache.org/release/accumulo-1.7.0/","/release_notes/1.5.3.html":"https://accumulo.apache.org/release/accumulo-1.5.3/" [...]
\ No newline at end of file
+{"/release_notes/1.5.1.html":"https://accumulo.apache.org/release/accumulo-1.5.1/","/release_notes/1.6.0.html":"https://accumulo.apache.org/release/accumulo-1.6.0/","/release_notes/1.6.1.html":"https://accumulo.apache.org/release/accumulo-1.6.1/","/release_notes/1.6.2.html":"https://accumulo.apache.org/release/accumulo-1.6.2/","/release_notes/1.7.0.html":"https://accumulo.apache.org/release/accumulo-1.7.0/","/release_notes/1.5.3.html":"https://accumulo.apache.org/release/accumulo-1.5.3/" [...]
\ No newline at end of file
diff --git a/search_data.json b/search_data.json
index 7f4e9e4..4462a3f 100644
--- a/search_data.json
+++ b/search_data.json
@@ -305,7 +305,7 @@
   
     "blog-2019-10-15-accumulo-adlsgen2-notes-html": {
       "title": "Using Azure Data Lake Gen2 storage as a data store for Accumulo",
-      "content"	 : "Accumulo can store its files in Azure Data Lake Storage Gen2using the ABFS (Azure Blob File System) driver.Similar to S3 blog, the write ahead logs &amp;amp; Accumulo metadata can be stored in HDFS and everything else on Gen2 storageusing the volume chooser feature introduced in Accumulo 2.0. The configurations referred on this blogare specific to Accumulo 2.0 and Hadoop 3.2.0.Hadoop setupFor ABFS client to talk to Gen2 storage, it requires one of the Authentication m [...]
+      "content"	 : "Accumulo can store its files in Azure Data Lake Storage Gen2using the ABFS (Azure Blob File System) driver.Similar to S3 blog, the write ahead logs &amp;amp; Accumulo metadata can be stored in HDFS and everything else on Gen2 storageusing the volume chooser feature introduced in Accumulo 2.0. The configurations referred on this blogare specific to Accumulo 2.0 and Hadoop 3.2.0.Hadoop setupFor ABFS client to talk to Gen2 storage, it requires one of the Authentication m [...]
       "url": " /blog/2019/10/15/accumulo-adlsgen2-notes.html",
       "categories": "blog"
     }
diff --git a/tour/getting-started/index.html b/tour/getting-started/index.html
index 2250d98..088fd3e 100644
--- a/tour/getting-started/index.html
+++ b/tour/getting-started/index.html
@@ -171,7 +171,7 @@ great here on the tour.  Files and logs used by <a href="https://static.javadoc.
 </code></pre></div>    </div>
   </li>
   <li>Use the following Maven command to build and run the tour.
-    <pre><code class="language-commandline">mvn -q clean compile exec:exec
+    <pre><code class="language-commandline">mvn -q clean verify exec:exec
 </code></pre>
   </li>
 </ol>