You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@orc.apache.org by om...@apache.org on 2018/05/17 22:13:01 UTC

[07/11] orc git commit: Deploy docs with CVE.

http://git-wip-us.apache.org/repos/asf/orc/blob/e58d3fc4/docs/mapreduce.html
----------------------------------------------------------------------
diff --git a/docs/mapreduce.html b/docs/mapreduce.html
index 63fcd9c..162e3b7 100644
--- a/docs/mapreduce.html
+++ b/docs/mapreduce.html
@@ -4,7 +4,7 @@
   <meta charset="UTF-8">
   <title>Using in MapReduce</title>
   <meta name="viewport" content="width=device-width,initial-scale=1">
-  <meta name="generator" content="Jekyll v2.4.0">
+  <meta name="generator" content="Jekyll v3.7.3">
   <link rel="stylesheet" href="//fonts.googleapis.com/css?family=Lato:300,300italic,400,400italic,700,700italic,900">
   <link rel="stylesheet" href="/css/screen.css">
   <link rel="icon" type="image/x-icon" href="/favicon.ico">
@@ -109,7 +109,7 @@
     
   
     
-      <option value="/docs/index.html">Background</option>
+      <option value="http://localhost:4000/docs/index.html">Background</option>
     
   
     
@@ -131,7 +131,7 @@
     
   
     
-      <option value="/docs/adopters.html">ORC Adopters</option>
+      <option value="http://localhost:4000/docs/adopters.html">ORC Adopters</option>
     
   
     
@@ -193,7 +193,7 @@
     
   
     
-      <option value="/docs/types.html">Types</option>
+      <option value="http://localhost:4000/docs/types.html">Types</option>
     
   
 
@@ -219,7 +219,7 @@
     
   
     
-      <option value="/docs/indexes.html">Indexes</option>
+      <option value="http://localhost:4000/docs/indexes.html">Indexes</option>
     
   
     
@@ -237,7 +237,7 @@
 
   
     
-      <option value="/docs/acid.html">ACID support</option>
+      <option value="http://localhost:4000/docs/acid.html">ACID support</option>
     
   
     
@@ -284,7 +284,7 @@
     
   
     
-      <option value="/docs/building.html">Building ORC</option>
+      <option value="http://localhost:4000/docs/building.html">Building ORC</option>
     
   
     
@@ -342,7 +342,7 @@
     
   
     
-      <option value="/docs/releases.html">Releases</option>
+      <option value="http://localhost:4000/docs/releases.html">Releases</option>
     
   
     
@@ -373,7 +373,7 @@
     
   
     
-      <option value="/docs/hive-ddl.html">Hive DDL</option>
+      <option value="http://localhost:4000/docs/hive-ddl.html">Hive DDL</option>
     
   
     
@@ -407,7 +407,7 @@
     
   
     
-      <option value="/docs/hive-config.html">Hive Configuration</option>
+      <option value="http://localhost:4000/docs/hive-config.html">Hive Configuration</option>
     
   
     
@@ -460,7 +460,7 @@
     
   
     
-      <option value="/docs/mapred.html">Using in MapRed</option>
+      <option value="http://localhost:4000/docs/mapred.html">Using in MapRed</option>
     
   
     
@@ -498,7 +498,7 @@
     
   
     
-      <option value="/docs/mapreduce.html">Using in MapReduce</option>
+      <option value="http://localhost:4000/docs/mapreduce.html">Using in MapReduce</option>
     
   
     
@@ -525,7 +525,7 @@
     
   
     
-      <option value="/docs/core-java.html">Using Core Java</option>
+      <option value="http://localhost:4000/docs/core-java.html">Using Core Java</option>
     
   
     
@@ -559,7 +559,7 @@
     
   
     
-      <option value="/docs/core-cpp.html">Using Core C++</option>
+      <option value="http://localhost:4000/docs/core-cpp.html">Using Core C++</option>
     
   
     
@@ -606,7 +606,7 @@
     
   
     
-      <option value="/docs/cpp-tools.html">C++ Tools</option>
+      <option value="http://localhost:4000/docs/cpp-tools.html">C++ Tools</option>
     
   
     
@@ -652,7 +652,7 @@
     
   
     
-      <option value="/docs/java-tools.html">Java Tools</option>
+      <option value="http://localhost:4000/docs/java-tools.html">Java Tools</option>
     
   
     
@@ -676,31 +676,31 @@
           <h1>Using in MapReduce</h1>
           <p>This page describes how to read and write ORC files from Hadoop’s
 newer org.apache.hadoop.mapreduce MapReduce APIs. If you want to use the
-older org.apache.hadoop.mapred API, please look at the <a href="/docs/mapred.html">previous
+older org.apache.hadoop.mapred API, please look at the <a href="http://localhost:4000/docs/mapred.html">previous
 page</a>.</p>
 
 <h2 id="reading-orc-files">Reading ORC files</h2>
 
-<p>Add ORC and your desired version of Hadoop to your <code>pom.xml</code>:</p>
-
-<pre><code class="language-xml">&lt;dependencies&gt;
-  &lt;dependency&gt;
-    &lt;groupId&gt;org.apache.orc&lt;/groupId&gt;
-    &lt;artifactId&gt;orc-mapreduce&lt;/artifactId&gt;
-    &lt;version&gt;1.1.0&lt;/version&gt;
-  &lt;/dependency&gt;
-  &lt;dependency&gt;
-    &lt;groupId&gt;org.apache.hadoop&lt;/groupId&gt;
-    &lt;artifactId&gt;hadoop-mapreduce-client-core&lt;/artifactId&gt;
-    &lt;version&gt;2.7.0&lt;/version&gt;
-  &lt;/dependency&gt;
-&lt;/dependencies&gt;
-</code></pre>
+<p>Add ORC and your desired version of Hadoop to your <code class="highlighter-rouge">pom.xml</code>:</p>
+
+<div class="language-xml highlighter-rouge"><div class="highlight"><pre class="highlight"><code><span class="nt">&lt;dependencies&gt;</span>
+  <span class="nt">&lt;dependency&gt;</span>
+    <span class="nt">&lt;groupId&gt;</span>org.apache.orc<span class="nt">&lt;/groupId&gt;</span>
+    <span class="nt">&lt;artifactId&gt;</span>orc-mapreduce<span class="nt">&lt;/artifactId&gt;</span>
+    <span class="nt">&lt;version&gt;</span>1.1.0<span class="nt">&lt;/version&gt;</span>
+  <span class="nt">&lt;/dependency&gt;</span>
+  <span class="nt">&lt;dependency&gt;</span>
+    <span class="nt">&lt;groupId&gt;</span>org.apache.hadoop<span class="nt">&lt;/groupId&gt;</span>
+    <span class="nt">&lt;artifactId&gt;</span>hadoop-mapreduce-client-core<span class="nt">&lt;/artifactId&gt;</span>
+    <span class="nt">&lt;version&gt;</span>2.7.0<span class="nt">&lt;/version&gt;</span>
+  <span class="nt">&lt;/dependency&gt;</span>
+<span class="nt">&lt;/dependencies&gt;</span>
+</code></pre></div></div>
 
 <p>Set the minimal properties in your JobConf:</p>
 
 <ul>
-  <li><strong>mapreduce.job.inputformat.class</strong> = <a href="/api/orc-mapreduce/index.html?org/apache/orc/mapreduce/OrcInputFormat.html">org.apache.orc.mapreduce.OrcInputFormat</a></li>
+  <li><strong>mapreduce.job.inputformat.class</strong> = <a href="http://localhost:4000/api/orc-mapreduce/index.html?org/apache/orc/mapreduce/OrcInputFormat.html">org.apache.orc.mapreduce.OrcInputFormat</a></li>
   <li><strong>mapreduce.input.fileinputformat.inputdir</strong> = your input directory</li>
 </ul>
 
@@ -723,7 +723,7 @@ the key and a value based on the table below expanded recursively.</p>
   <tbody>
     <tr>
       <td>array</td>
-      <td><a href="/api/orc-mapreduce/index.html?org/apache/orc/mapred/OrcStruct.html">org.apache.orc.mapred.OrcList</a></td>
+      <td><a href="http://localhost:4000/api/orc-mapreduce/index.html?org/apache/orc/mapred/OrcStruct.html">org.apache.orc.mapred.OrcList</a></td>
     </tr>
     <tr>
       <td>binary</td>
@@ -743,11 +743,11 @@ the key and a value based on the table below expanded recursively.</p>
     </tr>
     <tr>
       <td>date</td>
-      <td><a href="/api/hive-storage-api/index.html?org/apache/hadoop/hive/serde2/io/DateWritable.html">org.apache.hadoop.hive.serde2.io.DateWritable</a></td>
+      <td><a href="http://localhost:4000/api/hive-storage-api/index.html?org/apache/hadoop/hive/serde2/io/DateWritable.html">org.apache.hadoop.hive.serde2.io.DateWritable</a></td>
     </tr>
     <tr>
       <td>decimal</td>
-      <td><a href="/api/hive-storage-api/index.html?org/apache/hadoop/hive/serde2/io/HiveDecimalWritable.html">org.apache.hadoop.hive.serde2.io.HiveDecimalWritable</a></td>
+      <td><a href="http://localhost:4000/api/hive-storage-api/index.html?org/apache/hadoop/hive/serde2/io/HiveDecimalWritable.html">org.apache.hadoop.hive.serde2.io.HiveDecimalWritable</a></td>
     </tr>
     <tr>
       <td>double</td>
@@ -763,7 +763,7 @@ the key and a value based on the table below expanded recursively.</p>
     </tr>
     <tr>
       <td>map</td>
-      <td><a href="/api/orc-mapreduce/index.html?org/apache/orc/mapred/OrcMap.html">org.apache.orc.mapred.OrcMap</a></td>
+      <td><a href="http://localhost:4000/api/orc-mapreduce/index.html?org/apache/orc/mapred/OrcMap.html">org.apache.orc.mapred.OrcMap</a></td>
     </tr>
     <tr>
       <td>smallint</td>
@@ -775,11 +775,11 @@ the key and a value based on the table below expanded recursively.</p>
     </tr>
     <tr>
       <td>struct</td>
-      <td><a href="/api/orc-mapreduce/index.html?org/apache/orc/mapred/OrcStruct.html">org.apache.orc.mapred.OrcStruct</a></td>
+      <td><a href="http://localhost:4000/api/orc-mapreduce/index.html?org/apache/orc/mapred/OrcStruct.html">org.apache.orc.mapred.OrcStruct</a></td>
     </tr>
     <tr>
       <td>timestamp</td>
-      <td><a href="/api/orc-mapreduce/index.html?org/apache/orc/mapred/OrcTimestamp.html">org.apache.orc.mapred.OrcTimestamp</a></td>
+      <td><a href="http://localhost:4000/api/orc-mapreduce/index.html?org/apache/orc/mapred/OrcTimestamp.html">org.apache.orc.mapred.OrcTimestamp</a></td>
     </tr>
     <tr>
       <td>tinyint</td>
@@ -787,7 +787,7 @@ the key and a value based on the table below expanded recursively.</p>
     </tr>
     <tr>
       <td>uniontype</td>
-      <td><a href="/api/orc-mapreduce/index.html?org/apache/orc/mapred/OrcUnion.html">org.apache.orc.mapred.OrcUnion</a></td>
+      <td><a href="http://localhost:4000/api/orc-mapreduce/index.html?org/apache/orc/mapred/OrcUnion.html">org.apache.orc.mapred.OrcUnion</a></td>
     </tr>
     <tr>
       <td>varchar</td>
@@ -797,29 +797,29 @@ the key and a value based on the table below expanded recursively.</p>
 </table>
 
 <p>Let’s assume that your input directory contains ORC files with the
-schema <code>struct&lt;s:string,i:int&gt;</code> and you want to use the string field
+schema <code class="highlighter-rouge">struct&lt;s:string,i:int&gt;</code> and you want to use the string field
 as the key to the MapReduce shuffle and the integer as the value. The
 mapper code would look like:</p>
 
