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 2017/03/07 02:25:32 UTC

orc git commit: Update the site to prefer https instead of http.

Repository: orc
Updated Branches:
  refs/heads/master cb038cb1d -> e78350dd6


Update the site to prefer https instead of http.

Signed-off-by: Owen O'Malley <om...@apache.org>


Project: http://git-wip-us.apache.org/repos/asf/orc/repo
Commit: http://git-wip-us.apache.org/repos/asf/orc/commit/e78350dd
Tree: http://git-wip-us.apache.org/repos/asf/orc/tree/e78350dd
Diff: http://git-wip-us.apache.org/repos/asf/orc/diff/e78350dd

Branch: refs/heads/master
Commit: e78350dd6b1b0fa35936e3d698686ce5a2c15791
Parents: cb038cb
Author: Owen O'Malley <om...@apache.org>
Authored: Mon Mar 6 18:24:54 2017 -0800
Committer: Owen O'Malley <om...@apache.org>
Committed: Mon Mar 6 18:25:19 2017 -0800

----------------------------------------------------------------------
 site/_config.yml                           |  2 +-
 site/_docs/adopters.md                     |  6 +++---
 site/_docs/file-tail.md                    |  4 ++--
 site/_docs/index.md                        |  6 +++---
 site/_posts/2016-06-28-file-format-talk.md |  2 +-
 site/develop/bylaws.md                     | 12 ++++++------
 site/help/index.md                         |  4 ++--
 site/index.html                            | 10 +++++-----
 site/talks/index.md                        | 12 ++++++------
 9 files changed, 29 insertions(+), 29 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/orc/blob/e78350dd/site/_config.yml
----------------------------------------------------------------------
diff --git a/site/_config.yml b/site/_config.yml
index a78a5c7..0cc3a20 100644
--- a/site/_config.yml
+++ b/site/_config.yml
@@ -6,7 +6,7 @@ excerpt_separator: ""
 repository: https://github.com/apache/orc
 jira: https://issues.apache.org/jira/browse
 dist: https://dist.apache.org/repos/dist/release/orc
-dist_mirror: http://www.apache.org/dyn/closer.cgi/orc
+dist_mirror: https://www.apache.org/dyn/closer.cgi/orc
 tag_url: https://github.com/apache/orc/releases/tag/rel
 dist_archive: https://archive.apache.org/dist/orc
 destination: target