-<pre><code class="language-java">public static class MyMapper
-    extends Mapper&lt;NullWritable,OrcStruct,Text,IntWritable&gt; {
+<div class="language-java highlighter-rouge"><div class="highlight"><pre class="highlight"><code><span class="kd">public</span> <span class="kd">static</span> <span class="kd">class</span> <span class="nc">MyMapper</span>
+    <span class="kd">extends</span> <span class="n">Mapper</span><span class="o">&lt;</span><span class="n">NullWritable</span><span class="o">,</span><span class="n">OrcStruct</span><span class="o">,</span><span class="n">Text</span><span class="o">,</span><span class="n">IntWritable</span><span class="o">&gt;</span> <span class="o">{</span>
 
-  // Assume the ORC file has type: struct&lt;s:string,i:int&gt;
-  public void map(NullWritable key, OrcStruct value,
-                  Context output) throws IOException, InterruptedException {
-    // take the first field as the key and the second field as the value
-    output.write((Text) value.getFieldValue(0),
-                 (IntWritable) value.getFieldValue(1));
-  }
-}
-</code></pre>
+  <span class="c1">// Assume the ORC file has type: struct&lt;s:string,i:int&gt;</span>
+  <span class="kd">public</span> <span class="kt">void</span> <span class="nf">map</span><span class="o">(</span><span class="n">NullWritable</span> <span class="n">key</span><span class="o">,</span> <span class="n">OrcStruct</span> <span class="n">value</span><span class="o">,</span>
+                  <span class="n">Context</span> <span class="n">output</span><span class="o">)</span> <span class="kd">throws</span> <span class="n">IOException</span><span class="o">,</span> <span class="n">InterruptedException</span> <span class="o">{</span>
+    <span class="c1">// take the first field as the key and the second field as the value</span>
+    <span class="n">output</span><span class="o">.</span><span class="na">write</span><span class="o">((</span><span class="n">Text</span><span class="o">)</span> <span class="n">value</span><span class="o">.</span><span class="na">getFieldValue</span><span class="o">(</span><span class="mi">0</span><span class="o">),</span>
+                 <span class="o">(</span><span class="n">IntWritable</span><span class="o">)</span> <span class="n">value</span><span class="o">.</span><span class="na">getFieldValue</span><span class="o">(</span><span class="mi">1</span><span class="o">));</span>
+  <span class="o">}</span>
+<span class="o">}</span>
+</code></pre></div></div>
 
 <h2 id="writing-orc-files">Writing ORC files</h2>
 
 <p>To write ORC files from your MapReduce job, you’ll need to set</p>
 
 <ul>
-  <li><strong>mapreduce.job.outputformat.class</strong> = <a href="/api/orc-mapreduce/index.html?org/apache/orc/mapreduce/OrcOutputFormat.html">org.apache.orc.mapreduce.OrcOutputFormat</a></li>
+  <li><strong>mapreduce.job.outputformat.class</strong> = <a href="http://localhost:4000/api/orc-mapreduce/index.html?org/apache/orc/mapreduce/OrcOutputFormat.html">org.apache.orc.mapreduce.OrcOutputFormat</a></li>
   <li><strong>mapreduce.output.fileoutputformat.outputdir</strong> = your output directory</li>
   <li><strong>orc.mapred.output.schema</strong> = the schema to write to the ORC file</li>
 </ul>
@@ -829,34 +829,34 @@ file and typically uses the OrcStruct.createValue(TypeDescription)
 function. For our example, let’s assume that the shuffle types are
 (Text, IntWritable) from the previous section and the reduce should
 gather the integer for each key together and write them as a list. The
-output schema would be <code>struct&lt;key:string,ints:array&lt;int&gt;&gt;</code>. As always
+output schema would be <code class="highlighter-rouge">struct&lt;key:string,ints:array&lt;int&gt;&gt;</code>. As always
 with MapReduce, if your method stores the values, you need to copy their
 value before getting the next.</p>
 
-<pre><code class="language-java">public static class MyReducer
-  extends Reducer&lt;Text,IntWritable,NullWritable,OrcStruct&gt; {
-
-  private TypeDescription schema =
-    TypeDescription.fromString("struct&lt;key:string,ints:array&lt;int&gt;&gt;");
-  // createValue creates the correct value type for the schema
-  private OrcStruct pair = (OrcStruct) OrcStruct.createValue(schema);
-  // get a handle to the list of ints
-  private OrcList&lt;IntWritable&gt; valueList =
-    (OrcList&lt;IntWritable&gt;) pair.getFieldValue(1);
-  private final NullWritable nada = NullWritable.get();
-
-  public void reduce(Text key, Iterable&lt;IntWritable&gt; values,
-                     Context output
-                     ) throws IOException, InterruptedException {
-    pair.setFieldValue(0, key);
-    valueList.clear();
-    for(IntWritable val: values) {
-      valueList.add(new IntWritable(val.get()));
-    }
-    output.write(nada, pair);
-  }
-}
-</code></pre>
+<div class="language-java highlighter-rouge"><div class="highlight"><pre class="highlight"><code><span class="kd">public</span> <span class="kd">static</span> <span class="kd">class</span> <span class="nc">MyReducer</span>
+  <span class="kd">extends</span> <span class="n">Reducer</span><span class="o">&lt;</span><span class="n">Text</span><span class="o">,</span><span class="n">IntWritable</span><span class="o">,</span><span class="n">NullWritable</span><span class="o">,</span><span class="n">OrcStruct</span><span class="o">&gt;</span> <span class="o">{</span>
+
+  <span class="kd">private</span> <span class="n">TypeDescription</span> <span class="n">schema</span> <span class="o">=</span>
+    <span class="n">TypeDescription</span><span class="o">.</span><span class="na">fromString</span><span class="o">(</span><span class="s">"struct&lt;key:string,ints:array&lt;int&gt;&gt;"</span><span class="o">);</span>
+  <span class="c1">// createValue creates the correct value type for the schema</span>
+  <span class="kd">private</span> <span class="n">OrcStruct</span> <span class="n">pair</span> <span class="o">=</span> <span class="o">(</span><span class="n">OrcStruct</span><span class="o">)</span> <span class="n">OrcStruct</span><span class="o">.</span><span class="na">createValue</span><span class="o">(</span><span class="n">schema</span><span class="o">);</span>
+  <span class="c1">// get a handle to the list of ints</span>
+  <span class="kd">private</span> <span class="n">OrcList</span><span class="o">&lt;</span><span class="n">IntWritable</span><span class="o">&gt;</span> <span class="n">valueList</span> <span class="o">=</span>
+    <span class="o">(</span><span class="n">OrcList</span><span class="o">&lt;</span><span class="n">IntWritable</span><span class="o">&gt;)</span> <span class="n">pair</span><span class="o">.</span><span class="na">getFieldValue</span><span class="o">(</span><span class="mi">1</span><span class="o">);</span>
+  <span class="kd">private</span> <span class="kd">final</span> <span class="n">NullWritable</span> <span class="n">nada</span> <span class="o">=</span> <span class="n">NullWritable</span><span class="o">.</span><span class="na">get</span><span class="o">();</span>
+
+  <span class="kd">public</span> <span class="kt">void</span> <span class="nf">reduce</span><span class="o">(</span><span class="n">Text</span> <span class="n">key</span><span class="o">,</span> <span class="n">Iterable</span><span class="o">&lt;</span><span class="n">IntWritable</span><span class="o">&gt;</span> <span class="n">values</span><span class="o">,</span>
+                     <span class="n">Context</span> <span class="n">output</span>
+                     <span class="o">)</span> <span class="kd">throws</span> <span class="n">IOException</span><span class="o">,</span> <span class="n">InterruptedException</span> <span class="o">{</span>
+    <span class="n">pair</span><span class="o">.</span><span class="na">setFieldValue</span><span class="o">(</span><span class="mi">0</span><span class="o">,</span> <span class="n">key</span><span class="o">);</span>
+    <span class="n">valueList</span><span class="o">.</span><span class="na">clear</span><span class="o">();</span>
+    <span class="k">for</span><span class="o">(</span><span class="n">IntWritable</span> <span class="nl">val:</span> <span class="n">values</span><span class="o">)</span> <span class="o">{</span>
+      <span class="n">valueList</span><span class="o">.</span><span class="na">add</span><span class="o">(</span><span class="k">new</span> <span class="n">IntWritable</span><span class="o">(</span><span class="n">val</span><span class="o">.</span><span class="na">get</span><span class="o">()));</span>
+    <span class="o">}</span>
+    <span class="n">output</span><span class="o">.</span><span class="na">write</span><span class="o">(</span><span class="n">nada</span><span class="o">,</span> <span class="n">pair</span><span class="o">);</span>
+  <span class="o">}</span>
+<span class="o">}</span>
+</code></pre></div></div>
 
 <h2 id="sending-orcstruct-orclist-orcmap-or-orcunion-through-the-shuffle">Sending OrcStruct, OrcList, OrcMap, or OrcUnion through the Shuffle</h2>
 
@@ -865,9 +865,9 @@ MapReduce shuffle. The complex ORC types, since they are generic
 types, need to have their full type information provided to create the
 object. To enable MapReduce to properly instantiate the OrcStruct and
 other ORC types, we need to wrap it in either an
-<a href="/api/orc-mapreduce/index.html?org/apache/orc/mapred/OrcKey.html">OrcKey</a>
+<a href="http://localhost:4000/api/orc-mapreduce/index.html?org/apache/orc/mapred/OrcKey.html">OrcKey</a>
 for the shuffle key or
-<a href="/api/orc-mapreduce/index.html?org/apache/orc/mapred/OrcValue.html">OrcValue</a>
+<a href="http://localhost:4000/api/orc-mapreduce/index.html?org/apache/orc/mapred/OrcValue.html">OrcValue</a>
 for the shuffle value.</p>
 
 <p>To send two OrcStructs through the shuffle, define the following properties
@@ -884,27 +884,27 @@ in the JobConf:</p>
 respectively. These objects should be created once and reused as the mapper
 runs.</p>
 
-<pre><code class="language-java">public static class MyMapperShuffle
-    extends Mapper&lt;NullWritable,OrcStruct,OrcKey,OrcValue&gt; {
-  private OrcKey keyWrapper = new OrcKey();
-  private OrcValue valueWrapper = new OrcValue();
-  private OrcStruct outStruct = (OrcStruct) OrcStruct.createValue
-    (TypeDescription.fromString("struct&lt;i:int,j:int&gt;"));
-  private IntWritable i = (IntWritable) outStruct.getFieldValue("i");
-  private IntWritable j = (IntWritable) outStruct.getFieldValue("j");
-
-  // Assume the input has type: struct&lt;s:string,i:int&gt;
-  public void map(NullWritable key, OrcStruct value,
-                  Context output) throws IOException, InterruptedException {
-    keyWrapper.key = value;
-    valueWrapper.value = outStruct;
-    int val = ((IntWritable) value.getFieldValue("i")).get();
-    i.set(val * 2);
-    j.set(val * val);
-    output.write(keyWrapper, valueWrapper);
-  }
-}
-</code></pre>
+<div class="language-java highlighter-rouge"><div class="highlight"><pre class="highlight"><code><span class="kd">public</span> <span class="kd">static</span> <span class="kd">class</span> <span class="nc">MyMapperShuffle</span>
+    <span class="kd">extends</span> <span class="n">Mapper</span><span class="o">&lt;</span><span class="n">NullWritable</span><span class="o">,</span><span class="n">OrcStruct</span><span class="o">,</span><span class="n">OrcKey</span><span class="o">,</span><span class="n">OrcValue</span><span class="o">&gt;</span> <span class="o">{</span>
+  <span class="kd">private</span> <span class="n">OrcKey</span> <span class="n">keyWrapper</span> <span class="o">=</span> <span class="k">new</span> <span class="n">OrcKey</span><span class="o">();</span>
+  <span class="kd">private</span> <span class="n">OrcValue</span> <span class="n">valueWrapper</span> <span class="o">=</span> <span class="k">new</span> <span class="n">OrcValue</span><span class="o">();</span>
+  <span class="kd">private</span> <span class="n">OrcStruct</span> <span class="n">outStruct</span> <span class="o">=</span> <span class="o">(</span><span class="n">OrcStruct</span><span class="o">)</span> <span class="n">OrcStruct</span><span class="o">.</span><span class="na">createValue</span>
+    <span class="o">(</span><span class="n">TypeDescription</span><span class="o">.</span><span class="na">fromString</span><span class="o">(</span><span class="s">"struct&lt;i:int,j:int&gt;"</span><span class="o">));</span>
+  <span class="kd">private</span> <span class="n">IntWritable</span> <span class="n">i</span> <span class="o">=</span> <span class="o">(</span><span class="n">IntWritable</span><span class="o">)</span> <span class="n">outStruct</span><span class="o">.</span><span class="na">getFieldValue</span><span class="o">(</span><span class="s">"i"</span><span class="o">);</span>
+  <span class="kd">private</span> <span class="n">IntWritable</span> <span class="n">j</span> <span class="o">=</span> <span class="o">(</span><span class="n">IntWritable</span><span class="o">)</span> <span class="n">outStruct</span><span class="o">.</span><span class="na">getFieldValue</span><span class="o">(</span><span class="s">"j"</span><span class="o">);</span>
+
+  <span class="c1">// Assume the input has type: struct&lt;s:string,i:int&gt;</span>
+  <span class="kd">public</span> <span class="kt">void</span> <span class="nf">map</span><span class="o">(</span><span class="n">NullWritable</span> <span class="n">key</span><span class="o">,</span> <span class="n">OrcStruct</span> <span class="n">value</span><span class="o">,</span>
+                  <span class="n">Context</span> <span class="n">output</span><span class="o">)</span> <span class="kd">throws</span> <span class="n">IOException</span><span class="o">,</span> <span class="n">InterruptedException</span> <span class="o">{</span>
+    <span class="n">keyWrapper</span><span class="o">.</span><span class="na">key</span> <span class="o">=</span> <span class="n">value</span><span class="o">;</span>
+    <span class="n">valueWrapper</span><span class="o">.</span><span class="na">value</span> <span class="o">=</span> <span class="n">outStruct</span><span class="o">;</span>
+    <span class="kt">int</span> <span class="n">val</span> <span class="o">=</span> <span class="o">((</span><span class="n">IntWritable</span><span class="o">)</span> <span class="n">value</span><span class="o">.</span><span class="na">getFieldValue</span><span class="o">(</span><span class="s">"i"</span><span class="o">)).</span><span class="na">get</span><span class="o">();</span>
+    <span class="n">i</span><span class="o">.</span><span class="na">set</span><span class="o">(</span><span class="n">val</span> <span class="o">*</span> <span class="mi">2</span><span class="o">);</span>
+    <span class="n">j</span><span class="o">.</span><span class="na">set</span><span class="o">(</span><span class="n">val</span> <span class="o">*</span> <span class="n">val</span><span class="o">);</span>
+    <span class="n">output</span><span class="o">.</span><span class="na">write</span><span class="o">(</span><span class="n">keyWrapper</span><span class="o">,</span> <span class="n">valueWrapper</span><span class="o">);</span>
+  <span class="o">}</span>
+<span class="o">}</span>
+</code></pre></div></div>
 
 <p>The reducer code accesses the underlying OrcStructs by using the
 OrcKey.key and OrcValue.value fields.</p>
@@ -980,8 +980,6 @@ OrcKey.key and OrcValue.value fields.</p>
   
 
   
-    
-  
 
   
     
@@ -1001,29 +999,25 @@ OrcKey.key and OrcValue.value fields.</p>
     
   
     
-      <li class=""><a href="/docs/index.html">Background</a></li>
+      <li class=""><a href="http://localhost:4000/docs/index.html">Background</a></li>
       
 
 
   
 
   
-    
-  
 
   
     
   
     
-      <li class=""><a href="/docs/adopters.html">ORC Adopters</a></li>
+      <li class=""><a href="http://localhost:4000/docs/adopters.html">ORC Adopters</a></li>
       
 
 
   
 
   
-    
-  
 
   
     
@@ -1055,15 +1049,13 @@ OrcKey.key and OrcValue.value fields.</p>
     
   
     
-      <li class=""><a href="/docs/types.html">Types</a></li>
+      <li class=""><a href="http://localhost:4000/docs/types.html">Types</a></li>
       
 
 
   
 
   
-    
-  
 
   
     
@@ -1085,19 +1077,17 @@ OrcKey.key and OrcValue.value fields.</p>
     
   
     
-      <li class=""><a href="/docs/indexes.html">Indexes</a></li>
+      <li class=""><a href="http://localhost:4000/docs/indexes.html">Indexes</a></li>
       
 
 
   
 
   
-    
-  
 
   
     
-      <li class=""><a href="/docs/acid.html">ACID support</a></li>
+      <li class=""><a href="http://localhost:4000/docs/acid.html">ACID support</a></li>
       
 
 
@@ -1112,8 +1102,6 @@ OrcKey.key and OrcValue.value fields.</p>
   
 
   
-    
-  
 
   
     
@@ -1121,15 +1109,13 @@ OrcKey.key and OrcValue.value fields.</p>
     
   
     
-      <li class=""><a href="/docs/building.html">Building ORC</a></li>
+      <li class=""><a href="http://localhost:4000/docs/building.html">Building ORC</a></li>
       
 
 
   
 
   
-    
-  
 
   
     
@@ -1159,7 +1145,7 @@ OrcKey.key and OrcValue.value fields.</p>
     
   
     
-      <li class=""><a href="/docs/releases.html">Releases</a></li>
+      <li class=""><a href="http://localhost:4000/docs/releases.html">Releases</a></li>
       
 
 
@@ -1174,8 +1160,6 @@ OrcKey.key and OrcValue.value fields.</p>
   
 
   
-    
-  
 
   
     
@@ -1193,15 +1177,13 @@ OrcKey.key and OrcValue.value fields.</p>
     
   
     
-      <li class=""><a href="/docs/hive-ddl.html">Hive DDL</a></li>
+      <li class=""><a href="http://localhost:4000/docs/hive-ddl.html">Hive DDL</a></li>
       
 
 
   
 
   
-    
-  
 
   
     
@@ -1217,7 +1199,7 @@ OrcKey.key and OrcValue.value fields.</p>
     
   
     
-      <li class=""><a href="/docs/hive-config.html">Hive Configuration</a></li>
+      <li class=""><a href="http://localhost:4000/docs/hive-config.html">Hive Configuration</a></li>
       
 
 
@@ -1232,8 +1214,6 @@ OrcKey.key and OrcValue.value fields.</p>
   
 
   
-    
-  
 
   
     
@@ -1259,15 +1239,13 @@ OrcKey.key and OrcValue.value fields.</p>
     
   
     
-      <li class=""><a href="/docs/mapred.html">Using in MapRed</a></li>
+      <li class=""><a href="http://localhost:4000/docs/mapred.html">Using in MapRed</a></li>
       
 
 
   
 
   
-    
-  
 
   
     
@@ -1295,7 +1273,7 @@ OrcKey.key and OrcValue.value fields.</p>
     
   
     
-      <li class="current"><a href="/docs/mapreduce.html">Using in MapReduce</a></li>
+      <li class="current"><a href="http://localhost:4000/docs/mapreduce.html">Using in MapReduce</a></li>
       
 
 
@@ -1310,8 +1288,6 @@ OrcKey.key and OrcValue.value fields.</p>
   
 
   
-    
-  
 
   
     
@@ -1323,15 +1299,13 @@ OrcKey.key and OrcValue.value fields.</p>
     
   
     
-      <li class=""><a href="/docs/core-java.html">Using Core Java</a></li>
+      <li class=""><a href="http://localhost:4000/docs/core-java.html">Using Core Java</a></li>
       
 
 
   
 
   
-    
-  
 
   
     
@@ -1341,7 +1315,7 @@ OrcKey.key and OrcValue.value fields.</p>
     
   
     
-      <li class=""><a href="/docs/core-cpp.html">Using Core C++</a></li>
+      <li class=""><a href="http://localhost:4000/docs/core-cpp.html">Using Core C++</a></li>
       
 
 
@@ -1356,8 +1330,6 @@ OrcKey.key and OrcValue.value fields.</p>
   
 
   
-    
-  
 
   
     
@@ -1371,15 +1343,13 @@ OrcKey.key and OrcValue.value fields.</p>
     
   
     
-      <li class=""><a href="/docs/cpp-tools.html">C++ Tools</a></li>
+      <li class=""><a href="http://localhost:4000/docs/cpp-tools.html">C++ Tools</a></li>
       
 
 
   
 
   
-    
-  
 
   
     
@@ -1403,7 +1373,7 @@ OrcKey.key and OrcValue.value fields.</p>
     
   
     
-      <li class=""><a href="/docs/java-tools.html">Java Tools</a></li>
+      <li class=""><a href="http://localhost:4000/docs/java-tools.html">Java Tools</a></li>
       
 
 

http://git-wip-us.apache.org/repos/asf/orc/blob/e58d3fc4/docs/releases.html
----------------------------------------------------------------------
diff --git a/docs/releases.html b/docs/releases.html
index f168123..2c44da8 100644
--- a/docs/releases.html
+++ b/docs/releases.html
@@ -4,7 +4,7 @@
   <meta charset="UTF-8">
   <title>Releases</title>
   <meta name="viewport" content="width=device-width,initial-scale=1">
-  <meta name="generator" content="Jekyll v2.4.0">
+  <meta name="generator" content="Jekyll v3.7.3">
   <link rel="stylesheet" href="//fonts.googleapis.com/css?family=Lato:300,300italic,400,400italic,700,700italic,900">
   <link rel="stylesheet" href="/css/screen.css">
   <link rel="icon" type="image/x-icon" href="/favicon.ico">
@@ -109,7 +109,7 @@
     
   
     
-      <option value="/docs/index.html">Background</option>
+      <option value="http://localhost:4000/docs/index.html">Background</option>
     
   
     
@@ -131,7 +131,7 @@
     
   
     
-      <option value="/docs/adopters.html">ORC Adopters</option>
+      <option value="http://localhost:4000/docs/adopters.html">ORC Adopters</option>
     
   
     
@@ -193,7 +193,7 @@
     
   
     
-      <option value="/docs/types.html">Types</option>
+      <option value="http://localhost:4000/docs/types.html">Types</option>
     
   
 
@@ -219,7 +219,7 @@
     
   
     
-      <option value="/docs/indexes.html">Indexes</option>
+      <option value="http://localhost:4000/docs/indexes.html">Indexes</option>
     
   
     
@@ -237,7 +237,7 @@
 
   
     
-      <option value="/docs/acid.html">ACID support</option>
+      <option value="http://localhost:4000/docs/acid.html">ACID support</option>
     
   
     
@@ -284,7 +284,7 @@
     
   
     
-      <option value="/docs/building.html">Building ORC</option>
+      <option value="http://localhost:4000/docs/building.html">Building ORC</option>
     
   
     
@@ -342,7 +342,7 @@
     
   
     
-      <option value="/docs/releases.html">Releases</option>
+      <option value="http://localhost:4000/docs/releases.html">Releases</option>
     
   
     
@@ -373,7 +373,7 @@
     
   
     
-      <option value="/docs/hive-ddl.html">Hive DDL</option>
+      <option value="http://localhost:4000/docs/hive-ddl.html">Hive DDL</option>
     
   
     
@@ -407,7 +407,7 @@
     
   
     
-      <option value="/docs/hive-config.html">Hive Configuration</option>
+      <option value="http://localhost:4000/docs/hive-config.html">Hive Configuration</option>
     
   
     
@@ -460,7 +460,7 @@
     
   
     
-      <option value="/docs/mapred.html">Using in MapRed</option>
+      <option value="http://localhost:4000/docs/mapred.html">Using in MapRed</option>
     
   
     
@@ -498,7 +498,7 @@
     
   
     
-      <option value="/docs/mapreduce.html">Using in MapReduce</option>
+      <option value="http://localhost:4000/docs/mapreduce.html">Using in MapReduce</option>
     
   
     
@@ -525,7 +525,7 @@
     
   
     
-      <option value="/docs/core-java.html">Using Core Java</option>
+      <option value="http://localhost:4000/docs/core-java.html">Using Core Java</option>
     
   
     
@@ -559,7 +559,7 @@
     
   
     
-      <option value="/docs/core-cpp.html">Using Core C++</option>
+      <option value="http://localhost:4000/docs/core-cpp.html">Using Core C++</option>
     
   
     
@@ -606,7 +606,7 @@
     
   
     
-      <option value="/docs/cpp-tools.html">C++ Tools</option>
+      <option value="http://localhost:4000/docs/cpp-tools.html">C++ Tools</option>
     
   
     
@@ -652,7 +652,7 @@
     
   
     
-      <option value="/docs/java-tools.html">Java Tools</option>
+      <option value="http://localhost:4000/docs/java-tools.html">Java Tools</option>
     
   
     
@@ -712,10 +712,10 @@ signed by <a href="https://dist.apache.org/repos/dist/release/orc/KEYS">Owen O
 <p>All GPG signatures should be verified as matching one of the keys in ORC’s
 committers’ <a href="https://dist.apache.org/repos/dist/release/orc/KEYS">key list</a>.</p>
 
-<pre><code class="language-shell">% shasum -a 256 orc-X.Y.Z.tgz | diff - orc-X.Y.Z.tgz.sha256
-% gpg --import KEYS
-% gpg --verify orc-X.Y.Z.tgz.asc
-</code></pre>
+<div class="language-shell highlighter-rouge"><div class="highlight"><pre class="highlight"><code>% shasum <span class="nt">-a</span> 256 orc-X.Y.Z.tgz | diff - orc-X.Y.Z.tgz.sha256
+% gpg <span class="nt">--import</span> KEYS
+% gpg <span class="nt">--verify</span> orc-X.Y.Z.tgz.asc
+</code></pre></div></div>
 
 <h2 id="all-releases">All releases:</h2>
 