http://git-wip-us.apache.org/repos/asf/orc/blob/e78350dd/site/_docs/adopters.md
----------------------------------------------------------------------
diff --git a/site/_docs/adopters.md b/site/_docs/adopters.md
index 56f86db..8f040f2 100644
--- a/site/_docs/adopters.md
+++ b/site/_docs/adopters.md
@@ -19,7 +19,7 @@ WritableComparable and can be serialized through the MapReduce shuffle.
 Apache Hive was the original use case and home for ORC.  ORC's strong
 type system, advanced compression, column projection, predicate push
 down, and vectorization support make Hive [perform
-better](http://hortonworks.com/blog/orcfile-in-hdp-2-better-compression-better-performance/)
+better](https://hortonworks.com/blog/orcfile-in-hdp-2-better-compression-better-performance/)
 than any other format for your data.
 
 ### [Apache Nifi](https://nifi.apache.org/)
@@ -31,12 +31,12 @@ ORC files.
 ### [Apache Pig](https://pig.apache.org/)
 
 Apache Pig added support for reading and writing ORC files in [Pig
-14.0](http://hortonworks.com/blog/announcing-apache-pig-0-14-0/).
+14.0](https://hortonworks.com/blog/announcing-apache-pig-0-14-0/).
 
 ### [Apache Spark](https://spark.apache.org/)
 
 Apache Spark has [added
-support](http://hortonworks.com/blog/bringing-orc-support-into-apache-spark/)
+support](https://hortonworks.com/blog/bringing-orc-support-into-apache-spark/)
 for reading and writing ORC files with support for column project and
 predicate push down.
 

http://git-wip-us.apache.org/repos/asf/orc/blob/e78350dd/site/_docs/file-tail.md
----------------------------------------------------------------------
diff --git a/site/_docs/file-tail.md b/site/_docs/file-tail.md
index 8bdebfe..d2700bb 100644
--- a/site/_docs/file-tail.md
+++ b/site/_docs/file-tail.md
@@ -11,10 +11,10 @@ file's tail consists of 3 parts; the file metadata, file footer and
 postscript.
 
 The metadata for ORC is stored using
-[Protocol Buffers](http://s.apache.org/protobuf_encoding), which provides
+[Protocol Buffers](https://s.apache.org/protobuf_encoding), which provides
 the ability to add new fields without breaking readers. This document
 incorporates the Protobuf definition from the
-[ORC source code](http://s.apache.org/orc_proto) and the
+[ORC source code](https://s.apache.org/orc_proto) and the
 reader is encouraged to review the Protobuf encoding if they need to
 understand the byte-level encoding
 

http://git-wip-us.apache.org/repos/asf/orc/blob/e78350dd/site/_docs/index.md
----------------------------------------------------------------------
diff --git a/site/_docs/index.md b/site/_docs/index.md
index 78e5cc3..ed1b30b 100644
--- a/site/_docs/index.md
+++ b/site/_docs/index.md
@@ -24,11 +24,11 @@ complete set of types in Hive, including the complex types: structs,
 lists, maps, and unions.
 
 Many large Hadoop users have adopted ORC. For instance, Facebook uses
-ORC to [save tens of petabytes](http://s.apache.org/fb-scaling-300-pb)
+ORC to [save tens of petabytes](https://s.apache.org/fb-scaling-300-pb)
 in their data warehouse and demonstrated that ORC is [significantly
-faster](http://s.apache.org/presto-orc) than RC File or Parquet. Yahoo
+faster](https://s.apache.org/presto-orc) than RC File or Parquet. Yahoo
 uses ORC to store their production data and has released some of their
-[benchmark results](http://s.apache.org/yahoo-orc).
+[benchmark results](https://s.apache.org/yahoo-orc).
 
 ORC files are divided in to *stripes* that are roughly 64MB by
 default. The stripes in a file are independent of each other and form

http://git-wip-us.apache.org/repos/asf/orc/blob/e78350dd/site/_posts/2016-06-28-file-format-talk.md
----------------------------------------------------------------------
diff --git a/site/_posts/2016-06-28-file-format-talk.md b/site/_posts/2016-06-28-file-format-talk.md
index 0552d79..5cf6574 100644
--- a/site/_posts/2016-06-28-file-format-talk.md
+++ b/site/_posts/2016-06-28-file-format-talk.md
@@ -23,7 +23,7 @@ The benchmarks look at a set of three very common use cases:
 
 You can see the slides here:
 
-[File Format Benchmarks: Avro, JSON, ORC, & Parquet](http://www.slideshare.net/oom65/file-format-benchmarks-avro-json-orc-parquet)
+[File Format Benchmarks: Avro, JSON, ORC, & Parquet](https://www.slideshare.net/oom65/file-format-benchmarks-avro-json-orc-parquet)
 
 <iframe src="//www.slideshare.net/slideshow/embed_code/key/fSn4xuYXBXGvlx"
 width="595" height="485" frameborder="0" marginwidth="0" marginheight="0"

http://git-wip-us.apache.org/repos/asf/orc/blob/e78350dd/site/develop/bylaws.md
----------------------------------------------------------------------
diff --git a/site/develop/bylaws.md b/site/develop/bylaws.md
index 3178755..6537e22 100644
--- a/site/develop/bylaws.md
+++ b/site/develop/bylaws.md
@@ -12,12 +12,12 @@ who may vote, how voting works, how conflicts are resolved, etc.
 ORC is a project of the Apache Software Foundation (ASF) and the foundation
 holds the trademark on the name "ORC" and copyright on the combined
 code base. The [Apache Foundation
-FAQ](http://www.apache.org/foundation/faq.html) and
-[How-It-Works](http://www.apache.org/foundation/how-it-works.html)
+FAQ](https://www.apache.org/foundation/faq.html) and
+[How-It-Works](https://www.apache.org/foundation/how-it-works.html)
 explain the operation and background of the foundation.
 
 Apache has a [code of
-conduct](http://www.apache.org/foundation/policies/conduct.html) that
+conduct](https://www.apache.org/foundation/policies/conduct.html) that
 it expects its members to follow. In particular:
 
 * Be **open and welcoming**. It is important that we grow and
@@ -33,7 +33,7 @@ it expects its members to follow. In particular:
 ORC is typical of Apache projects in that it operates under a set of
 principles, known collectively as the "Apache Way". If you are new to
 Apache development, please refer to the [Incubator
-project](http://incubator.apache.org/) for more
+project](https://incubator.apache.org/) for more
 information on how Apache projects operate.
 
 ## Roles and Responsibilities
@@ -84,7 +84,7 @@ All Apache committers are required to have a signed [Individual
 Contributor License
 Agreement](https://www.apache.org/licenses/icla.txt) (ICLA) on file
 with the Apache Software Foundation. There is a [Committer
-FAQ](http://www.apache.org/dev/committers.html) which provides more
+FAQ](https://www.apache.org/dev/committers.html) which provides more
 details on the requirements for Committers.
 
 A committer who makes a
@@ -140,7 +140,7 @@ project.
 
 When the project desires a new PMC chair, the PMC votes to recommend a
 new chair using [Single Transferable
-Vote](http://wiki.apache.org/general/BoardVoting) voting. The decision
+Vote](https://wiki.apache.org/general/BoardVoting) voting. The decision
 must be ratified by the Apache board.
 
 ## Decision Making

http://git-wip-us.apache.org/repos/asf/orc/blob/e78350dd/site/help/index.md
----------------------------------------------------------------------
diff --git a/site/help/index.md b/site/help/index.md
index ab81153..1a737b0 100644
--- a/site/help/index.md
+++ b/site/help/index.md
@@ -10,7 +10,7 @@ Need help with ORC? Try these resources.
 The best option is to send email to the user list
 [user@orc.apache.org](mailto:user@orc.apache.org), which is for user
 discussions. All of the historic traffic is available in the
-[archive](http://mail-archives.apache.org/mod_mbox/orc-user/). To
+[archive](https://mail-archives.apache.org/mod_mbox/orc-user/). To
 subscribe to the user list, please send email to
 [user-subscribe@orc.apache.org](mailto:user-subscribe@orc.apache.org).
 
@@ -22,7 +22,7 @@ patches!
 
 ## StackOverflow
 
-[StackOverflow](http://stackoverflow.com) is a wonderful resource for
+[StackOverflow](https://stackoverflow.com) is a wonderful resource for
 any developer. Take a look over there to see if someone has answered
 your question.
 

http://git-wip-us.apache.org/repos/asf/orc/blob/e78350dd/site/index.html
----------------------------------------------------------------------
diff --git a/site/index.html b/site/index.html
index 58eb6c9..4f15884 100644
--- a/site/index.html
+++ b/site/index.html
@@ -58,7 +58,7 @@ overview: true
     <div class="unit whole">
       <div class="grid pane">
         <div class="unit whole center-on-mobiles">
-          <a href="http://www.apache.org">
+          <a href="https://www.apache.org">
              <img src="img/asf_logo.png" width="429" height="175"
                   alt="Apache Software Foundation"></a>
           <div class="pane-content">
@@ -66,13 +66,13 @@ overview: true
                                           project.</h2>
             <p>Apache is a non-profit organization helping open-source 
                software projects released under the 
-               <a href="http://www.apache.org/licenses/">Apache License</a>
+               <a href="https://www.apache.org/licenses/">Apache License</a>
                and managed with
-               <a href="http://www.apache.org/foundation/how-it-works.html">
+               <a href="https://www.apache.org/foundation/how-it-works.html">
                open governance</a>. We'd like to
-               <a href="http://www.apache.org/foundation/thanks.html">thank
+               <a href="https://www.apache.org/foundation/thanks.html">thank
                </a> the Apache sponsors and encourage others to
-               <a href="http://www.apache.org/foundation/sponsorship.html">
+               <a href="https://www.apache.org/foundation/sponsorship.html">
                donate</a>.
             </p>
           </div>

http://git-wip-us.apache.org/repos/asf/orc/blob/e78350dd/site/talks/index.md
----------------------------------------------------------------------
diff --git a/site/talks/index.md b/site/talks/index.md
index 28f30db..701fd8e 100644
--- a/site/talks/index.md
+++ b/site/talks/index.md
@@ -10,7 +10,7 @@ Watch some presentations and read through some slide decks about ORC.
 ## Videos
 
 * ORC File & Vectorization - Improving Hive Data Storage and Query Performance
-  [slides](http://www.slideshare.net/oom65/orc-andvectorizationhadoopsummit)
+  [slides](https://www.slideshare.net/oom65/orc-andvectorizationhadoopsummit)
  
     Owen O'Malley and Eric Hanson at Hadoop Summit: San Jose 2013
 
@@ -19,7 +19,7 @@ Watch some presentations and read through some slide decks about ORC.
             allowfullscreen></iframe>
 
 * ORC 2015: Faster, Better, Smaller
-  [slides](http://www.slideshare.net/t3rmin4t0r/orc-2015)
+  [slides](https://www.slideshare.net/t3rmin4t0r/orc-2015)
 
     Gopal Vijayaraghavan at Hadoop Summit: Brussels 2015
 
@@ -28,7 +28,7 @@ Watch some presentations and read through some slide decks about ORC.
             allowfullscreen></iframe>
 
 * Adding ACID Updates to Hive
-  [slides](http://www.slideshare.net/alanfgates/hive-acidupdatessummitsjc2014)
+  [slides](https://www.slideshare.net/alanfgates/hive-acidupdatessummitsjc2014)
 
     Owen O'Malley and Alan Gates at Hadoop Summit: San Jose 2014
 
@@ -38,7 +38,7 @@ Watch some presentations and read through some slide decks about ORC.
 
 ## Slides
 
-* [File Format Benchmarks: Avro, JSON, ORC, & Parquet](http://www.slideshare.net/oom65/file-format-benchmarks-avro-json-orc-parquet)
+* [File Format Benchmarks: Avro, JSON, ORC, & Parquet](https://www.slideshare.net/oom65/file-format-benchmarks-avro-json-orc-parquet)
 
     Owen O'Malley at Hadoop Summit San Jose 2016
 
@@ -47,7 +47,7 @@ Watch some presentations and read through some slide decks about ORC.
     scrolling="no" style="border:1px solid #CCC; border-width:1px;
     margin-bottom:5px; max-width: 100%;" allowfullscreen> </iframe>
 
-* [ORC Files](http://www.slideshare.net/oom65/orc-files)
+* [ORC Files](https://www.slideshare.net/oom65/orc-files)
 
     Owen O'Malley at Berlin Buzzwords 2013
 
@@ -56,7 +56,7 @@ Watch some presentations and read through some slide decks about ORC.
     scrolling="no" style="border:1px solid #CCC; border-width:1px;
     margin-bottom:5px; max-width: 100%;" allowfullscreen> </iframe>
 
-* [A Perfect Hive Query for a Perfect Meeting](http://www.slideshare.net/AdamKawa/a-perfect-hive-query-for-a-perfect-meeting-hadoop-summit-2014)
+* [A Perfect Hive Query for a Perfect Meeting](https://www.slideshare.net/AdamKawa/a-perfect-hive-query-for-a-perfect-meeting-hadoop-summit-2014)
 
     Adam Kawa at Hadoop Summit: San Jose 2014