@@ -983,8 +983,6 @@ committers’ <a href="https://dist.apache.org/repos/dist/release/orc/KEYS">key
   
 
   
-    
-  
 
   
     
@@ -1004,29 +1002,25 @@ committers’ <a href="https://dist.apache.org/repos/dist/release/orc/KEYS">key
     
   
     
-      <li class=""><a href="/docs/index.html">Background</a></li>
+      <li class=""><a href="http://localhost:4000/docs/index.html">Background</a></li>
       
 
 
   
 
   
-    
-  
 
   
     
   
     
-      <li class=""><a href="/docs/adopters.html">ORC Adopters</a></li>
+      <li class=""><a href="http://localhost:4000/docs/adopters.html">ORC Adopters</a></li>
       
 
 
   
 
   
-    
-  
 
   
     
@@ -1058,15 +1052,13 @@ committers’ <a href="https://dist.apache.org/repos/dist/release/orc/KEYS">key
     
   
     
-      <li class=""><a href="/docs/types.html">Types</a></li>
+      <li class=""><a href="http://localhost:4000/docs/types.html">Types</a></li>
       
 
 
   
 
   
-    
-  
 
   
     
@@ -1088,19 +1080,17 @@ committers’ <a href="https://dist.apache.org/repos/dist/release/orc/KEYS">key
     
   
     
-      <li class=""><a href="/docs/indexes.html">Indexes</a></li>
+      <li class=""><a href="http://localhost:4000/docs/indexes.html">Indexes</a></li>
       
 
 
   
 
   
-    
-  
 
   
     
-      <li class=""><a href="/docs/acid.html">ACID support</a></li>
+      <li class=""><a href="http://localhost:4000/docs/acid.html">ACID support</a></li>
       
 
 
@@ -1115,8 +1105,6 @@ committers’ <a href="https://dist.apache.org/repos/dist/release/orc/KEYS">key
   
 
   
-    
-  
 
   
     
@@ -1124,15 +1112,13 @@ committers’ <a href="https://dist.apache.org/repos/dist/release/orc/KEYS">key
     
   
     
-      <li class=""><a href="/docs/building.html">Building ORC</a></li>
+      <li class=""><a href="http://localhost:4000/docs/building.html">Building ORC</a></li>
       
 
 
   
 
   
-    
-  
 
   
     
@@ -1162,7 +1148,7 @@ committers’ <a href="https://dist.apache.org/repos/dist/release/orc/KEYS">key
     
   
     
-      <li class="current"><a href="/docs/releases.html">Releases</a></li>
+      <li class="current"><a href="http://localhost:4000/docs/releases.html">Releases</a></li>
       
 
 
@@ -1177,8 +1163,6 @@ committers’ <a href="https://dist.apache.org/repos/dist/release/orc/KEYS">key
   
 
   
-    
-  
 
   
     
@@ -1196,15 +1180,13 @@ committers’ <a href="https://dist.apache.org/repos/dist/release/orc/KEYS">key
     
   
     
-      <li class=""><a href="/docs/hive-ddl.html">Hive DDL</a></li>
+      <li class=""><a href="http://localhost:4000/docs/hive-ddl.html">Hive DDL</a></li>
       
 
 
   
 
   
-    
-  
 
   
     
@@ -1220,7 +1202,7 @@ committers’ <a href="https://dist.apache.org/repos/dist/release/orc/KEYS">key
     
   
     
-      <li class=""><a href="/docs/hive-config.html">Hive Configuration</a></li>
+      <li class=""><a href="http://localhost:4000/docs/hive-config.html">Hive Configuration</a></li>
       
 
 
@@ -1235,8 +1217,6 @@ committers’ <a href="https://dist.apache.org/repos/dist/release/orc/KEYS">key
   
 
   
-    
-  
 
   
     
@@ -1262,15 +1242,13 @@ committers’ <a href="https://dist.apache.org/repos/dist/release/orc/KEYS">key
     
   
     
-      <li class=""><a href="/docs/mapred.html">Using in MapRed</a></li>
+      <li class=""><a href="http://localhost:4000/docs/mapred.html">Using in MapRed</a></li>
       
 
 
   
 
   
-    
-  
 
   
     
@@ -1298,7 +1276,7 @@ committers’ <a href="https://dist.apache.org/repos/dist/release/orc/KEYS">key
     
   
     
-      <li class=""><a href="/docs/mapreduce.html">Using in MapReduce</a></li>
+      <li class=""><a href="http://localhost:4000/docs/mapreduce.html">Using in MapReduce</a></li>
       
 
 
@@ -1313,8 +1291,6 @@ committers’ <a href="https://dist.apache.org/repos/dist/release/orc/KEYS">key
   
 
   
-    
-  
 
   
     
@@ -1326,15 +1302,13 @@ committers’ <a href="https://dist.apache.org/repos/dist/release/orc/KEYS">key
     
   
     
-      <li class=""><a href="/docs/core-java.html">Using Core Java</a></li>
+      <li class=""><a href="http://localhost:4000/docs/core-java.html">Using Core Java</a></li>
       
 
 
   
 
   
-    
-  
 
   
     
@@ -1344,7 +1318,7 @@ committers’ <a href="https://dist.apache.org/repos/dist/release/orc/KEYS">key
     
   
     
-      <li class=""><a href="/docs/core-cpp.html">Using Core C++</a></li>
+      <li class=""><a href="http://localhost:4000/docs/core-cpp.html">Using Core C++</a></li>
       
 
 
@@ -1359,8 +1333,6 @@ committers’ <a href="https://dist.apache.org/repos/dist/release/orc/KEYS">key
   
 
   
-    
-  
 
   
     
@@ -1374,15 +1346,13 @@ committers’ <a href="https://dist.apache.org/repos/dist/release/orc/KEYS">key
     
   
     
-      <li class=""><a href="/docs/cpp-tools.html">C++ Tools</a></li>
+      <li class=""><a href="http://localhost:4000/docs/cpp-tools.html">C++ Tools</a></li>
       
 
 
   
 
   
-    
-  
 
   
     
@@ -1406,7 +1376,7 @@ committers’ <a href="https://dist.apache.org/repos/dist/release/orc/KEYS">key
     
   
     
-      <li class=""><a href="/docs/java-tools.html">Java Tools</a></li>
+      <li class=""><a href="http://localhost:4000/docs/java-tools.html">Java Tools</a></li>
       
 
 

http://git-wip-us.apache.org/repos/asf/orc/blob/e58d3fc4/docs/types.html
----------------------------------------------------------------------
diff --git a/docs/types.html b/docs/types.html
index 149fa88..9538981 100644
--- a/docs/types.html
+++ b/docs/types.html
@@ -4,7 +4,7 @@
   <meta charset="UTF-8">
   <title>Types</title>
   <meta name="viewport" content="width=device-width,initial-scale=1">
-  <meta name="generator" content="Jekyll v2.4.0">
+  <meta name="generator" content="Jekyll v3.7.3">
   <link rel="stylesheet" href="//fonts.googleapis.com/css?family=Lato:300,300italic,400,400italic,700,700italic,900">
   <link rel="stylesheet" href="/css/screen.css">
   <link rel="icon" type="image/x-icon" href="/favicon.ico">
@@ -109,7 +109,7 @@
     
   
     
-      <option value="/docs/index.html">Background</option>
+      <option value="http://localhost:4000/docs/index.html">Background</option>
     
   
     
@@ -131,7 +131,7 @@
     
   
     
-      <option value="/docs/adopters.html">ORC Adopters</option>
+      <option value="http://localhost:4000/docs/adopters.html">ORC Adopters</option>
     
   
     
@@ -193,7 +193,7 @@
     
   
     
-      <option value="/docs/types.html">Types</option>
+      <option value="http://localhost:4000/docs/types.html">Types</option>
     
   
 
@@ -219,7 +219,7 @@
     
   
     
-      <option value="/docs/indexes.html">Indexes</option>
+      <option value="http://localhost:4000/docs/indexes.html">Indexes</option>
     
   
     
@@ -237,7 +237,7 @@
 
   
     
-      <option value="/docs/acid.html">ACID support</option>
+      <option value="http://localhost:4000/docs/acid.html">ACID support</option>
     
   
     
@@ -284,7 +284,7 @@
     
   
     
-      <option value="/docs/building.html">Building ORC</option>
+      <option value="http://localhost:4000/docs/building.html">Building ORC</option>
     
   
     
@@ -342,7 +342,7 @@
     
   
     
-      <option value="/docs/releases.html">Releases</option>
+      <option value="http://localhost:4000/docs/releases.html">Releases</option>
     
   
     
@@ -373,7 +373,7 @@
     
   
     
-      <option value="/docs/hive-ddl.html">Hive DDL</option>
+      <option value="http://localhost:4000/docs/hive-ddl.html">Hive DDL</option>
     
   
     
@@ -407,7 +407,7 @@
     
   
     
-      <option value="/docs/hive-config.html">Hive Configuration</option>
+      <option value="http://localhost:4000/docs/hive-config.html">Hive Configuration</option>
     
   
     
@@ -460,7 +460,7 @@
     
   
     
-      <option value="/docs/mapred.html">Using in MapRed</option>
+      <option value="http://localhost:4000/docs/mapred.html">Using in MapRed</option>
     
   
     
@@ -498,7 +498,7 @@
     
   
     
-      <option value="/docs/mapreduce.html">Using in MapReduce</option>
+      <option value="http://localhost:4000/docs/mapreduce.html">Using in MapReduce</option>
     
   
     
@@ -525,7 +525,7 @@
     
   
     
-      <option value="/docs/core-java.html">Using Core Java</option>
+      <option value="http://localhost:4000/docs/core-java.html">Using Core Java</option>
     
   
     
@@ -559,7 +559,7 @@
     
   
     
-      <option value="/docs/core-cpp.html">Using Core C++</option>
+      <option value="http://localhost:4000/docs/core-cpp.html">Using Core C++</option>
     
   
     
@@ -606,7 +606,7 @@
     
   
     
-      <option value="/docs/cpp-tools.html">C++ Tools</option>
+      <option value="http://localhost:4000/docs/cpp-tools.html">C++ Tools</option>
     
   
     
@@ -652,7 +652,7 @@
     
   
     
-      <option value="/docs/java-tools.html">Java Tools</option>
+      <option value="http://localhost:4000/docs/java-tools.html">Java Tools</option>
     
   
     
@@ -740,7 +740,7 @@ columns have one child column for each of the variants.</p>
 <p>Given the following definition of the table Foobar, the columns in the
 file would form the given tree.</p>
 
-<p><code>create table Foobar (
+<p><code class="highlighter-rouge">create table Foobar (
  myInt int,
  myMap map&lt;string,
  struct&lt;myString : string,
@@ -749,7 +749,7 @@ file would form the given tree.</p>
 );
 </code></p>
 
-<p><img src="/img/TreeWriters.png" alt="ORC column structure" /></p>
+<p><img src="http://localhost:4000/img/TreeWriters.png" alt="ORC column structure" /></p>
 
 
           
@@ -799,8 +799,6 @@ file would form the given tree.</p>
   
 
   
-    
-  
 
   
     
@@ -820,29 +818,25 @@ file would form the given tree.</p>
     
   
     
-      <li class=""><a href="/docs/index.html">Background</a></li>
+      <li class=""><a href="http://localhost:4000/docs/index.html">Background</a></li>
       
 
 
   
 
   
-    
-  
 
   
     
   
     
-      <li class=""><a href="/docs/adopters.html">ORC Adopters</a></li>
+      <li class=""><a href="http://localhost:4000/docs/adopters.html">ORC Adopters</a></li>
       
 
 
   
 
   
-    
-  
 
   
     
@@ -874,15 +868,13 @@ file would form the given tree.</p>
     
   
     
-      <li class="current"><a href="/docs/types.html">Types</a></li>
+      <li class="current"><a href="http://localhost:4000/docs/types.html">Types</a></li>
       
 
 
   
 
   
-    
-  
 
   
     
@@ -904,19 +896,17 @@ file would form the given tree.</p>
     
   
     
-      <li class=""><a href="/docs/indexes.html">Indexes</a></li>
+      <li class=""><a href="http://localhost:4000/docs/indexes.html">Indexes</a></li>
       
 
 
   
 
   
-    
-  
 
   
     
-      <li class=""><a href="/docs/acid.html">ACID support</a></li>
+      <li class=""><a href="http://localhost:4000/docs/acid.html">ACID support</a></li>
       
 
 
@@ -931,8 +921,6 @@ file would form the given tree.</p>
   
 
   
-    
-  
 
   
     
@@ -940,15 +928,13 @@ file would form the given tree.</p>
     
   
     
-      <li class=""><a href="/docs/building.html">Building ORC</a></li>
+      <li class=""><a href="http://localhost:4000/docs/building.html">Building ORC</a></li>
       
 
 
   
 
   
-    
-  
 
   
     
@@ -978,7 +964,7 @@ file would form the given tree.</p>
     
   
     
-      <li class=""><a href="/docs/releases.html">Releases</a></li>
+      <li class=""><a href="http://localhost:4000/docs/releases.html">Releases</a></li>
       
 
 
@@ -993,8 +979,6 @@ file would form the given tree.</p>
   
 
   
-    
-  
 
   
     
@@ -1012,15 +996,13 @@ file would form the given tree.</p>
     
   
     
-      <li class=""><a href="/docs/hive-ddl.html">Hive DDL</a></li>
+      <li class=""><a href="http://localhost:4000/docs/hive-ddl.html">Hive DDL</a></li>
       
 
 
   
 
   
-    
-  
 
   
     
@@ -1036,7 +1018,7 @@ file would form the given tree.</p>
     
   
     
-      <li class=""><a href="/docs/hive-config.html">Hive Configuration</a></li>
+      <li class=""><a href="http://localhost:4000/docs/hive-config.html">Hive Configuration</a></li>
       
 
 
@@ -1051,8 +1033,6 @@ file would form the given tree.</p>
   
 
   
-    
-  
 
   
     
@@ -1078,15 +1058,13 @@ file would form the given tree.</p>
     
   
     
-      <li class=""><a href="/docs/mapred.html">Using in MapRed</a></li>
+      <li class=""><a href="http://localhost:4000/docs/mapred.html">Using in MapRed</a></li>
       
 
 
   
 
   
-    
-  
 
   
     
@@ -1114,7 +1092,7 @@ file would form the given tree.</p>
     
   
     
-      <li class=""><a href="/docs/mapreduce.html">Using in MapReduce</a></li>
+      <li class=""><a href="http://localhost:4000/docs/mapreduce.html">Using in MapReduce</a></li>
       
 
 
@@ -1129,8 +1107,6 @@ file would form the given tree.</p>
   
 
   
-    
-  
 
   
     
@@ -1142,15 +1118,13 @@ file would form the given tree.</p>
     
   
     
-      <li class=""><a href="/docs/core-java.html">Using Core Java</a></li>
+      <li class=""><a href="http://localhost:4000/docs/core-java.html">Using Core Java</a></li>
       
 
 
   
 
   
-    
-  
 
   
     
@@ -1160,7 +1134,7 @@ file would form the given tree.</p>
     
   
     
-      <li class=""><a href="/docs/core-cpp.html">Using Core C++</a></li>
+      <li class=""><a href="http://localhost:4000/docs/core-cpp.html">Using Core C++</a></li>
       
 
 
@@ -1175,8 +1149,6 @@ file would form the given tree.</p>
   
 
   
-    
-  
 
   
     
@@ -1190,15 +1162,13 @@ file would form the given tree.</p>
     
   
     
-      <li class=""><a href="/docs/cpp-tools.html">C++ Tools</a></li>
+      <li class=""><a href="http://localhost:4000/docs/cpp-tools.html">C++ Tools</a></li>
       
 
 
   
 
   
-    
-  
 
   
     
@@ -1222,7 +1192,7 @@ file would form the given tree.</p>
     
   
     
-      <li class=""><a href="/docs/java-tools.html">Java Tools</a></li>
+      <li class=""><a href="http://localhost:4000/docs/java-tools.html">Java Tools</a></li>
       
 
 

http://git-wip-us.apache.org/repos/asf/orc/blob/e58d3fc4/help/index.html
----------------------------------------------------------------------
diff --git a/help/index.html b/help/index.html
index d0cffcb..5c5ee74 100644
--- a/help/index.html
+++ b/help/index.html
@@ -4,7 +4,7 @@
   <meta charset="UTF-8">
   <title>Getting Help</title>
   <meta name="viewport" content="width=device-width,initial-scale=1">
-  <meta name="generator" content="Jekyll v2.4.0">
+  <meta name="generator" content="Jekyll v3.7.3">
   <link rel="stylesheet" href="//fonts.googleapis.com/css?family=Lato:300,300italic,400,400italic,700,700italic,900">
   <link rel="stylesheet" href="/css/screen.css">
   <link rel="icon" type="image/x-icon" href="/favicon.ico">
@@ -89,11 +89,11 @@
 <h2 id="mailing-lists">Mailing Lists</h2>
 
 <p>The best option is to send email to the user list
-<a href="&#109;&#097;&#105;&#108;&#116;&#111;:&#117;&#115;&#101;&#114;&#064;&#111;&#114;&#099;&#046;&#097;&#112;&#097;&#099;&#104;&#101;&#046;&#111;&#114;&#103;">&#117;&#115;&#101;&#114;&#064;&#111;&#114;&#099;&#046;&#097;&#112;&#097;&#099;&#104;&#101;&#046;&#111;&#114;&#103;</a>, which is for user
+<a href="mailto:user@orc.apache.org">user@orc.apache.org</a>, which is for user
 discussions. All of the historic traffic is available in the
 <a href="https://mail-archives.apache.org/mod_mbox/orc-user/">archive</a>. To
 subscribe to the user list, please send email to
-<a href="&#109;&#097;&#105;&#108;&#116;&#111;:&#117;&#115;&#101;&#114;&#045;&#115;&#117;&#098;&#115;&#099;&#114;&#105;&#098;&#101;&#064;&#111;&#114;&#099;&#046;&#097;&#112;&#097;&#099;&#104;&#101;&#046;&#111;&#114;&#103;">&#117;&#115;&#101;&#114;&#045;&#115;&#117;&#098;&#115;&#099;&#114;&#105;&#098;&#101;&#064;&#111;&#114;&#099;&#046;&#097;&#112;&#097;&#099;&#104;&#101;&#046;&#111;&#114;&#103;</a>.</p>
+<a href="mailto:user-subscribe@orc.apache.org">user-subscribe@orc.apache.org</a>.</p>
 
 <h2 id="bug-reports">Bug Reports</h2>
 

http://git-wip-us.apache.org/repos/asf/orc/blob/e58d3fc4/index.html
----------------------------------------------------------------------
diff --git a/index.html b/index.html
index 4968736..1b368ed 100644
--- a/index.html
+++ b/index.html
@@ -4,7 +4,7 @@
   <meta charset="UTF-8">
   <title>Apache ORC &bull; High-Performance Columnar Storage for Hadoop</title>
   <meta name="viewport" content="width=device-width,initial-scale=1">
-  <meta name="generator" content="Jekyll v2.4.0">
+  <meta name="generator" content="Jekyll v3.7.3">
   <link rel="stylesheet" href="//fonts.googleapis.com/css?family=Lato:300,300italic,400,400italic,700,700italic,900">
   <link rel="stylesheet" href="/css/screen.css">
   <link rel="icon" type="image/x-icon" href="/favicon.ico">

http://git-wip-us.apache.org/repos/asf/orc/blob/e58d3fc4/news/2015/04/22/orc-as-tlp/index.html
----------------------------------------------------------------------
diff --git a/news/2015/04/22/orc-as-tlp/index.html b/news/2015/04/22/orc-as-tlp/index.html
index c1f0977..221122c 100644
--- a/news/2015/04/22/orc-as-tlp/index.html
+++ b/news/2015/04/22/orc-as-tlp/index.html
@@ -4,7 +4,7 @@
   <meta charset="UTF-8">
   <title>ORC becomes an Apache Top Level Project</title>
   <meta name="viewport" content="width=device-width,initial-scale=1">
-  <meta name="generator" content="Jekyll v2.4.0">
+  <meta name="generator" content="Jekyll v3.7.3">
   <link rel="stylesheet" href="//fonts.googleapis.com/css?family=Lato:300,300italic,400,400italic,700,700italic,900">
   <link rel="stylesheet" href="/css/screen.css">
   <link rel="icon" type="image/x-icon" href="/favicon.ico">

http://git-wip-us.apache.org/repos/asf/orc/blob/e58d3fc4/news/2015/05/11/new-committers/index.html
----------------------------------------------------------------------
diff --git a/news/2015/05/11/new-committers/index.html b/news/2015/05/11/new-committers/index.html
index c3fa6af..977b30f 100644
--- a/news/2015/05/11/new-committers/index.html
+++ b/news/2015/05/11/new-committers/index.html
@@ -4,7 +4,7 @@
   <meta charset="UTF-8">
   <title>ORC adds 7 committers</title>
   <meta name="viewport" content="width=device-width,initial-scale=1">
-  <meta name="generator" content="Jekyll v2.4.0">
+  <meta name="generator" content="Jekyll v3.7.3">
   <link rel="stylesheet" href="//fonts.googleapis.com/css?family=Lato:300,300italic,400,400italic,700,700italic,900">
   <link rel="stylesheet" href="/css/screen.css">
   <link rel="icon" type="image/x-icon" href="/favicon.ico">

http://git-wip-us.apache.org/repos/asf/orc/blob/e58d3fc4/news/2015/06/26/new-logo/index.html
----------------------------------------------------------------------
diff --git a/news/2015/06/26/new-logo/index.html b/news/2015/06/26/new-logo/index.html
index dca975d..e731556 100644
--- a/news/2015/06/26/new-logo/index.html
+++ b/news/2015/06/26/new-logo/index.html
@@ -4,7 +4,7 @@
   <meta charset="UTF-8">
   <title>ORC adopts new logo</title>
   <meta name="viewport" content="width=device-width,initial-scale=1">
-  <meta name="generator" content="Jekyll v2.4.0">
+  <meta name="generator" content="Jekyll v3.7.3">
   <link rel="stylesheet" href="//fonts.googleapis.com/css?family=Lato:300,300italic,400,400italic,700,700italic,900">
   <link rel="stylesheet" href="/css/screen.css">
   <link rel="icon" type="image/x-icon" href="/favicon.ico">
@@ -173,7 +173,7 @@
   <div class="post-content">
     <p>The ORC project has adopted a new logo. We hope you like it.</p>
 
-<p><img src="/img/logo.png" alt="orc logo" title="orc logo" /></p>
+<p><img src="http://localhost:4000/img/logo.png" alt="orc logo" title="orc logo" /></p>
 
 <p>Other great options included a big white hand on a black shield. <em>smile</em></p>
 

http://git-wip-us.apache.org/repos/asf/orc/blob/e58d3fc4/news/2015/11/19/aliaksei-on-pmc/index.html
----------------------------------------------------------------------
diff --git a/news/2015/11/19/aliaksei-on-pmc/index.html b/news/2015/11/19/aliaksei-on-pmc/index.html
index 22bfd17..ab9d6d7 100644
--- a/news/2015/11/19/aliaksei-on-pmc/index.html
+++ b/news/2015/11/19/aliaksei-on-pmc/index.html
@@ -4,7 +4,7 @@
   <meta charset="UTF-8">
   <title>ORC adds Aliaksei Sandryhaila to PMC</title>
   <meta name="viewport" content="width=device-width,initial-scale=1">
-  <meta name="generator" content="Jekyll v2.4.0">
+  <meta name="generator" content="Jekyll v3.7.3">
   <link rel="stylesheet" href="//fonts.googleapis.com/css?family=Lato:300,300italic,400,400italic,700,700italic,900">
   <link rel="stylesheet" href="/css/screen.css">
   <link rel="icon" type="image/x-icon" href="/favicon.ico">

http://git-wip-us.apache.org/repos/asf/orc/blob/e58d3fc4/news/2016/01/25/ORC-1.0.0/index.html
----------------------------------------------------------------------
diff --git a/news/2016/01/25/ORC-1.0.0/index.html b/news/2016/01/25/ORC-1.0.0/index.html
index c00459e..a01de7a 100644
--- a/news/2016/01/25/ORC-1.0.0/index.html
+++ b/news/2016/01/25/ORC-1.0.0/index.html
@@ -4,7 +4,7 @@
   <meta charset="UTF-8">
   <title>ORC 1.0.0 Released</title>
   <meta name="viewport" content="width=device-width,initial-scale=1">
-  <meta name="generator" content="Jekyll v2.4.0">
+  <meta name="generator" content="Jekyll v3.7.3">
   <link rel="stylesheet" href="//fonts.googleapis.com/css?family=Lato:300,300italic,400,400italic,700,700italic,900">
   <link rel="stylesheet" href="/css/screen.css">
   <link rel="icon" type="image/x-icon" href="/favicon.ico">
@@ -207,13 +207,10 @@ signed by <a href="https://dist.apache.org/repos/dist/release/orc/KEYS">Owen O
 
 <ul>
   <li>
-    <p><a href="https://issues.apache.org/jira/browse/ORC-1">ORC-1</a> We are still working on moving the Java reader and writer out of Hive’s code base and thus it is not included here.</p>
+    <p><a href="http://localhost:4000/security/CVE-2018-8015">CVE-2018-8015</a> ORC files with malformed types cause stack overflow.</p>
   </li>
   <li>
-    <p><a href="https://issues.apache.org/jira/browse/ORC-10">ORC-10</a> When moving ORC files between timezones, different daylight savings rules will cause timestamps to shift in the C++ reader.</p>
-  </li>
-  <li>
-    <p><a href="https://issues.apache.org/jira/browse/ORC-40">ORC-40</a> Predicate push down is not implemented in C++.</p>
+    <p><a href="http://localhost:4000/security/ORC-10">ORC-10</a> When moving ORC files between timezones, different daylight savings rules will cause timestamps to shift in the C++ reader.</p>
   </li>
 </ul>
 

http://git-wip-us.apache.org/repos/asf/orc/blob/e58d3fc4/news/2016/06/10/ORC-1.1.0/index.html
----------------------------------------------------------------------
diff --git a/news/2016/06/10/ORC-1.1.0/index.html b/news/2016/06/10/ORC-1.1.0/index.html
index ee22331..86fac0a 100644
--- a/news/2016/06/10/ORC-1.1.0/index.html
+++ b/news/2016/06/10/ORC-1.1.0/index.html
@@ -4,7 +4,7 @@
   <meta charset="UTF-8">
   <title>ORC 1.1.0 Released</title>
   <meta name="viewport" content="width=device-width,initial-scale=1">
-  <meta name="generator" content="Jekyll v2.4.0">
+  <meta name="generator" content="Jekyll v3.7.3">
   <link rel="stylesheet" href="//fonts.googleapis.com/css?family=Lato:300,300italic,400,400italic,700,700italic,900">
   <link rel="stylesheet" href="/css/screen.css">
   <link rel="icon" type="image/x-icon" href="/favicon.ico">
@@ -200,16 +200,16 @@ timestamps from timezones with different daylight savings rules.</li>
 
 <ul>
   <li>
-    <p><a href="https://issues.apache.org/jira/browse/HIVE-14214">HIVE-14214</a> Schema evolution and predicate pushdown don’t work together.</p>
+    <p><a href="http://localhost:4000/security/CVE-2018-8015">CVE-2018-8015</a> ORC files with malformed types cause stack overflow.</p>
   </li>
   <li>
-    <p><a href="https://issues.apache.org/jira/browse/ORC-40">ORC-40</a> Predicate push down is not implemented in C++.</p>
+    <p><a href="http://localhost:4000/security/HIVE-14214">HIVE-14214</a> Schema evolution and predicate pushdown don’t work together.</p>
   </li>
   <li>
-    <p><a href="https://issues.apache.org/jira/browse/ORC-101">ORC-101</a> Bloom filters for string and decimal use inconsistent encoding</p>
+    <p><a href="http://localhost:4000/security/ORC-101">ORC-101</a> Bloom filters for string and decimal use inconsistent encoding</p>
   </li>
   <li>
-    <p><a href="https://issues.apache.org/jira/browse/ORC-135">ORC-135</a> Predicate push down is incorrect on timestamps when moved between timezones</p>
+    <p><a href="http://localhost:4000/security/ORC-135">ORC-135</a> Predicate push down is incorrect on timestamps when moved between timezones</p>
   </li>
 </ul>
 

http://git-wip-us.apache.org/repos/asf/orc/blob/e58d3fc4/news/2016/06/13/ORC-1.1.1/index.html
----------------------------------------------------------------------
diff --git a/news/2016/06/13/ORC-1.1.1/index.html b/news/2016/06/13/ORC-1.1.1/index.html
index 91ab3cd..ccfbc21 100644
--- a/news/2016/06/13/ORC-1.1.1/index.html
+++ b/news/2016/06/13/ORC-1.1.1/index.html
@@ -4,7 +4,7 @@
   <meta charset="UTF-8">
   <title>ORC 1.1.1 Released</title>
   <meta name="viewport" content="width=device-width,initial-scale=1">
-  <meta name="generator" content="Jekyll v2.4.0">
+  <meta name="generator" content="Jekyll v3.7.3">
   <link rel="stylesheet" href="//fonts.googleapis.com/css?family=Lato:300,300italic,400,400italic,700,700italic,900">
   <link rel="stylesheet" href="/css/screen.css">
   <link rel="icon" type="image/x-icon" href="/favicon.ico">
@@ -198,16 +198,16 @@ timestamps from timezones with different daylight savings rules.</li>
 
 <ul>
   <li>
-    <p><a href="https://issues.apache.org/jira/browse/HIVE-14214">HIVE-14214</a> Schema evolution and predicate pushdown don’t work together.</p>
+    <p><a href="http://localhost:4000/security/CVE-2018-8015">CVE-2018-8015</a> ORC files with malformed types cause stack overflow.</p>
   </li>
   <li>
-    <p><a href="https://issues.apache.org/jira/browse/ORC-40">ORC-40</a> Predicate push down is not implemented in C++.</p>
+    <p><a href="http://localhost:4000/security/HIVE-14214">HIVE-14214</a> Schema evolution and predicate pushdown don’t work together.</p>
   </li>
   <li>
-    <p><a href="https://issues.apache.org/jira/browse/ORC-101">ORC-101</a> Bloom filters for string and decimal use inconsistent encoding</p>
+    <p><a href="http://localhost:4000/security/ORC-101">ORC-101</a> Bloom filters for string and decimal use inconsistent encoding</p>
   </li>
   <li>
-    <p><a href="https://issues.apache.org/jira/browse/ORC-135">ORC-135</a> Predicate push down is incorrect on timestamps when moved between timezones</p>
+    <p><a href="http://localhost:4000/security/ORC-135">ORC-135</a> Predicate push down is incorrect on timestamps when moved between timezones</p>
   </li>
 </ul>
 

http://git-wip-us.apache.org/repos/asf/orc/blob/e58d3fc4/news/2016/06/28/file-format-talk/index.html
----------------------------------------------------------------------
diff --git a/news/2016/06/28/file-format-talk/index.html b/news/2016/06/28/file-format-talk/index.html
index 5a3e823..5a2070a 100644
--- a/news/2016/06/28/file-format-talk/index.html
+++ b/news/2016/06/28/file-format-talk/index.html
@@ -4,7 +4,7 @@
   <meta charset="UTF-8">
   <title>File format benchmark</title>
   <meta name="viewport" content="width=device-width,initial-scale=1">
-  <meta name="generator" content="Jekyll v2.4.0">
+  <meta name="generator" content="Jekyll v3.7.3">
   <link rel="stylesheet" href="//fonts.googleapis.com/css?family=Lato:300,300italic,400,400italic,700,700italic,900">
   <link rel="stylesheet" href="/css/screen.css">
   <link rel="icon" type="image/x-icon" href="/favicon.ico">

http://git-wip-us.apache.org/repos/asf/orc/blob/e58d3fc4/news/2016/07/08/ORC-1.1.2/index.html
----------------------------------------------------------------------
diff --git a/news/2016/07/08/ORC-1.1.2/index.html b/news/2016/07/08/ORC-1.1.2/index.html
index be3db5a..87d78d5 100644
--- a/news/2016/07/08/ORC-1.1.2/index.html
+++ b/news/2016/07/08/ORC-1.1.2/index.html
@@ -4,7 +4,7 @@
   <meta charset="UTF-8">
   <title>ORC 1.1.2 Released</title>
   <meta name="viewport" content="width=device-width,initial-scale=1">
-  <meta name="generator" content="Jekyll v2.4.0">
+  <meta name="generator" content="Jekyll v3.7.3">
   <link rel="stylesheet" href="//fonts.googleapis.com/css?family=Lato:300,300italic,400,400italic,700,700italic,900">
   <link rel="stylesheet" href="/css/screen.css">
   <link rel="icon" type="image/x-icon" href="/favicon.ico">
@@ -198,16 +198,16 @@ timestamps from timezones with different daylight savings rules.</li>
 
 <ul>
   <li>
-    <p><a href="https://issues.apache.org/jira/browse/HIVE-14214">HIVE-14214</a> Schema evolution and predicate pushdown don’t work together.</p>
+    <p><a href="http://localhost:4000/security/CVE-2018-8015">CVE-2018-8015</a> ORC files with malformed types cause stack overflow.</p>
   </li>
   <li>
-    <p><a href="https://issues.apache.org/jira/browse/ORC-40">ORC-40</a> Predicate push down is not implemented in C++.</p>
+    <p><a href="http://localhost:4000/security/HIVE-14214">HIVE-14214</a> Schema evolution and predicate pushdown don’t work together.</p>
   </li>
   <li>
-    <p><a href="https://issues.apache.org/jira/browse/ORC-101">ORC-101</a> Bloom filters for string and decimal use inconsistent encoding</p>
+    <p><a href="http://localhost:4000/security/ORC-101">ORC-101</a> Bloom filters for string and decimal use inconsistent encoding</p>
   </li>
   <li>
-    <p><a href="https://issues.apache.org/jira/browse/ORC-135">ORC-135</a> Predicate push down is incorrect on timestamps when moved between timezones</p>
+    <p><a href="http://localhost:4000/security/ORC-135">ORC-135</a> Predicate push down is incorrect on timestamps when moved between timezones</p>
   </li>
 </ul>
 

http://git-wip-us.apache.org/repos/asf/orc/blob/e58d3fc4/news/2016/08/25/ORC-1.2.0/index.html
----------------------------------------------------------------------
diff --git a/news/2016/08/25/ORC-1.2.0/index.html b/news/2016/08/25/ORC-1.2.0/index.html
index 9dd0b12..84e2e77 100644
--- a/news/2016/08/25/ORC-1.2.0/index.html
+++ b/news/2016/08/25/ORC-1.2.0/index.html
@@ -4,7 +4,7 @@
   <meta charset="UTF-8">
   <title>ORC 1.2.0 Released</title>
   <meta name="viewport" content="width=device-width,initial-scale=1">
-  <meta name="generator" content="Jekyll v2.4.0">
+  <meta name="generator" content="Jekyll v3.7.3">
   <link rel="stylesheet" href="//fonts.googleapis.com/css?family=Lato:300,300italic,400,400italic,700,700italic,900">
   <link rel="stylesheet" href="/css/screen.css">
   <link rel="icon" type="image/x-icon" href="/favicon.ico">
@@ -204,13 +204,13 @@ signed by <a href="https://dist.apache.org/repos/dist/release/orc/KEYS">Owen O
 
 <ul>
   <li>
-    <p><a href="https://issues.apache.org/jira/browse/ORC-40">ORC-40</a> Predicate push down is not implemented in C++.</p>
+    <p><a href="http://localhost:4000/security/CVE-2018-8015">CVE-2018-8015</a> ORC files with malformed types cause stack overflow.</p>
   </li>
   <li>
-    <p><a href="https://issues.apache.org/jira/browse/ORC-101">ORC-101</a> Bloom filters for string and decimal use inconsistent encoding</p>
+    <p><a href="http://localhost:4000/security/ORC-101">ORC-101</a> Bloom filters for string and decimal use inconsistent encoding</p>
   </li>
   <li>
-    <p><a href="https://issues.apache.org/jira/browse/ORC-135">ORC-135</a> Predicate push down is incorrect on timestamps when moved between timezones</p>
+    <p><a href="http://localhost:4000/security/ORC-135">ORC-135</a> Predicate push down is incorrect on timestamps when moved between timezones</p>
   </li>
 </ul>
 

http://git-wip-us.apache.org/repos/asf/orc/blob/e58d3fc4/news/2016/10/05/ORC-1.2.1/index.html
----------------------------------------------------------------------
diff --git a/news/2016/10/05/ORC-1.2.1/index.html b/news/2016/10/05/ORC-1.2.1/index.html
index 26dca39..31d1827 100644
--- a/news/2016/10/05/ORC-1.2.1/index.html
+++ b/news/2016/10/05/ORC-1.2.1/index.html
@@ -4,7 +4,7 @@
   <meta charset="UTF-8">
   <title>ORC 1.2.1 Released</title>
   <meta name="viewport" content="width=device-width,initial-scale=1">
-  <meta name="generator" content="Jekyll v2.4.0">
+  <meta name="generator" content="Jekyll v3.7.3">
   <link rel="stylesheet" href="//fonts.googleapis.com/css?family=Lato:300,300italic,400,400italic,700,700italic,900">
   <link rel="stylesheet" href="/css/screen.css">
   <link rel="icon" type="image/x-icon" href="/favicon.ico">
@@ -204,10 +204,10 @@ signed by <a href="https://dist.apache.org/repos/dist/release/orc/KEYS">Owen O
 
 <ul>
   <li>
-    <p><a href="https://issues.apache.org/jira/browse/ORC-40">ORC-40</a> Predicate push down is not implemented in C++.</p>
+    <p><a href="http://localhost:4000/security/CVE-2018-8015">CVE-2018-8015</a> ORC files with malformed types cause stack overflow.</p>
   </li>
   <li>
-    <p><a href="https://issues.apache.org/jira/browse/ORC-135">ORC-135</a> Predicate push down is incorrect on timestamps when moved between timezones</p>
+    <p><a href="http://localhost:4000/security/ORC-135">ORC-135</a> Predicate push down is incorrect on timestamps when moved between timezones</p>
   </li>
 </ul>
 

http://git-wip-us.apache.org/repos/asf/orc/blob/e58d3fc4/news/2016/12/01/ORC-1.2.2/index.html
----------------------------------------------------------------------
diff --git a/news/2016/12/01/ORC-1.2.2/index.html b/news/2016/12/01/ORC-1.2.2/index.html
index 16701ee..50f8070 100644
--- a/news/2016/12/01/ORC-1.2.2/index.html
+++ b/news/2016/12/01/ORC-1.2.2/index.html
@@ -4,7 +4,7 @@
   <meta charset="UTF-8">
   <title>ORC 1.2.2 Released</title>
   <meta name="viewport" content="width=device-width,initial-scale=1">
-  <meta name="generator" content="Jekyll v2.4.0">
+  <meta name="generator" content="Jekyll v3.7.3">
   <link rel="stylesheet" href="//fonts.googleapis.com/css?family=Lato:300,300italic,400,400italic,700,700italic,900">
   <link rel="stylesheet" href="/css/screen.css">
   <link rel="icon" type="image/x-icon" href="/favicon.ico">
@@ -204,10 +204,10 @@ signed by <a href="https://dist.apache.org/repos/dist/release/orc/KEYS">Owen O
 
 <ul>
   <li>
-    <p><a href="https://issues.apache.org/jira/browse/ORC-40">ORC-40</a> Predicate push down is not implemented in C++.</p>
+    <p><a href="http://localhost:4000/security/CVE-2018-8015">CVE-2018-8015</a> ORC files with malformed types cause stack overflow.</p>
   </li>
   <li>
-    <p><a href="https://issues.apache.org/jira/browse/ORC-135">ORC-135</a> Predicate push down is incorrect on timestamps when moved between timezones</p>
+    <p><a href="http://localhost:4000/security/ORC-135">ORC-135</a> Predicate push down is incorrect on timestamps when moved between timezones</p>
   </li>
 </ul>
 

http://git-wip-us.apache.org/repos/asf/orc/blob/e58d3fc4/news/2016/12/12/ORC-1.2.3/index.html
----------------------------------------------------------------------
diff --git a/news/2016/12/12/ORC-1.2.3/index.html b/news/2016/12/12/ORC-1.2.3/index.html
index eca5539..7de6086 100644
--- a/news/2016/12/12/ORC-1.2.3/index.html
+++ b/news/2016/12/12/ORC-1.2.3/index.html
@@ -4,7 +4,7 @@
   <meta charset="UTF-8">
   <title>ORC 1.2.3 Released</title>
   <meta name="viewport" content="width=device-width,initial-scale=1">
-  <meta name="generator" content="Jekyll v2.4.0">
+  <meta name="generator" content="Jekyll v3.7.3">
   <link rel="stylesheet" href="//fonts.googleapis.com/css?family=Lato:300,300italic,400,400italic,700,700italic,900">
   <link rel="stylesheet" href="/css/screen.css">
   <link rel="icon" type="image/x-icon" href="/favicon.ico">
@@ -205,10 +205,10 @@ signed by <a href="https://dist.apache.org/repos/dist/release/orc/KEYS">Owen O
 
 <ul>
   <li>
-    <p><a href="https://issues.apache.org/jira/browse/ORC-40">ORC-40</a> Predicate push down is not implemented in C++.</p>
+    <p><a href="http://localhost:4000/security/CVE-2018-8015">CVE-2018-8015</a> ORC files with malformed types cause stack overflow.</p>
   </li>
   <li>
-    <p><a href="https://issues.apache.org/jira/browse/ORC-135">ORC-135</a> Predicate push down is incorrect on timestamps when moved between timezones</p>
+    <p><a href="http://localhost:4000/security/ORC-135">ORC-135</a> Predicate push down is incorrect on timestamps when moved between timezones</p>
   </li>
 </ul>
 

http://git-wip-us.apache.org/repos/asf/orc/blob/e58d3fc4/news/2016/12/15/new-committers/index.html
----------------------------------------------------------------------
diff --git a/news/2016/12/15/new-committers/index.html b/news/2016/12/15/new-committers/index.html
index a55b864..690e1f9 100644
--- a/news/2016/12/15/new-committers/index.html
+++ b/news/2016/12/15/new-committers/index.html
@@ -4,7 +4,7 @@
   <meta charset="UTF-8">
   <title>ORC adds new committers</title>
   <meta name="viewport" content="width=device-width,initial-scale=1">
-  <meta name="generator" content="Jekyll v2.4.0">
+  <meta name="generator" content="Jekyll v3.7.3">
   <link rel="stylesheet" href="//fonts.googleapis.com/css?family=Lato:300,300italic,400,400italic,700,700italic,900">
   <link rel="stylesheet" href="/css/screen.css">
   <link rel="icon" type="image/x-icon" href="/favicon.ico">

http://git-wip-us.apache.org/repos/asf/orc/blob/e58d3fc4/news/2017/01/04/gopal-on-pmc/index.html
----------------------------------------------------------------------
diff --git a/news/2017/01/04/gopal-on-pmc/index.html b/news/2017/01/04/gopal-on-pmc/index.html
index b20ab1e..0a505f4 100644
--- a/news/2017/01/04/gopal-on-pmc/index.html
+++ b/news/2017/01/04/gopal-on-pmc/index.html
@@ -4,7 +4,7 @@
   <meta charset="UTF-8">
   <title>ORC adds Gopal Vijayaraghavan to PMC</title>
   <meta name="viewport" content="width=device-width,initial-scale=1">
-  <meta name="generator" content="Jekyll v2.4.0">
+  <meta name="generator" content="Jekyll v3.7.3">
   <link rel="stylesheet" href="//fonts.googleapis.com/css?family=Lato:300,300italic,400,400italic,700,700italic,900">
   <link rel="stylesheet" href="/css/screen.css">
   <link rel="icon" type="image/x-icon" href="/favicon.ico">

http://git-wip-us.apache.org/repos/asf/orc/blob/e58d3fc4/news/2017/01/23/ORC-1.3.0/index.html
----------------------------------------------------------------------
diff --git a/news/2017/01/23/ORC-1.3.0/index.html b/news/2017/01/23/ORC-1.3.0/index.html
index 434c916..a42401c 100644
--- a/news/2017/01/23/ORC-1.3.0/index.html
+++ b/news/2017/01/23/ORC-1.3.0/index.html
@@ -4,7 +4,7 @@
   <meta charset="UTF-8">
   <title>ORC 1.3.0 Released</title>
   <meta name="viewport" content="width=device-width,initial-scale=1">
-  <meta name="generator" content="Jekyll v2.4.0">
+  <meta name="generator" content="Jekyll v3.7.3">
   <link rel="stylesheet" href="//fonts.googleapis.com/css?family=Lato:300,300italic,400,400italic,700,700italic,900">
   <link rel="stylesheet" href="/css/screen.css">
   <link rel="icon" type="image/x-icon" href="/favicon.ico">
@@ -196,12 +196,7 @@ signed by <a href="https://dist.apache.org/repos/dist/release/orc/KEYS">Owen O
 <p>Known issues:</p>
 
 <ul>
-  <li>
-    <p><a href="https://issues.apache.org/jira/browse/ORC-40">ORC-40</a> Predicate push down is not implemented in C++.</p>
-  </li>
-  <li>
-    <p><a href="https://issues.apache.org/jira/browse/ORC-135">ORC-135</a> Predicate push down is incorrect on timestamps when moved between timezones</p>
-  </li>
+  <li><a href="http://localhost:4000/security/ORC-135">ORC-135</a> Predicate push down is incorrect on timestamps when moved between timezones</li>
 </ul>
 
 

http://git-wip-us.apache.org/repos/asf/orc/blob/e58d3fc4/news/2017/02/03/ORC-1.3.1/index.html
----------------------------------------------------------------------
diff --git a/news/2017/02/03/ORC-1.3.1/index.html b/news/2017/02/03/ORC-1.3.1/index.html
index 0a2bd9f..22dc586 100644
--- a/news/2017/02/03/ORC-1.3.1/index.html
+++ b/news/2017/02/03/ORC-1.3.1/index.html
@@ -4,7 +4,7 @@
   <meta charset="UTF-8">
   <title>ORC 1.3.1 Released</title>
   <meta name="viewport" content="width=device-width,initial-scale=1">
-  <meta name="generator" content="Jekyll v2.4.0">
+  <meta name="generator" content="Jekyll v3.7.3">
   <link rel="stylesheet" href="//fonts.googleapis.com/css?family=Lato:300,300italic,400,400italic,700,700italic,900">
   <link rel="stylesheet" href="/css/screen.css">
   <link rel="icon" type="image/x-icon" href="/favicon.ico">
@@ -197,10 +197,10 @@ signed by <a href="https://dist.apache.org/repos/dist/release/orc/KEYS">Owen O
 
 <ul>
   <li>
-    <p><a href="https://issues.apache.org/jira/browse/ORC-40">ORC-40</a> Predicate push down is not implemented in C++.</p>
+    <p><a href="http://localhost:4000/security/CVE-2018-8015">CVE-2018-8015</a> ORC files with malformed types cause stack overflow.</p>
   </li>
   <li>
-    <p><a href="https://issues.apache.org/jira/browse/ORC-135">ORC-135</a> Predicate push down is incorrect on timestamps when moved between timezones</p>
+    <p><a href="http://localhost:4000/security/ORC-135">ORC-135</a> Predicate push down is incorrect on timestamps when moved between timezones</p>
   </li>
 </ul>
 

http://git-wip-us.apache.org/repos/asf/orc/blob/e58d3fc4/news/2017/02/13/ORC-1.3.2/index.html
----------------------------------------------------------------------
diff --git a/news/2017/02/13/ORC-1.3.2/index.html b/news/2017/02/13/ORC-1.3.2/index.html
index c8ea65c..e8c0434 100644
--- a/news/2017/02/13/ORC-1.3.2/index.html
+++ b/news/2017/02/13/ORC-1.3.2/index.html
@@ -4,7 +4,7 @@
   <meta charset="UTF-8">
   <title>ORC 1.3.2 Released</title>
   <meta name="viewport" content="width=device-width,initial-scale=1">
-  <meta name="generator" content="Jekyll v2.4.0">
+  <meta name="generator" content="Jekyll v3.7.3">
   <link rel="stylesheet" href="//fonts.googleapis.com/css?family=Lato:300,300italic,400,400italic,700,700italic,900">
   <link rel="stylesheet" href="/css/screen.css">
   <link rel="icon" type="image/x-icon" href="/favicon.ico">
@@ -196,7 +196,7 @@ signed by <a href="https://dist.apache.org/repos/dist/release/orc/KEYS">Owen O
 <p>Known issues:</p>
 
 <ul>
-  <li><a href="https://issues.apache.org/jira/browse/ORC-40">ORC-40</a> Predicate push down is not implemented in C++.</li>
+  <li><a href="http://localhost:4000/security/CVE-2018-8015">CVE-2018-8015</a> ORC files with malformed types cause stack overflow.</li>
 </ul>
 
 

http://git-wip-us.apache.org/repos/asf/orc/blob/e58d3fc4/news/2017/02/21/ORC-1.3.3/index.html
----------------------------------------------------------------------
diff --git a/news/2017/02/21/ORC-1.3.3/index.html b/news/2017/02/21/ORC-1.3.3/index.html
index dbcffd0..f36460a 100644
--- a/news/2017/02/21/ORC-1.3.3/index.html
+++ b/news/2017/02/21/ORC-1.3.3/index.html
@@ -4,7 +4,7 @@
   <meta charset="UTF-8">
   <title>ORC 1.3.3 Released</title>
   <meta name="viewport" content="width=device-width,initial-scale=1">
-  <meta name="generator" content="Jekyll v2.4.0">
+  <meta name="generator" content="Jekyll v3.7.3">
   <link rel="stylesheet" href="//fonts.googleapis.com/css?family=Lato:300,300italic,400,400italic,700,700italic,900">
   <link rel="stylesheet" href="/css/screen.css">
   <link rel="icon" type="image/x-icon" href="/favicon.ico">
@@ -196,7 +196,7 @@ signed by <a href="https://dist.apache.org/repos/dist/release/orc/KEYS">Owen O
 <p>Known issues:</p>
 
 <ul>
-  <li><a href="https://issues.apache.org/jira/browse/ORC-40">ORC-40</a> Predicate push down is not implemented in C++.</li>
+  <li><a href="http://localhost:4000/security/CVE-2018-8015">CVE-2018-8015</a> ORC files with malformed types cause stack overflow.</li>
 </ul>
 
 

http://git-wip-us.apache.org/repos/asf/orc/blob/e58d3fc4/news/2017/05/08/ORC-1.4.0/index.html
----------------------------------------------------------------------
diff --git a/news/2017/05/08/ORC-1.4.0/index.html b/news/2017/05/08/ORC-1.4.0/index.html
index a631aa7..1973299 100644
--- a/news/2017/05/08/ORC-1.4.0/index.html
+++ b/news/2017/05/08/ORC-1.4.0/index.html
@@ -4,7 +4,7 @@
   <meta charset="UTF-8">
   <title>ORC 1.4.0 Released</title>
   <meta name="viewport" content="width=device-width,initial-scale=1">
-  <meta name="generator" content="Jekyll v2.4.0">
+  <meta name="generator" content="Jekyll v3.7.3">
   <link rel="stylesheet" href="//fonts.googleapis.com/css?family=Lato:300,300italic,400,400italic,700,700italic,900">
   <link rel="stylesheet" href="/css/screen.css">
   <link rel="icon" type="image/x-icon" href="/favicon.ico">
@@ -197,7 +197,7 @@ signed by <a href="https://dist.apache.org/repos/dist/release/orc/KEYS">Owen O
 <p>Known issues:</p>
 
 <ul>
-  <li><a href="https://issues.apache.org/jira/browse/ORC-40">ORC-40</a> Predicate push down is not implemented in C++.</li>
+  <li><a href="http://localhost:4000/security/CVE-2018-8015">CVE-2018-8015</a> ORC files with malformed types cause stack overflow.</li>
 </ul>
 
 

http://git-wip-us.apache.org/repos/asf/orc/blob/e58d3fc4/news/2017/05/16/new-committer/index.html
----------------------------------------------------------------------
diff --git a/news/2017/05/16/new-committer/index.html b/news/2017/05/16/new-committer/index.html
index 5b10ac0..d3c9c7e 100644
--- a/news/2017/05/16/new-committer/index.html
+++ b/news/2017/05/16/new-committer/index.html
@@ -4,7 +4,7 @@
   <meta charset="UTF-8">
   <title>Deepak Majeti added as committer</title>
   <meta name="viewport" content="width=device-width,initial-scale=1">
-  <meta name="generator" content="Jekyll v2.4.0">
+  <meta name="generator" content="Jekyll v3.7.3">
   <link rel="stylesheet" href="//fonts.googleapis.com/css?family=Lato:300,300italic,400,400italic,700,700italic,900">
   <link rel="stylesheet" href="/css/screen.css">
   <link rel="icon" type="image/x-icon" href="/favicon.ico">

http://git-wip-us.apache.org/repos/asf/orc/blob/e58d3fc4/news/2017/09/06/new-pmc/index.html
----------------------------------------------------------------------
diff --git a/news/2017/09/06/new-pmc/index.html b/news/2017/09/06/new-pmc/index.html
index 3e1ee38..0c73eed 100644
--- a/news/2017/09/06/new-pmc/index.html
+++ b/news/2017/09/06/new-pmc/index.html
@@ -4,7 +4,7 @@
   <meta charset="UTF-8">
   <title>ORC adds Eugene and Deepak to PMC</title>
   <meta name="viewport" content="width=device-width,initial-scale=1">
-  <meta name="generator" content="Jekyll v2.4.0">
+  <meta name="generator" content="Jekyll v3.7.3">
   <link rel="stylesheet" href="//fonts.googleapis.com/css?family=Lato:300,300italic,400,400italic,700,700italic,900">
   <link rel="stylesheet" href="/css/screen.css">
   <link rel="icon" type="image/x-icon" href="/favicon.ico">

http://git-wip-us.apache.org/repos/asf/orc/blob/e58d3fc4/news/2017/10/16/ORC-1.3.4/index.html
----------------------------------------------------------------------
diff --git a/news/2017/10/16/ORC-1.3.4/index.html b/news/2017/10/16/ORC-1.3.4/index.html
index f5b4bb3..cbe7eba 100644
--- a/news/2017/10/16/ORC-1.3.4/index.html
+++ b/news/2017/10/16/ORC-1.3.4/index.html
@@ -4,7 +4,7 @@
   <meta charset="UTF-8">
   <title>ORC 1.3.4 Released</title>
   <meta name="viewport" content="width=device-width,initial-scale=1">
-  <meta name="generator" content="Jekyll v2.4.0">
+  <meta name="generator" content="Jekyll v3.7.3">
   <link rel="stylesheet" href="//fonts.googleapis.com/css?family=Lato:300,300italic,400,400italic,700,700italic,900">
   <link rel="stylesheet" href="/css/screen.css">
   <link rel="icon" type="image/x-icon" href="/favicon.ico">
@@ -196,7 +196,7 @@ signed by <a href="https://dist.apache.org/repos/dist/release/orc/KEYS">Prasanth
 <p>Known issues:</p>
 
 <ul>
-  <li><a href="https://issues.apache.org/jira/browse/ORC-40">ORC-40</a> Predicate push down is not implemented in C++.</li>
+  <li><a href="http://localhost:4000/security/CVE-2018-8015">CVE-2018-8015</a> ORC files with malformed types cause stack overflow.</li>
 </ul>
 
 

http://git-wip-us.apache.org/repos/asf/orc/blob/e58d3fc4/news/2017/10/16/ORC-1.4.1/index.html
----------------------------------------------------------------------
diff --git a/news/2017/10/16/ORC-1.4.1/index.html b/news/2017/10/16/ORC-1.4.1/index.html
index 6a3d30b..db56e97 100644
--- a/news/2017/10/16/ORC-1.4.1/index.html
+++ b/news/2017/10/16/ORC-1.4.1/index.html
@@ -4,7 +4,7 @@
   <meta charset="UTF-8">
   <title>ORC 1.4.1 Released</title>
   <meta name="viewport" content="width=device-width,initial-scale=1">
-  <meta name="generator" content="Jekyll v2.4.0">
+  <meta name="generator" content="Jekyll v3.7.3">
   <link rel="stylesheet" href="//fonts.googleapis.com/css?family=Lato:300,300italic,400,400italic,700,700italic,900">
   <link rel="stylesheet" href="/css/screen.css">
   <link rel="icon" type="image/x-icon" href="/favicon.ico">
@@ -197,7 +197,12 @@ signed by <a href="https://dist.apache.org/repos/dist/release/orc/KEYS">Prasanth
 <p>Known issues:</p>
 
 <ul>
-  <li><a href="https://issues.apache.org/jira/browse/ORC-40">ORC-40</a> Predicate push down is not implemented in C++.</li>
+  <li>
+    <p><a href="http://localhost:4000/security/CVE-2018-8015">CVE-2018-8015</a> ORC files with malformed types cause stack overflow.</p>
+  </li>
+  <li>
+    <p><a href="http://localhost:4000/security/ORC-40">ORC-40</a> Predicate push down is not implemented in C++.</p>
+  </li>
 </ul>
 
 

http://git-wip-us.apache.org/repos/asf/orc/blob/e58d3fc4/news/2018/01/23/ORC-1.4.2/index.html
----------------------------------------------------------------------
diff --git a/news/2018/01/23/ORC-1.4.2/index.html b/news/2018/01/23/ORC-1.4.2/index.html
index 8edd212..492d684 100644
--- a/news/2018/01/23/ORC-1.4.2/index.html
+++ b/news/2018/01/23/ORC-1.4.2/index.html
@@ -4,7 +4,7 @@
   <meta charset="UTF-8">
   <title>ORC 1.4.2 Released</title>
   <meta name="viewport" content="width=device-width,initial-scale=1">
-  <meta name="generator" content="Jekyll v2.4.0">
+  <meta name="generator" content="Jekyll v3.7.3">
   <link rel="stylesheet" href="//fonts.googleapis.com/css?family=Lato:300,300italic,400,400italic,700,700italic,900">
   <link rel="stylesheet" href="/css/screen.css">
   <link rel="icon" type="image/x-icon" href="/favicon.ico">
@@ -197,7 +197,12 @@ signed by <a href="https://dist.apache.org/repos/dist/release/orc/KEYS">Owen O
 <p>Known issues:</p>
 
 <ul>
-  <li><a href="https://issues.apache.org/jira/browse/ORC-40">ORC-40</a> Predicate push down is not implemented in C++.</li>
+  <li>
+    <p><a href="http://localhost:4000/security/CVE-2018-8015">CVE-2018-8015</a> ORC files with malformed types cause stack overflow.</p>
+  </li>
+  <li>
+    <p><a href="http://localhost:4000/security/ORC-40">ORC-40</a> Predicate push down is not implemented in C++.</p>
+  </li>
 </ul>
 
 

http://git-wip-us.apache.org/repos/asf/orc/blob/e58d3fc4/news/2018/02/09/ORC-1.4.3/index.html
----------------------------------------------------------------------
diff --git a/news/2018/02/09/ORC-1.4.3/index.html b/news/2018/02/09/ORC-1.4.3/index.html
index 167d3c2..d466222 100644
--- a/news/2018/02/09/ORC-1.4.3/index.html
+++ b/news/2018/02/09/ORC-1.4.3/index.html
@@ -4,7 +4,7 @@
   <meta charset="UTF-8">
   <title>ORC 1.4.3 Released</title>
   <meta name="viewport" content="width=device-width,initial-scale=1">
-  <meta name="generator" content="Jekyll v2.4.0">
+  <meta name="generator" content="Jekyll v3.7.3">
   <link rel="stylesheet" href="//fonts.googleapis.com/css?family=Lato:300,300italic,400,400italic,700,700italic,900">
   <link rel="stylesheet" href="/css/screen.css">
   <link rel="icon" type="image/x-icon" href="/favicon.ico">
@@ -196,6 +196,10 @@ signed by <a href="https://dist.apache.org/repos/dist/release/orc/KEYS">Owen O
 
 <p>Known issues:</p>
 
+<ul>
+  <li><a href="http://localhost:4000/security/CVE-2018-8015">CVE-2018-8015</a> ORC files with malformed types cause stack overflow.</li>
+</ul>
+
 
   </div>
 </article>

http://git-wip-us.apache.org/repos/asf/orc/blob/e58d3fc4/news/2018/05/14/ORC-1.4.4/index.html
----------------------------------------------------------------------
diff --git a/news/2018/05/14/ORC-1.4.4/index.html b/news/2018/05/14/ORC-1.4.4/index.html
index 3a7f829..e61fdca 100644
--- a/news/2018/05/14/ORC-1.4.4/index.html
+++ b/news/2018/05/14/ORC-1.4.4/index.html
@@ -4,7 +4,7 @@
   <meta charset="UTF-8">
   <title>ORC 1.4.4 Released</title>
   <meta name="viewport" content="width=device-width,initial-scale=1">
-  <meta name="generator" content="Jekyll v2.4.0">
+  <meta name="generator" content="Jekyll v3.7.3">
   <link rel="stylesheet" href="//fonts.googleapis.com/css?family=Lato:300,300italic,400,400italic,700,700italic,900">
   <link rel="stylesheet" href="/css/screen.css">
   <link rel="icon" type="image/x-icon" href="/favicon.ico">

http://git-wip-us.apache.org/repos/asf/orc/blob/e58d3fc4/news/2018/05/14/ORC-1.5.0/index.html
----------------------------------------------------------------------
diff --git a/news/2018/05/14/ORC-1.5.0/index.html b/news/2018/05/14/ORC-1.5.0/index.html
index 16033df..bb9c91d 100644
--- a/news/2018/05/14/ORC-1.5.0/index.html
+++ b/news/2018/05/14/ORC-1.5.0/index.html
@@ -4,7 +4,7 @@
   <meta charset="UTF-8">
   <title>ORC 1.5.0 Released</title>
   <meta name="viewport" content="width=device-width,initial-scale=1">
-  <meta name="generator" content="Jekyll v2.4.0">
+  <meta name="generator" content="Jekyll v3.7.3">
   <link rel="stylesheet" href="//fonts.googleapis.com/css?family=Lato:300,300italic,400,400italic,700,700italic,900">
   <link rel="stylesheet" href="/css/screen.css">
   <link rel="icon" type="image/x-icon" href="/favicon.ico">