[1/3] drill git commit: DRILL-1881 - Test o.a.d.TestBugFixes#testVersionTable fails while building from source tarball

2014-12-17 Thread adi
Repository: drill
Updated Branches:
  refs/heads/0.7.0 c7b6cc575 - e3ab2c176


DRILL-1881 - Test o.a.d.TestBugFixes#testVersionTable fails while building from 
source tarball


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

Branch: refs/heads/0.7.0
Commit: e3ab2c1760ad34bda80141e2c3108f7eda7c9104
Parents: 9360e25
Author: Aditya Kishore a...@apache.org
Authored: Tue Dec 16 19:32:53 2014 -0800
Committer: Aditya Kishore a...@apache.org
Committed: Wed Dec 17 16:47:45 2014 -0800

--
 .../org/apache/drill/exec/store/sys/VersionIterator.java | 11 +--
 1 file changed, 5 insertions(+), 6 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/drill/blob/e3ab2c17/exec/java-exec/src/main/java/org/apache/drill/exec/store/sys/VersionIterator.java
--
diff --git 
a/exec/java-exec/src/main/java/org/apache/drill/exec/store/sys/VersionIterator.java
 
b/exec/java-exec/src/main/java/org/apache/drill/exec/store/sys/VersionIterator.java
index ffc740a..7deb14b 100644
--- 
a/exec/java-exec/src/main/java/org/apache/drill/exec/store/sys/VersionIterator.java
+++ 
b/exec/java-exec/src/main/java/org/apache/drill/exec/store/sys/VersionIterator.java
@@ -37,9 +37,9 @@ public class VersionIterator implements IteratorObject{
 public String build_time = ;
 
 public VersionInfo(){
-  URL u = Resources.getResource(git.properties);
-  if(u != null){
-try {
+  try {
+URL u = Resources.getResource(git.properties);
+if(u != null){
   Properties p = new Properties();
   p.load(Resources.newInputStreamSupplier(u).getInput());
   commit_id = p.getProperty(git.commit.id);
@@ -48,11 +48,10 @@ public class VersionIterator implements IteratorObject{
   build_time = p.getProperty(git.build.time);
   commit_message = p.getProperty(git.commit.message.short);
 
-} catch (IOException e) {
-  logger.warn(Failure while trying to load \git.properties\ file., 
e);
 }
+  } catch (IOException | IllegalArgumentException e) {
+logger.warn(Failure while trying to load \git.properties\ file., 
e);
   }
-
 }
   }
   @Override



[2/3] drill git commit: DRILL-1879: Unit test failures on Windows

2014-12-17 Thread adi
DRILL-1879: Unit test failures on Windows


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

Branch: refs/heads/0.7.0
Commit: 9360e250b71a764af322a6b7d8808eab49387945
Parents: 0831d72
Author: Aditya Kishore a...@apache.org
Authored: Tue Dec 16 17:04:08 2014 -0800
Committer: Aditya Kishore a...@apache.org
Committed: Wed Dec 17 16:47:45 2014 -0800

--
 .../java/org/apache/drill/BaseTestQuery.java| 40 +++-
 .../java/org/apache/drill/PlanTestBase.java |  4 +-
 .../test/java/org/apache/drill/TestBuilder.java |  2 +-
 3 files changed, 17 insertions(+), 29 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/drill/blob/9360e250/exec/java-exec/src/test/java/org/apache/drill/BaseTestQuery.java
--
diff --git a/exec/java-exec/src/test/java/org/apache/drill/BaseTestQuery.java 
b/exec/java-exec/src/test/java/org/apache/drill/BaseTestQuery.java
index f75a574..17bcb79 100644
--- a/exec/java-exec/src/test/java/org/apache/drill/BaseTestQuery.java
+++ b/exec/java-exec/src/test/java/org/apache/drill/BaseTestQuery.java
@@ -18,26 +18,15 @@
 package org.apache.drill;
 
 import java.io.IOException;
-import java.io.UnsupportedEncodingException;
-import java.lang.reflect.Array;
 import java.net.URL;
-import java.util.ArrayList;
-import java.util.Arrays;
-import java.util.HashMap;
-import java.util.Iterator;
 import java.util.List;
-import java.util.Map;
 import java.util.Properties;
 import java.util.concurrent.CountDownLatch;
 import java.util.concurrent.atomic.AtomicInteger;
+import java.util.regex.Matcher;
 import java.util.regex.Pattern;
 
-import com.google.common.base.Joiner;
-import com.google.common.base.Strings;
-
 import org.apache.drill.common.config.DrillConfig;
-import org.apache.drill.common.types.TypeProtos;
-import org.apache.drill.common.types.Types;
 import org.apache.drill.common.util.TestTools;
 import org.apache.drill.exec.ExecConstants;
 import org.apache.drill.exec.ExecTest;
@@ -50,11 +39,7 @@ import org.apache.drill.exec.memory.BufferAllocator;
 import org.apache.drill.exec.memory.TopLevelAllocator;
 import org.apache.drill.exec.proto.UserBitShared.QueryId;
 import org.apache.drill.exec.proto.UserBitShared.QueryType;
-import org.apache.drill.exec.record.BatchSchema;
-import org.apache.drill.exec.record.HyperVectorWrapper;
-import org.apache.drill.exec.record.MaterializedField;
 import org.apache.drill.exec.record.RecordBatchLoader;
-import org.apache.drill.exec.record.VectorWrapper;
 import org.apache.drill.exec.rpc.RpcException;
 import org.apache.drill.exec.rpc.user.ConnectionThrottle;
 import org.apache.drill.exec.rpc.user.QueryResultBatch;
@@ -62,10 +47,7 @@ import org.apache.drill.exec.rpc.user.UserResultsListener;
 import org.apache.drill.exec.server.Drillbit;
 import org.apache.drill.exec.server.RemoteServiceSet;
 import org.apache.drill.exec.util.VectorUtil;
-import org.apache.drill.exec.vector.ValueVector;
-import org.apache.hadoop.io.Text;
 import org.junit.AfterClass;
-import org.junit.Assert;
 import org.junit.BeforeClass;
 import org.junit.rules.TestRule;
 import org.junit.rules.TestWatcher;
@@ -74,9 +56,6 @@ import org.junit.runner.Description;
 import com.google.common.base.Charsets;
 import com.google.common.io.Resources;
 
-import static org.junit.Assert.assertEquals;
-import static org.junit.Assert.assertNotNull;
-
 public class BaseTestQuery extends ExecTest{
   static final org.slf4j.Logger logger = 
org.slf4j.LoggerFactory.getLogger(BaseTestQuery.class);
 
@@ -180,19 +159,19 @@ public class BaseTestQuery extends ExecTest{
   }
 
   public static ListQueryResultBatch  testRunAndReturn(QueryType type, 
String query) throws Exception{
-query = query.replace([WORKING_PATH], TestTools.getWorkingPath());
+query = normalizeQuery(query);
 return client.runQuery(type, query);
   }
 
   public static int testRunAndPrint(QueryType type, String query) throws 
Exception{
-query = query.replace([WORKING_PATH], TestTools.getWorkingPath());
+query = normalizeQuery(query);
 PrintingResultsListener resultListener = new 
PrintingResultsListener(client.getConfig(), Format.TSV, 
VectorUtil.DEFAULT_COLUMN_WIDTH);
 client.runQuery(type, query, resultListener);
 return resultListener.await();
   }
 
   protected void testWithListener(QueryType type, String query, 
UserResultsListener resultListener) {
-query = query.replace([WORKING_PATH], TestTools.getWorkingPath());
+query = normalizeQuery(query);
 client.runQuery(type, query, resultListener);
   }
 
@@ -216,7 +195,7 @@ public class BaseTestQuery extends ExecTest{
   }
 
   public 

[5/9] drill git commit: DRILL-2056: Remove sandbox folder from Drill source

2015-01-22 Thread adi
http://git-wip-us.apache.org/repos/asf/drill/blob/9a48e688/sandbox/web-frontend/lib/bootstrap/css/bootstrap.css
--
diff --git a/sandbox/web-frontend/lib/bootstrap/css/bootstrap.css 
b/sandbox/web-frontend/lib/bootstrap/css/bootstrap.css
deleted file mode 100644
index 9fa6f76..000
--- a/sandbox/web-frontend/lib/bootstrap/css/bootstrap.css
+++ /dev/null
@@ -1,5774 +0,0 @@
-/*!
- * Bootstrap v2.1.1
- *
- * Copyright 2012 Twitter, Inc
- * Licensed under the Apache License v2.0
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Designed and built with all the love in the world @twitter by @mdo and @fat.
- */
-
-article,
-aside,
-details,
-figcaption,
-figure,
-footer,
-header,
-hgroup,
-nav,
-section {
-  display: block;
-}
-
-audio,
-canvas,
-video {
-  display: inline-block;
-  *display: inline;
-  *zoom: 1;
-}
-
-audio:not([controls]) {
-  display: none;
-}
-
-html {
-  font-size: 100%;
-  -webkit-text-size-adjust: 100%;
-  -ms-text-size-adjust: 100%;
-}
-
-a:focus {
-  outline: thin dotted #333;
-  outline: 5px auto -webkit-focus-ring-color;
-  outline-offset: -2px;
-}
-
-a:hover,
-a:active {
-  outline: 0;
-}
-
-sub,
-sup {
-  position: relative;
-  font-size: 75%;
-  line-height: 0;
-  vertical-align: baseline;
-}
-
-sup {
-  top: -0.5em;
-}
-
-sub {
-  bottom: -0.25em;
-}
-
-img {
-  width: auto\9;
-  height: auto;
-  max-width: 100%;
-  vertical-align: middle;
-  border: 0;
-  -ms-interpolation-mode: bicubic;
-}
-
-#map_canvas img {
-  max-width: none;
-}
-
-button,
-input,
-select,
-textarea {
-  margin: 0;
-  font-size: 100%;
-  vertical-align: middle;
-}
-
-button,
-input {
-  *overflow: visible;
-  line-height: normal;
-}
-
-button::-moz-focus-inner,
-input::-moz-focus-inner {
-  padding: 0;
-  border: 0;
-}
-
-button,
-input[type=button],
-input[type=reset],
-input[type=submit] {
-  cursor: pointer;
-  -webkit-appearance: button;
-}
-
-input[type=search] {
-  -webkit-box-sizing: content-box;
- -moz-box-sizing: content-box;
-  box-sizing: content-box;
-  -webkit-appearance: textfield;
-}
-
-input[type=search]::-webkit-search-decoration,
-input[type=search]::-webkit-search-cancel-button {
-  -webkit-appearance: none;
-}
-
-textarea {
-  overflow: auto;
-  vertical-align: top;
-}
-
-.clearfix {
-  *zoom: 1;
-}
-
-.clearfix:before,
-.clearfix:after {
-  display: table;
-  line-height: 0;
-  content: ;
-}
-
-.clearfix:after {
-  clear: both;
-}
-
-.hide-text {
-  font: 0/0 a;
-  color: transparent;
-  text-shadow: none;
-  background-color: transparent;
-  border: 0;
-}
-
-.input-block-level {
-  display: block;
-  width: 100%;
-  min-height: 30px;
-  -webkit-box-sizing: border-box;
- -moz-box-sizing: border-box;
-  box-sizing: border-box;
-}
-
-body {
-  margin: 0;
-  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
-  font-size: 14px;
-  line-height: 20px;
-  color: #33;
-  background-color: #ff;
-}
-
-a {
-  color: #0088cc;
-  text-decoration: none;
-}
-
-a:hover {
-  color: #005580;
-  text-decoration: underline;
-}
-
-.img-rounded {
-  -webkit-border-radius: 6px;
- -moz-border-radius: 6px;
-  border-radius: 6px;
-}
-
-.img-polaroid {
-  padding: 4px;
-  background-color: #fff;
-  border: 1px solid #ccc;
-  border: 1px solid rgba(0, 0, 0, 0.2);
-  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
- -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
-  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
-}
-
-.img-circle {
-  -webkit-border-radius: 500px;
- -moz-border-radius: 500px;
-  border-radius: 500px;
-}
-
-.row {
-  margin-left: -20px;
-  *zoom: 1;
-}
-
-.row:before,
-.row:after {
-  display: table;
-  line-height: 0;
-  content: ;
-}
-
-.row:after {
-  clear: both;
-}
-
-[class*=span] {
-  float: left;
-  min-height: 1px;
-  margin-left: 20px;
-}
-
-.container,
-.navbar-static-top .container,
-.navbar-fixed-top .container,
-.navbar-fixed-bottom .container {
-  width: 940px;
-}
-
-.span12 {
-  width: 940px;
-}
-
-.span11 {
-  width: 860px;
-}
-
-.span10 {
-  width: 780px;
-}
-
-.span9 {
-  width: 700px;
-}
-
-.span8 {
-  width: 620px;
-}
-
-.span7 {
-  width: 540px;
-}
-
-.span6 {
-  width: 460px;
-}
-
-.span5 {
-  width: 380px;
-}
-
-.span4 {
-  width: 300px;
-}
-
-.span3 {
-  width: 220px;
-}
-
-.span2 {
-  width: 140px;
-}
-
-.span1 {
-  width: 60px;
-}
-
-.offset12 {
-  margin-left: 980px;
-}
-
-.offset11 {
-  margin-left: 900px;
-}
-
-.offset10 {
-  margin-left: 820px;
-}
-
-.offset9 {
-  margin-left: 740px;
-}
-
-.offset8 {
-  margin-left: 660px;
-}
-
-.offset7 {
-  margin-left: 580px;
-}
-
-.offset6 {
-  margin-left: 500px;
-}
-
-.offset5 {
-  margin-left: 420px;
-}
-
-.offset4 {
-  margin-left: 340px;
-}
-
-.offset3 {
-  margin-left: 260px;
-}
-
-.offset2 {
-  margin-left: 180px;
-}
-
-.offset1 {
-  margin-left: 100px;
-}
-
-.row-fluid {
-  width: 100%;
-  *zoom: 1;
-}
-
-.row-fluid:before,
-.row-fluid:after {
-  display: table;
-  

[4/9] drill git commit: DRILL-2056: Remove sandbox folder from Drill source

2015-01-22 Thread adi
http://git-wip-us.apache.org/repos/asf/drill/blob/9a48e688/sandbox/web-frontend/lib/bootstrap/css/bootstrap.min.css
--
diff --git a/sandbox/web-frontend/lib/bootstrap/css/bootstrap.min.css 
b/sandbox/web-frontend/lib/bootstrap/css/bootstrap.min.css
deleted file mode 100644
index 31d8b96..000
--- a/sandbox/web-frontend/lib/bootstrap/css/bootstrap.min.css
+++ /dev/null
@@ -1,9 +0,0 @@
-/*!
- * Bootstrap v2.1.1
- *
- * Copyright 2012 Twitter, Inc
- * Licensed under the Apache License v2.0
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Designed and built with all the love in the world @twitter by @mdo and @fat.
- 
*/article,aside,details,figcaption,figure,footer,header,hgroup,nav,section{display:block}audio,canvas,video{display:inline-block;*display:inline;*zoom:1}audio:not([controls]){display:none}html{font-size:100%;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}a:focus{outline:thin
 dotted #333;outline:5px auto 
-webkit-focus-ring-color;outline-offset:-2px}a:hover,a:active{outline:0}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sup{top:-0.5em}sub{bottom:-0.25em}img{width:auto\9;height:auto;max-width:100%;vertical-align:middle;border:0;-ms-interpolation-mode:bicubic}#map_canvas
 
img{max-width:none}button,input,select,textarea{margin:0;font-size:100%;vertical-align:middle}button,input{*overflow:visible;line-height:normal}button::-moz-focus-inner,input::-moz-focus-inner{padding:0;border:0}button,input[type=button],input[type=reset],input[type=submit]{cursor:pointer;-webkit-appearance:button}input[type=search]{-webkit-box-sizing:content-box;-moz-b
 
ox-sizing:content-box;box-sizing:content-box;-webkit-appearance:textfield}input[type=search]::-webkit-search-decoration,input[type=search]::-webkit-search-cancel-button{-webkit-appearance:none}textarea{overflow:auto;vertical-align:top}.clearfix{*zoom:1}.clearfix:before,.clearfix:after{display:table;line-height:0;content:}.clearfix:after{clear:both}.hide-text{font:0/0
 
a;color:transparent;text-shadow:none;background-color:transparent;border:0}.input-block-level{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}body{margin:0;font-family:Helvetica
 
Neue,Helvetica,Arial,sans-serif;font-size:14px;line-height:20px;color:#333;background-color:#fff}a{color:#08c;text-decoration:none}a:hover{color:#005580;text-decoration:underline}.img-rounded{-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px}.img-polaroid{padding:4px;background-color:#fff;border:1px
 solid #ccc;border:1px solid rgba(0,0,0,0.2);-webkit
 -box-shadow:0 1px 3px rgba(0,0,0,0.1);-moz-box-shadow:0 1px 3px 
rgba(0,0,0,0.1);box-shadow:0 1px 3px 
rgba(0,0,0,0.1)}.img-circle{-webkit-border-radius:500px;-moz-border-radius:500px;border-radius:500px}.row{margin-left:-20px;*zoom:1}.row:before,.row:after{display:table;line-height:0;content:}.row:after{clear:both}[class*=span]{float:left;min-height:1px;margin-left:20px}.container,.navbar-static-top
 .container,.navbar-fixed-top .container,.navbar-fixed-bottom 
.container{width:940px}.span12{width:940px}.span11{width:860px}.span10{width:780px}.span9{width:700px}.span8{width:620px}.span7{width:540px}.span6{width:460px}.span5{width:380px}.span4{width:300px}.span3{width:220px}.span2{width:140px}.span1{width:60px}.offset12{margin-left:980px}.offset11{margin-left:900px}.offset10{margin-left:820px}.offset9{margin-left:740px}.offset8{margin-left:660px}.offset7{margin-left:580px}.offset6{margin-left:500px}.offset5{margin-left:420px}.offset4{margin-left:340px}.offset3{margin-left:260px}.off
 
set2{margin-left:180px}.offset1{margin-left:100px}.row-fluid{width:100%;*zoom:1}.row-fluid:before,.row-fluid:after{display:table;line-height:0;content:}.row-fluid:after{clear:both}.row-fluid
 
[class*=span]{display:block;float:left;width:100%;min-height:30px;margin-left:2.127659574468085%;*margin-left:2.074468085106383%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.row-fluid
 [class*=span]:first-child{margin-left:0}.row-fluid 
.span12{width:100%;*width:99.94680851063829%}.row-fluid 
.span11{width:91.48936170212765%;*width:91.43617021276594%}.row-fluid 
.span10{width:82.97872340425532%;*width:82.92553191489361%}.row-fluid 
.span9{width:74.46808510638297%;*width:74.41489361702126%}.row-fluid 
.span8{width:65.95744680851064%;*width:65.90425531914893%}.row-fluid 
.span7{width:57.44680851063829%;*width:57.39361702127659%}.row-fluid 
.span6{width:48.93617021276595%;*width:48.88297872340425%}.row-fluid 
.span5{width:40.42553191489362%;*width:40.37234042553192%}
 .row-fluid 
.span4{width:31.914893617021278%;*width:31.861702127659576%}.row-fluid 
.span3{width:23.404255319148934%;*width:23.351063829787233%}.row-fluid 
.span2{width:14.893617021276595%;*width:14.840425531914894%}.row-fluid 
.span1{width:6.382978723404255%;*width:6.329787234042553%}.row-fluid 

[2/2] drill git commit: DRILL-1932: Query fails if the first record batch does not contain any record

2015-01-20 Thread adi
DRILL-1932: Query fails if the first record batch does not contain any record

+ Added test case which runs a query against an HBase table with first and last 
region empty.


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

Branch: refs/heads/master
Commit: 8d1e1affe86a5adca3bc17eeaf7520f0d379a393
Parents: 50c0949
Author: Aditya Kishore a...@apache.org
Authored: Thu Jan 1 02:57:49 2015 -0800
Committer: Aditya Kishore a...@apache.org
Committed: Tue Jan 20 23:02:03 2015 -0800

--
 .../org/apache/drill/hbase/HBaseTestsSuite.java |  1 +
 .../apache/drill/hbase/TestHBaseQueries.java| 63 
 .../apache/drill/hbase/TestTableGenerator.java  |  2 +-
 .../drill/exec/physical/impl/ScanBatch.java |  5 +-
 4 files changed, 69 insertions(+), 2 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/drill/blob/8d1e1aff/contrib/storage-hbase/src/test/java/org/apache/drill/hbase/HBaseTestsSuite.java
--
diff --git 
a/contrib/storage-hbase/src/test/java/org/apache/drill/hbase/HBaseTestsSuite.java
 
b/contrib/storage-hbase/src/test/java/org/apache/drill/hbase/HBaseTestsSuite.java
index 888a9f5..96a887e 100644
--- 
a/contrib/storage-hbase/src/test/java/org/apache/drill/hbase/HBaseTestsSuite.java
+++ 
b/contrib/storage-hbase/src/test/java/org/apache/drill/hbase/HBaseTestsSuite.java
@@ -34,6 +34,7 @@ import org.junit.runners.Suite.SuiteClasses;
 
 @RunWith(Suite.class)
 @SuiteClasses({
+  TestHBaseQueries.class,
   TestHBaseRegexParser.class,
   HBaseRecordReaderTest.class,
   TestHBaseFilterPushDown.class,

http://git-wip-us.apache.org/repos/asf/drill/blob/8d1e1aff/contrib/storage-hbase/src/test/java/org/apache/drill/hbase/TestHBaseQueries.java
--
diff --git 
a/contrib/storage-hbase/src/test/java/org/apache/drill/hbase/TestHBaseQueries.java
 
b/contrib/storage-hbase/src/test/java/org/apache/drill/hbase/TestHBaseQueries.java
new file mode 100644
index 000..f842acc
--- /dev/null
+++ 
b/contrib/storage-hbase/src/test/java/org/apache/drill/hbase/TestHBaseQueries.java
@@ -0,0 +1,63 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * License); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an AS IS BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.apache.drill.hbase;
+
+import java.util.Arrays;
+
+import org.apache.hadoop.hbase.HColumnDescriptor;
+import org.apache.hadoop.hbase.HTableDescriptor;
+import org.apache.hadoop.hbase.client.HBaseAdmin;
+import org.apache.hadoop.hbase.client.HTable;
+import org.apache.hadoop.hbase.client.Put;
+import org.junit.Test;
+
+public class TestHBaseQueries extends BaseHBaseTest {
+
+  @Test
+  public void testWithEmptyFirstAndLastRegion() throws Exception {
+HBaseAdmin admin = HBaseTestsSuite.getAdmin();
+String tableName = drill_ut_empty_regions;
+HTable table = null;
+
+try {
+HTableDescriptor desc = new HTableDescriptor(tableName);
+desc.addFamily(new HColumnDescriptor(f));
+admin.createTable(desc, Arrays.copyOfRange(TestTableGenerator.SPLIT_KEYS, 
0, 2));
+
+table = new HTable(admin.getConfiguration(), tableName);
+Put p = new Put(b.getBytes());
+p.add(f.getBytes(), c.getBytes(), 1.getBytes());
+table.put(p);
+
+setColumnWidths(new int[] {8, 15});
+runHBaseSQLVerifyCount(SELECT *\n
++ FROM\n
++   hbase.` + tableName + ` tableName\n
+, 1);
+} finally {
+  try {
+if (table != null) {
+  table.close();
+}
+admin.disableTable(tableName);
+admin.deleteTable(tableName);
+  } catch (Exception e) { } // ignore
+}
+
+  }
+}

http://git-wip-us.apache.org/repos/asf/drill/blob/8d1e1aff/contrib/storage-hbase/src/test/java/org/apache/drill/hbase/TestTableGenerator.java
--
diff --git 

drill git commit: DRILL-2090: Update HBase storage plugin to support HBase 0.98

2015-01-28 Thread adi
Repository: drill
Updated Branches:
  refs/heads/master b6a387878 - 54b5f80a5


DRILL-2090: Update HBase storage plugin to support HBase 0.98


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

Branch: refs/heads/master
Commit: 54b5f80a546f23c11e0521dcf7e2439cc338030e
Parents: b6a3878
Author: Aditya Kishore a...@apache.org
Authored: Tue Jan 27 22:20:19 2015 -0800
Committer: Aditya Kishore a...@apache.org
Committed: Wed Jan 28 02:26:29 2015 -0800

--
 contrib/storage-hbase/pom.xml   | 234 +--
 .../exec/store/hbase/HBaseFilterBuilder.java|   4 +-
 .../exec/store/hbase/HBaseRecordReader.java |  56 ++---
 .../drill/exec/store/hbase/HBaseUtils.java  |  18 +-
 .../exec/store/hbase/TableStatsCalculator.java  |  15 +-
 .../store/hbase/config/HBasePStoreProvider.java |   1 +
 .../org/apache/drill/hbase/HBaseTestsSuite.java |   6 +-
 .../hbase/TestHBaseRegionScanAssignments.java   | 137 +--
 distribution/pom.xml|   2 +-
 exec/java-exec/pom.xml  |   4 -
 pom.xml | 121 +++---
 11 files changed, 229 insertions(+), 369 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/drill/blob/54b5f80a/contrib/storage-hbase/pom.xml
--
diff --git a/contrib/storage-hbase/pom.xml b/contrib/storage-hbase/pom.xml
index 7dcf350..e642fcc 100644
--- a/contrib/storage-hbase/pom.xml
+++ b/contrib/storage-hbase/pom.xml
@@ -45,7 +45,7 @@
 exclusion
   artifactIdhadoop-client/artifactId
   groupIdorg.apache.hadoop/groupId
-/exclusion
+/exclusion
   /exclusions
 /dependency
 
@@ -56,21 +56,6 @@
   classifiertests/classifier
   version${project.version}/version
   scopetest/scope
-  !-- here we explicitly exclude hadoop v2.x dependencies
-   because HBase 0.94.x unit tests do not work with hadoop 2
-   test classes, e.g. MiniDFSCluster.
-   This will change once we move to HBase 0.98 or later.
---
-  exclusions
-exclusion
-  artifactIdhadoop-common/artifactId
-  groupIdorg.apache.hadoop/groupId
-/exclusion
-exclusion
-  artifactIdhadoop-client/artifactId
-  groupIdorg.apache.hadoop/groupId
-/exclusion
-  /exclusions
 /dependency
 dependency
   groupIdorg.apache.drill/groupId
@@ -110,6 +95,7 @@
   /plugin
 /plugins
   /build
+
   profiles
 profile
   iddefault-hadoop/id
@@ -121,143 +107,24 @@
   dependencies
 dependency
   groupIdorg.apache.hbase/groupId
-  artifactIdhbase/artifactId
-  version0.94.11/version
-  exclusions
-exclusion
-  groupIdorg.mortbay.jetty/groupId
-  artifactIdservlet-api-2.5/artifactId
-/exclusion
-exclusion
-  artifactIdcommons-logging/artifactId
-  groupIdcommons-logging/groupId
-/exclusion
-exclusion
-  artifactIdslf4j-log4j12/artifactId
-  groupIdorg.slf4j/groupId
-/exclusion
-exclusion
-  artifactIdslf4j-log4j12/artifactId
-  groupIdorg.slf4j/groupId
-/exclusion
-exclusion
-  groupIdcom.sun.jersey/groupId
-  artifactIdjersey-core/artifactId
-/exclusion
-exclusion
-  groupIdcom.sun.jersey/groupId
-  artifactIdjersey-server/artifactId
-/exclusion
-exclusion
-  groupIdcom.sun.jersey/groupId
-  artifactIdjersey-json/artifactId
-/exclusion
-exclusion
-  groupIdcom.sun.jersey/groupId
-  artifactIdjersey-client/artifactId
-/exclusion
-exclusion
-  artifactIdasm/artifactId
-  groupIdasm/groupId
-/exclusion
-  exclusion
-artifactIdlibthrift/artifactId
-groupIdorg.apache.thrift/groupId
-/exclusion
-exclusion
-  artifactIdjruby-complete/artifactId
-  groupIdorg.jruby/groupId
-/exclusion
-  /exclusions
-/dependency
-dependency
-  !-- contrary to other Drill modules, this HBase storage module
-   compiles against hadoop 1.x to allow running a mini HBase
-   cluster to run the unit tests.
-   This will change once we move to HBase 0.98 

drill git commit: DRILL-2061: Fix build break due to RAT check failure

2015-01-23 Thread adi
Repository: drill
Updated Branches:
  refs/heads/master a22b47243 - caa18fa0a


DRILL-2061: Fix build break due to RAT check failure


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

Branch: refs/heads/master
Commit: caa18fa0a33565471a250d4491c22fda27117635
Parents: a22b472
Author: Aditya Kishore a...@apache.org
Authored: Fri Jan 23 01:01:43 2015 -0800
Committer: Aditya Kishore a...@apache.org
Committed: Fri Jan 23 09:02:28 2015 +

--
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/drill/blob/caa18fa0/pom.xml
--
diff --git a/pom.xml b/pom.xml
index d8f99c5..9492004 100644
--- a/pom.xml
+++ b/pom.xml
@@ -168,7 +168,7 @@
 exclude**/*.css/exclude
 exclude**/*.js/exclude
 exclude**/*.md/exclude
-excludesandbox/**/exclude
+exclude**/*.eps/exclude
 exclude**/*.json/exclude
 exclude**/*.parquet/exclude
 exclude**/*.sql/exclude



drill git commit: DRILL-2497: Remove reference to drill-interpreter in build

2015-03-18 Thread adi
Repository: drill
Updated Branches:
  refs/heads/master 49d316a1c - ee5b0bc13


DRILL-2497: Remove reference to drill-interpreter in build


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

Branch: refs/heads/master
Commit: ee5b0bc13f98a839a5ad7b63356a100a0b28c14f
Parents: 49d316a
Author: Patrick Wong pw...@maprtech.com
Authored: Wed Mar 18 15:23:43 2015 -0700
Committer: Aditya Kishore a...@apache.org
Committed: Wed Mar 18 20:21:57 2015 -0700

--
 distribution/pom.xml | 16 
 1 file changed, 16 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/drill/blob/ee5b0bc1/distribution/pom.xml
--
diff --git a/distribution/pom.xml b/distribution/pom.xml
index 294cd0a..bf934a6 100644
--- a/distribution/pom.xml
+++ b/distribution/pom.xml
@@ -169,22 +169,6 @@
 /profile
 
 profile
-  idbuild-interpreter/id
-  activation
-property
-  name!skipInterpreter/name
-/property
-  /activation
-  dependencies
-dependency
-  groupIdorg.apache.drill.exec/groupId
-  artifactIddrill-interpreter/artifactId
-  version${project.version}/version
-/dependency
-  /dependencies
-/profile
-
-profile
   iddefault-hadoop/id
   activation
 property



drill git commit: DRILL-2499: Remove orphan test Drill2130InterpreterHamcrestConfigurationTest

2015-03-19 Thread adi
Repository: drill
Updated Branches:
  refs/heads/master 2da618cd4 - 17f0befeb


DRILL-2499: Remove orphan test Drill2130InterpreterHamcrestConfigurationTest


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

Branch: refs/heads/master
Commit: 17f0befeb605362a2d13320e3428b55a250604d1
Parents: 2da618c
Author: Aditya Kishore a...@apache.org
Authored: Wed Mar 18 20:25:16 2015 -0700
Committer: Aditya Kishore a...@apache.org
Committed: Thu Mar 19 23:03:11 2015 +0100

--
 ...130InterpreterHamcrestConfigurationTest.java | 46 
 1 file changed, 46 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/drill/blob/17f0befe/exec/interpreter/src/test/java/org/apache/drill/exec/expr/test/Drill2130InterpreterHamcrestConfigurationTest.java
--
diff --git 
a/exec/interpreter/src/test/java/org/apache/drill/exec/expr/test/Drill2130InterpreterHamcrestConfigurationTest.java
 
b/exec/interpreter/src/test/java/org/apache/drill/exec/expr/test/Drill2130InterpreterHamcrestConfigurationTest.java
deleted file mode 100644
index 41cf75b..000
--- 
a/exec/interpreter/src/test/java/org/apache/drill/exec/expr/test/Drill2130InterpreterHamcrestConfigurationTest.java
+++ /dev/null
@@ -1,46 +0,0 @@
-/**
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements.  See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership.  The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * License); you may not use this file except in compliance
- * with the License.  You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an AS IS BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-package org.apache.drill.exec.expr.test;
-
-import org.junit.Test;
-import static org.junit.Assert.assertThat;
-import static org.junit.Assert.fail;
-import static org.hamcrest.CoreMatchers.equalTo;
-
-
-public class Drill2130InterpreterHamcrestConfigurationTest {
-
-  @SuppressWarnings(unused)
-  private org.hamcrest.MatcherAssert forCompileTimeCheckForNewEnoughHamcrest;
-
-  @Test
-  public void testJUnitHamcrestMatcherFailureWorks() {
-try {
-  assertThat( 1, equalTo( 2 ) );
-}
-catch ( NoSuchMethodError e ) {
-  fail( Class search path seems broken re new JUnit and old Hamcrest.
- +   Got NoSuchMethodError;  e:  + e );
-}
-catch ( AssertionError e ) {
-  System.out.println( Class path seems fine re new JUnit vs. old 
Hamcrest.
-  +  (Got AssertionError, not NoSuchMethodError.) );
-}
-  }
-
-}



[1/2] drill git commit: DRILL-2130: Fixed JUnit/Hamcrest/Mockito/Paranamer class path problem.

2015-02-25 Thread adi
Repository: drill
Updated Branches:
  refs/heads/master 8bb6b08e5 - f7ef5ec78


DRILL-2130: Fixed JUnit/Hamcrest/Mockito/Paranamer class path problem.


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

Branch: refs/heads/master
Commit: b0faf708bdbeb53bc3a446d3782554640bdfd6df
Parents: 8bb6b08
Author: dbarclay dbarc...@maprtech.com
Authored: Sun Feb 22 00:45:42 2015 -0800
Committer: Aditya Kishore a...@apache.org
Committed: Wed Feb 25 11:08:20 2015 -0800

--
 ...rill2130CommonHamcrestConfigurationTest.java | 46 
 ...30StorageHBaseHamcrestConfigurationTest.java | 46 
 ...torageHiveCoreHamcrestConfigurationTest.java | 46 
 ...130InterpreterHamcrestConfigurationTest.java | 46 
 exec/java-exec/pom.xml  |  9 
 ...ll2130JavaExecHamcrestConfigurationTest.java | 46 
 ...ll2130JavaJdbcHamcrestConfigurationTest.java | 46 
 pom.xml |  8 
 8 files changed, 293 insertions(+)
--


http://git-wip-us.apache.org/repos/asf/drill/blob/b0faf708/common/src/test/java/org/apache/drill/test/Drill2130CommonHamcrestConfigurationTest.java
--
diff --git 
a/common/src/test/java/org/apache/drill/test/Drill2130CommonHamcrestConfigurationTest.java
 
b/common/src/test/java/org/apache/drill/test/Drill2130CommonHamcrestConfigurationTest.java
new file mode 100644
index 000..99643b1
--- /dev/null
+++ 
b/common/src/test/java/org/apache/drill/test/Drill2130CommonHamcrestConfigurationTest.java
@@ -0,0 +1,46 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * License); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an AS IS BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.apache.drill.test;
+
+import org.junit.Test;
+import static org.junit.Assert.assertThat;
+import static org.junit.Assert.fail;
+import static org.hamcrest.CoreMatchers.equalTo;
+
+
+public class Drill2130CommonHamcrestConfigurationTest {
+
+  @SuppressWarnings(unused)
+  private org.hamcrest.MatcherAssert forCompileTimeCheckForNewEnoughHamcrest;
+
+  @Test
+  public void testJUnitHamcrestMatcherFailureWorks() {
+try {
+  assertThat( 1, equalTo( 2 ) );
+}
+catch ( NoSuchMethodError e ) {
+  fail( Class search path seems broken re new JUnit and old Hamcrest.
+ +   Got NoSuchMethodError;  e:  + e );
+}
+catch ( AssertionError e ) {
+  System.out.println( Class path seems fine re new JUnit vs. old 
Hamcrest.
+  +  (Got AssertionError, not NoSuchMethodError.) );
+}
+  }
+
+}

http://git-wip-us.apache.org/repos/asf/drill/blob/b0faf708/contrib/storage-hbase/src/test/java/org/apache/drill/hbase/test/Drill2130StorageHBaseHamcrestConfigurationTest.java
--
diff --git 
a/contrib/storage-hbase/src/test/java/org/apache/drill/hbase/test/Drill2130StorageHBaseHamcrestConfigurationTest.java
 
b/contrib/storage-hbase/src/test/java/org/apache/drill/hbase/test/Drill2130StorageHBaseHamcrestConfigurationTest.java
new file mode 100644
index 000..b52654d
--- /dev/null
+++ 
b/contrib/storage-hbase/src/test/java/org/apache/drill/hbase/test/Drill2130StorageHBaseHamcrestConfigurationTest.java
@@ -0,0 +1,46 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * License); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an AS 

[2/2] drill git commit: DRILL-1690: Issue with using HBase plugin to access row_key only

2015-02-25 Thread adi
DRILL-1690: Issue with using HBase plugin to access row_key only


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

Branch: refs/heads/master
Commit: f7ef5ec784844a99b8b39fe10ab14f001ae149f2
Parents: b0faf70
Author: Aditya Kishore a...@apache.org
Authored: Wed Feb 25 01:10:48 2015 -0800
Committer: Aditya Kishore a...@apache.org
Committed: Wed Feb 25 11:17:06 2015 -0800

--
 .../exec/store/hbase/HBaseRecordReader.java | 35 +++-
 1 file changed, 19 insertions(+), 16 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/drill/blob/f7ef5ec7/contrib/storage-hbase/src/main/java/org/apache/drill/exec/store/hbase/HBaseRecordReader.java
--
diff --git 
a/contrib/storage-hbase/src/main/java/org/apache/drill/exec/store/hbase/HBaseRecordReader.java
 
b/contrib/storage-hbase/src/main/java/org/apache/drill/exec/store/hbase/HBaseRecordReader.java
index da38707..42038e8 100644
--- 
a/contrib/storage-hbase/src/main/java/org/apache/drill/exec/store/hbase/HBaseRecordReader.java
+++ 
b/contrib/storage-hbase/src/main/java/org/apache/drill/exec/store/hbase/HBaseRecordReader.java
@@ -72,6 +72,8 @@ public class HBaseRecordReader extends AbstractRecordReader 
implements DrillHBas
   private Configuration hbaseConf;
   private OperatorContext operatorContext;
 
+  private boolean rowKeyOnly;
+
   public HBaseRecordReader(Configuration conf, HBaseSubScan.HBaseSubScanSpec 
subScanSpec,
   ListSchemaPath projectedColumns, FragmentContext context) throws 
OutOfMemoryException {
 hbaseConf = conf;
@@ -87,8 +89,8 @@ public class HBaseRecordReader extends AbstractRecordReader 
implements DrillHBas
   @Override
   protected CollectionSchemaPath transformColumns(CollectionSchemaPath 
columns) {
 SetSchemaPath transformed = Sets.newLinkedHashSet();
+rowKeyOnly = true;
 if (!isStarQuery()) {
-  boolean rowKeyOnly = true;
   for (SchemaPath column : columns) {
 if (column.getRootSegment().getPath().equalsIgnoreCase(ROW_KEY)) {
   transformed.add(ROW_KEY_PATH);
@@ -116,6 +118,7 @@ public class HBaseRecordReader extends AbstractRecordReader 
implements DrillHBas
 HBaseUtils.andFilterAtIndex(hbaseScan.getFilter(), 
HBaseUtils.LAST_FILTER, new FirstKeyOnlyFilter()));
   }
 } else {
+  rowKeyOnly = false;
   transformed.add(ROW_KEY_PATH);
 }
 
@@ -131,7 +134,6 @@ public class HBaseRecordReader extends AbstractRecordReader 
implements DrillHBas
 this.operatorContext = operatorContext;
   }
 
-
   @Override
   public void setup(OutputMutator output) throws ExecutionSetupException {
 this.outputMutator = output;
@@ -197,22 +199,23 @@ public class HBaseRecordReader extends 
AbstractRecordReader implements DrillHBas
   if (rowKeyVector != null) {
 rowKeyVector.getMutator().setSafe(rowCount, cells[0].getRowArray(), 
cells[0].getRowOffset(), cells[0].getRowLength());
   }
+  if (!rowKeyOnly) {
+for (Cell cell : cells) {
+  int familyOffset = cell.getFamilyOffset();
+  int familyLength = cell.getFamilyLength();
+  byte[] familyArray = cell.getFamilyArray();
+  MapVector mv = getOrCreateFamilyVector(new String(familyArray, 
familyOffset, familyLength), true);
 
-  for (Cell cell : cells) {
-int familyOffset = cell.getFamilyOffset();
-int familyLength = cell.getFamilyLength();
-byte[] familyArray = cell.getFamilyArray();
-MapVector mv = getOrCreateFamilyVector(new String(familyArray, 
familyOffset, familyLength), true);
+  int qualifierOffset = cell.getQualifierOffset();
+  int qualifierLength = cell.getQualifierLength();
+  byte[] qualifierArray = cell.getQualifierArray();
+  NullableVarBinaryVector v = getOrCreateColumnVector(mv, new 
String(qualifierArray, qualifierOffset, qualifierLength));
 
-int qualifierOffset = cell.getQualifierOffset();
-int qualifierLength = cell.getQualifierLength();
-byte[] qualifierArray = cell.getQualifierArray();
-NullableVarBinaryVector v = getOrCreateColumnVector(mv, new 
String(qualifierArray, qualifierOffset, qualifierLength));
-
-int valueOffset = cell.getValueOffset();
-int valueLength = cell.getValueLength();
-byte[] valueArray = cell.getValueArray();
-v.getMutator().setSafe(rowCount, valueArray, valueOffset, valueLength);
+  int valueOffset = cell.getValueOffset();
+  int valueLength = cell.getValueLength();
+  byte[] valueArray = cell.getValueArray();
+  v.getMutator().setSafe(rowCount, 

svn commit: r1662344 [8/8] - in /drill/site/trunk/content/drill: ./ blog/2014/12/11/apache-drill-qa-panelist-spotlight/ docs/ docs/2014-q1-drill-report/ docs/advanced-properties/ docs/analyzing-yelp-j

2015-02-25 Thread adi
Modified: 
drill/site/trunk/content/drill/docs/supported-date-time-data-type-formats/index.html
URL: 
http://svn.apache.org/viewvc/drill/site/trunk/content/drill/docs/supported-date-time-data-type-formats/index.html?rev=1662344r1=1662343r2=1662344view=diff
==
--- 
drill/site/trunk/content/drill/docs/supported-date-time-data-type-formats/index.html
 (original)
+++ 
drill/site/trunk/content/drill/docs/supported-date-time-data-type-formats/index.html
 Thu Feb 26 01:16:43 2015
@@ -136,14 +136,14 @@ Apache Drill does not support codetime
/tr
   /tbody
  /table
-  
+
 ## Time
 
 Drill supports the `time` data type in the following format:
 
 HH:mm:ss.SSS (hour:minute:sec.milliseconds)
 
-The following table provides some examples for the` time` data type:
+The following table provides some examples for the `time` data type:
 
 tabletbodytr
   thUse/th
@@ -162,7 +162,6 @@ The following table provides some exampl
   td colspan=1 valign=topcodespan style=color: rgb(0,0,0);select 
cast(time_col as time) from dfs.`/tmp/input.json`;/span/code/td
 /tr/tbody
 /table
-  
 
 h2 id=intervalInterval/h2
 
@@ -174,7 +173,7 @@ The following table provides some exampl
 supports the codeinterval/code data type in the following format:/p
 div class=highlightprecode class=language-text data-lang=textP 
[qty] Y [qty] M
 /code/pre/div
-pThe following table provides examples for codeinterval year/codedata 
type:/p
+pThe following table provides examples for codeinterval year/code data 
type:/p
 
 table tbodytr
 thUse/th
@@ -190,7 +189,6 @@ supports the codeinterval/code data
 td colspan=1 valign=topcodespan style=color: rgb(0,0,0);select 
cast(col as interval year) from dfs.`/tmp/input.json`;/span/code/td
   /tr
   /tbody/table 
-  
 
 h3 id=interval-dayInterval Day/h3
 
@@ -201,15 +199,14 @@ supports the codeinterval day/code d
 /code/pre/div
 pThe following table provides examples for codeinterval day/code data 
type:/p
 
-div class=table-wraptable class=confluenceTabletbodytrth 
class=confluenceThUse/thth class=confluenceThExample/th/trtrtd 
valign=topLiteral/tdtd valign=topcodespan style=color: 
rgb(0,0,0);select interval '1 10:20:30.123' day to second from 
dfs.`/tmp/input.json`;br //spanspan style=color: rgb(0,0,0);select 
interval '1 10' day to hour from dfs.`/tmp/input.json`;br //spanspan 
style=color: rgb(0,0,0);select interval '10' day  from 
dfs.`/tmp/input.json`;br //spanspan style=color: rgb(0,0,0);select 
interval '10' hour  from dfs.`/tmp/input.json`;/span/codecodespan 
style=color: rgb(0,0,0);select interval '10.999' second  from 
dfs.`/tmp/input.json`;/span/code/td/trtrtd colspan=1 
valign=topcodeJSON/code Input/tdtd colspan=1 
valign=topcodespan style=color: rgb(0,0,0);{quot;colquot; : 
quot;P1DT10H20M30Squot;}br //spanspan style=color: 
rgb(0,0,0);{quot;colquot; : quot;P1DT
 10H20M30.123Squot;}br //spanspan style=color: 
rgb(0,0,0);{quot;colquot; : quot;P1Dquot;}br //spanspan 
style=color: rgb(0,0,0);{quot;colquot; : quot;PT10Hquot;}br 
//spanspan style=color: rgb(0,0,0);{quot;colquot; : 
quot;PT10.10Squot;}br //spanspan style=color: 
rgb(0,0,0);{quot;colquot; : quot;PT20Squot;}br //spanspan 
style=color: rgb(0,0,0);{quot;colquot; : 
quot;PT10H10Squot;}/span/code/td/trtrtd colspan=1 
valign=topcodeCAST/code from codeVARCHAR/code/tdtd colspan=1 
valign=topcodespan style=color: rgb(0,0,0);select cast(col as interval 
day) from dfs.`/tmp/input.json`;/span/code/td/tr/tbody/table/div 
-  
+table tbodytrth Use/thth Example/th/trtrtd 
valign=topLiteral/tdtd valign=topcodespan style=color: 
rgb(0,0,0);select interval '1 10:20:30.123' day to second from 
dfs.`/tmp/input.json`;br //spanspan style=color: rgb(0,0,0);select 
interval '1 10' day to hour from dfs.`/tmp/input.json`;br //spanspan 
style=color: rgb(0,0,0);select interval '10' day  from 
dfs.`/tmp/input.json`;br //spanspan style=color: rgb(0,0,0);select 
interval '10' hour  from dfs.`/tmp/input.json`;/span/codecodespan 
style=color: rgb(0,0,0);select interval '10.999' second  from 
dfs.`/tmp/input.json`;/span/code/td/trtrtd colspan=1 
valign=topcodeJSON/code Input/tdtd colspan=1 
valign=topcodespan style=color: rgb(0,0,0);{quot;colquot; : 
quot;P1DT10H20M30Squot;}br //spanspan style=color: 
rgb(0,0,0);{quot;colquot; : quot;P1DT10H20M30.123Squot;}br 
//spanspan style=color: rgb(0,0,0);{quot;colquot; : q
 uot;P1Dquot;}br //spanspan style=color: rgb(0,0,0);{quot;colquot; : 
quot;PT10Hquot;}br //spanspan style=color: 
rgb(0,0,0);{quot;colquot; : quot;PT10.10Squot;}br //spanspan 
style=color: rgb(0,0,0);{quot;colquot; : quot;PT20Squot;}br 
//spanspan style=color: rgb(0,0,0);{quot;colquot; : 
quot;PT10H10Squot;}/span/code/td/trtrtd colspan=1 
valign=topcodeCAST/code from codeVARCHAR/code/tdtd colspan=1 
valign=topcodespan style=color: rgb(0,0,0);select cast(col as interval 
day) from dfs.`/tmp/input.json`;/span/code/td/tr/tbody/table 
 
 h2 id=literalLiteral/h2
 
-pThe following table 

svn commit: r1662344 [4/8] - in /drill/site/trunk/content/drill: ./ blog/2014/12/11/apache-drill-qa-panelist-spotlight/ docs/ docs/2014-q1-drill-report/ docs/advanced-properties/ docs/analyzing-yelp-j

2015-02-25 Thread adi
Modified: drill/site/trunk/content/drill/docs/index.html
URL: 
http://svn.apache.org/viewvc/drill/site/trunk/content/drill/docs/index.html?rev=1662344r1=1662343r2=1662344view=diff
==
--- drill/site/trunk/content/drill/docs/index.html (original)
+++ drill/site/trunk/content/drill/docs/index.html Thu Feb 26 01:16:43 2015
@@ -71,7 +71,7 @@
 ul
 
   
-lia href=/docs/apache-drill-documentation/Apache Drill 
Documentation/a/li
+lia href=/docs/architectural-overview/Architectural Overview/a/li
 
 
 
@@ -80,7 +80,48 @@
 
   
 
-  lia href=/docs/architectural-overview/Architectural 
Overview/a/li
+  
+
+  
+
+  
+
+  
+
+  
+
+  
+
+  
+
+  
+
+  
+
+  
+
+  
+
+  
+
+  
+
+  
+
+  
+
+  
+
+  
+
+  lia href=/docs/core-modules-within-a-drillbit/Core Modules 
within a Drillbit/a/li
+  
+  
+  
+
+  
+
+  lia href=/docs/architectural-highlights/Architectural 
Highlights/a/li
   
   
   
@@ -123,226 +164,15 @@
   
 
   
-lia href=/docs/core-modules-within-a-drillbit/Core 
Modules within a Drillbit/a/li
-  
-
-  
-lia href=/docs/architectural-highlights/Architectural 
Highlights/a/li
-  
-
-  
-
-  
-
-  
-
-  
-
-  
-
-  
-
-  
-
-  
-
-  
-
-  
-
-  
-
-  
-
-  
-
-  
-
-  
-
-  
-
-  
-
-  
-
-  
-
-  
-
-  
-
-  
-
-  
-
-  
-
-  
-
-  
-
-  
-
-  
-
-  
-
-  
-
-  
-
-  
-
-  
-
-  
-
-  
-
-  
-
-  
-
-  
-
-  
-
-  
-
-  
-
-  
 
   
 
   
-
-  
-
-  
-
-  
-
-  
-
-  
-
-  
-
-  
-
-  
-
-  
-
-  
-
-  
-
-  
-
-  
-
-  
-
-  
-
-  
-
-  
-
-  
-
-  
-
-  
-
-  
-
-  
-
-  
-
-  
-
-  
-
-  
-
-  
-
-  
-
-  
-
-  
-
-  
-
-  
-
-  
-
-  
-
-  
-
-  
-
-  
-
-  
-
-  
-
-  
-
-  
-
-  
-
-  
-
-  
-
-  
-
-  
-
-  
-
-  
-
-/ul
-  
-
-  
-
-  lia href=/docs/apache-drill-tutorial/Apache Drill 
Tutorial/a/li
-  
-  
-  
-ul
-
-  
-
-  
-
-  
-
-  
-
-  
-
-  
-
-  
-
+lia href=/docs/flexibility/Flexibility/a/li
   
 
   
-
+lia href=/docs/performance/Performance/a/li
  

svn commit: r1662344 [2/8] - in /drill/site/trunk/content/drill: ./ blog/2014/12/11/apache-drill-qa-panelist-spotlight/ docs/ docs/2014-q1-drill-report/ docs/advanced-properties/ docs/analyzing-yelp-j

2015-02-25 Thread adi
Modified: 
drill/site/trunk/content/drill/docs/apache-drill-in-10-minutes/index.html
URL: 
http://svn.apache.org/viewvc/drill/site/trunk/content/drill/docs/apache-drill-in-10-minutes/index.html?rev=1662344r1=1662343r2=1662344view=diff
==
--- drill/site/trunk/content/drill/docs/apache-drill-in-10-minutes/index.html 
(original)
+++ drill/site/trunk/content/drill/docs/apache-drill-in-10-minutes/index.html 
Thu Feb 26 01:16:43 2015
@@ -85,13 +85,13 @@
 liMore Information/li
 /ul
 
-h1 id=objectiveObjective/h1
+h2 id=objectiveObjective/h2
 
 pUse Apache Drill to query sample data in 10 minutes. For simplicity, 
you’ll
 run Drill in emembedded/em mode rather than emdistributed/em mode to 
try out Drill
 without having to perform any setup tasks./p
 
-h1 id=a-few-bits-about-apache-drillA Few Bits About Apache Drill/h1
+h2 id=a-few-bits-about-apache-drillA Few Bits About Apache Drill/h2
 
 pDrill is a clustered, powerful MPP (Massively Parallel Processing) query
 engine for Hadoop that can process petabytes of data, fast. Drill is useful
@@ -100,7 +100,7 @@ capable of querying nested data in forma
 performing dynamic schema discovery. Drill does not require a centralized
 metadata repository./p
 
-h3 id=_dynamic-schema-discovery-_strong_Dynamic schema discovery 
_/strong/h3
+h3 id=dynamic-schema-discoverystrongemDynamic schema 
discovery/em/strong/h3
 
 pDrill does not require schema or type specification for data in order to 
start
 the query execution process. Drill starts data processing in record-batches
@@ -144,7 +144,7 @@ extend the layer to a broader array of u
 classpath scanning and plugin concept to add additional storage plugins,
 functions, and operators with minimal configuration./p
 
-h1 id=process-overviewProcess Overview/h1
+h2 id=process-overviewProcess Overview/h2
 
 pDownload the Apache Drill archive and extract the contents to a directory on
 your machine. The Apache Drill archive contains sample JSON and Parquet files
@@ -159,19 +159,19 @@ commands. SQLLine is used as the shell f
 
 pYou must have the following software installed on your machine to run 
Drill:/p
 
-div class=table-wraptable class=confluenceTabletbodytrtd 
class=confluenceTdpstrongSoftware/strong/p/tdtd 
class=confluenceTdpstrongDescription/strong/p/td/trtrtd 
class=confluenceTdpa 
href=http://www.oracle.com/technetwork/java/javase/downloads/jdk7-downloads-1880260.html;
 class=external-link rel=nofollowOracle JDK version 7/a/p/tdtd 
class=confluenceTdpA set of programming tools for developing Java 
applications./p/td/tr/tbody/table/div
+table tbodytrtd strongSoftware/strong/tdtd 
strongDescription/strong/td/trtrtd a 
href=http://www.oracle.com/technetwork/java/javase/downloads/jdk7-downloads-1880260.html;
 class=external-link rel=nofollowOracle JDK version 7/a/tdtd A set 
of programming tools for developing Java applications./td/tr/tbody/table
 
 h3 id=prerequisite-validationPrerequisite Validation/h3
 
 pRun the following command to verify that the system meets the software
 prerequisite:
-table class=confluenceTabletbodytrtd 
class=confluenceTdpstrongCommand /strong/p/tdtd 
class=confluenceTdpstrongExample Output/strong/p/td/trtrtd 
class=confluenceTdpcodejava –version/code/p/tdtd 
class=confluenceTdpcodejava version quot;1.7.0_65quot;/codebr 
/codeJava(TM) SE Runtime Environment (build 1.7.0_65-b19)/codebr 
/codeJava HotSpot(TM) 64-Bit Server VM (build 24.65-b04, mixed 
mode)/code/p/td/tr/tbody/table/p
+table tbodytrtd strongCommand /strong/tdtd strongExample 
Output/strong/td/trtrtd codejava –version/code/tdtd 
codejava version quot;1.7.0_65quot;/codebr /codeJava(TM) SE Runtime 
Environment (build 1.7.0_65-b19)/codebr /codeJava HotSpot(TM) 64-Bit 
Server VM (build 24.65-b04, mixed mode)/code/td/tr/tbody/table/p
 
-h1 id=install-drillInstall Drill/h1
+h2 id=install-drillInstall Drill/h2
 
 pYou can install Drill on a machine running Linux, Mac OS X, or Windows.  
/p
 
-h2 id=installing-drill-on-linuxInstalling Drill on Linux/h2
+h3 id=installing-drill-on-linuxInstalling Drill on Linux/h3
 
 pComplete the following steps to install Drill:/p
 
@@ -182,7 +182,7 @@ prerequisite:
 lipIssue the following command to create a new directory to which you can 
extract the contents of the Drill codetar.gz/code file:/p
 div class=highlightprecode class=language-text data-lang=textsudo 
mkdir -p /opt/drill
 /code/pre/div/li
-lipNavigate to the directory where you downloaded the Drill 
codetar.gz/code file.  /p/li
+lipNavigate to the directory where you downloaded the Drill 
codetar.gz/code file./p/li
 lipIssue the following command to extract the contents of the Drill 
codetar.gz/code file:/p
 div class=highlightprecode class=language-text data-lang=textsudo 
tar -xvzf apache-drill-lt;versiongt;.tar.gz -C /opt/drill
 /code/pre/div/li
@@ -191,9 +191,9 @@ prerequisite:
 /code/pre/div/li
 /ol
 
-pAt this point, you can a 

svn commit: r1662344 [7/8] - in /drill/site/trunk/content/drill: ./ blog/2014/12/11/apache-drill-qa-panelist-spotlight/ docs/ docs/2014-q1-drill-report/ docs/advanced-properties/ docs/analyzing-yelp-j

2015-02-25 Thread adi
Modified: drill/site/trunk/content/drill/docs/release-notes/index.html
URL: 
http://svn.apache.org/viewvc/drill/site/trunk/content/drill/docs/release-notes/index.html?rev=1662344r1=1662343r2=1662344view=diff
==
--- drill/site/trunk/content/drill/docs/release-notes/index.html (original)
+++ drill/site/trunk/content/drill/docs/release-notes/index.html Thu Feb 26 
01:16:43 2015
@@ -80,7 +80,7 @@ Drill has been tested against MapR, Clou
 distributions. There are associated build profiles and JIRAs that can help you
 run Drill against your preferred distribution/p
 
-pApache Drill 0.7.0 Key Features/p
+h3 id=apache-drill-0.7.0-key-featuresApache Drill 0.7.0 Key Features/h3
 
 ul
 lipNo more dependency on UDP/Multicast - Making it possible for Drill to 
work well in the following scenarios:/p
@@ -104,7 +104,7 @@ run Drill against your preferred distrib
 lipStability improvements in ODBC and JDBC drivers/p/li
 /ul
 
-pApache Drill 0.7.0 Key Notes and Limitations/p
+h3 id=apache-drill-0.7.0-key-notes-and-limitationsApache Drill 0.7.0 Key 
Notes and Limitations/h3
 
 ul
 liThe current release supports in-memory and beyond-memory execution. 
However, you must disable memory-intensive hash aggregate and hash join 
operations to leverage this functionality./li
@@ -123,18 +123,18 @@ against Apache Hadoop. Drill has been te
 Hortonworks Hadoop distributions. There are associated build profiles and
 JIRAs that can help you run Drill against your preferred distribution./p
 
-pApache Drill 0.6.0 Key Features/p
+h3 id=apache-drill-0.6.0-key-featuresApache Drill 0.6.0 Key Features/h3
 
 pThis release is primarily a bug fix release, with a 
href=https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12313820amp;vers%0Aion=12327472;more
 than 30 JIRAs closed/a, but there are some notable features:/p
 
 ul
-liDirect ANSI SQL access to MongoDB, using the latest a 
href=/confluence/display/DRILL/MongoDB+Plugin+for+Apache+DrillMongoDB Plugin 
for Apache Drill/a/li
+liDirect ANSI SQL access to MongoDB, using the latest a 
href=/drill/docs/mongodb-plugin-for-apache-drillMongoDB Plugin for Apache 
Drill/a/li
 liFilesystem query performance improvements with partition pruning/li
 liAbility to use the file system as a persistent store for query profiles 
and diagnostic information/li
 liWindow function support (alpha)/li
 /ul
 
-pApache Drill 0.6.0 Key Notes and Limitations/p
+h3 id=apache-drill-0.6.0-key-notes-and-limitationsApache Drill 0.6.0 Key 
Notes and Limitations/h3
 
 ul
 liThe current release supports in-memory and beyond-memory execution. 
However, you must disable memory-intensive hash aggregate and hash join 
operations to leverage this functionality./li
@@ -157,7 +157,7 @@ against Apache Hadoop. Drill has been te
 Hortonworks Hadoop distributions. There are associated build profiles and
 JIRAs that can help you run Drill against your preferred distribution./p
 
-pApache Drill 0.5.0 Key Notes and Limitations/p
+h3 id=apache-drill-0.5.0-key-notes-and-limitationsApache Drill 0.5.0 Key 
Notes and Limitations/h3
 
 ul
 liThe current release supports in memory and beyond memory execution. 
However, you must disable memory-intensive hash aggregate and hash join 
operations to leverage this functionality./li
@@ -191,7 +191,7 @@ MapR, Cloudera and Hortonworks Hadoop di
 build profiles or JIRAs that can help you run against your preferred
 distribution./p
 
-pSome Key Notes amp; Limitations/p
+h3 id=some-key-notes-amp;-limitationsSome Key Notes amp; Limitations/h3
 
 ul
 liThe current release supports in memory and beyond memory execution. 
However, users must disable memory-intensive hash aggregate and hash join 
operations to leverage this functionality./li
@@ -241,7 +241,7 @@ will be correct in a future milestone re
 liDrill Alpha does not include, there are currently a couple of differences 
for how to write a query in In order to query against/li
 /ul
 
-pUDFs/p
+h3 id=udfsUDFs/h3
 
 ul
 liDrill currently supports simple and aggregate functions using scalar, 
repeated and/li

Modified: drill/site/trunk/content/drill/docs/repeated-count-function/index.html
URL: 
http://svn.apache.org/viewvc/drill/site/trunk/content/drill/docs/repeated-count-function/index.html?rev=1662344r1=1662343r2=1662344view=diff
==
--- drill/site/trunk/content/drill/docs/repeated-count-function/index.html 
(original)
+++ drill/site/trunk/content/drill/docs/repeated-count-function/index.html Thu 
Feb 26 01:16:43 2015
@@ -94,7 +94,7 @@ the count to be grouped by other columns
 this example)./p
 
 pFor another example of this function, see the following lesson in the Apache
-Drill Tutorial for Hadoop: a 
href=/conf%0Aluence/display/DRILL/Lesson+3%3A+Run+Queries+on+Complex+Data+TypesLesson
 3: Run Queries on Complex Data Types/a./p
+Drill Tutorial for Hadoop: a 

[03/13] drill git commit: DRILL-2315: Confluence conversion plus fixes

2015-02-25 Thread adi
http://git-wip-us.apache.org/repos/asf/drill/blob/d959a210/_docs/query/005-query-info-skema.md
--
diff --git a/_docs/query/005-query-info-skema.md 
b/_docs/query/005-query-info-skema.md
new file mode 100644
index 000..1ad0008
--- /dev/null
+++ b/_docs/query/005-query-info-skema.md
@@ -0,0 +1,109 @@
+---
+title: Querying the INFORMATION SCHEMA
+parent: Query Data
+---
+When you are using Drill to connect to multiple data sources, you need a
+simple mechanism to discover what each data source contains. The information
+schema is an ANSI standard set of metadata tables that you can query to return
+information about all of your Drill data sources (or schemas). Data sources
+may be databases or file systems; they are all known as schemas in this
+context. You can query the following INFORMATION_SCHEMA tables:
+
+  * SCHEMATA
+  * CATALOGS
+  * TABLES
+  * COLUMNS 
+  * VIEWS
+
+## SCHEMATA
+
+The SCHEMATA table contains the CATALOG_NAME and SCHEMA_NAME columns. To allow
+maximum flexibility inside BI tools, the only catalog that Drill supports is
+`DRILL`.
+
+0: jdbc:drill:zk=local select CATALOG_NAME, SCHEMA_NAME as 
all_my_data_sources from INFORMATION_SCHEMA.SCHEMATA order by SCHEMA_NAME;
++--+-+
+| CATALOG_NAME | all_my_data_sources |
++--+-+
+| DRILL| INFORMATION_SCHEMA  |
+| DRILL| cp.default  |
+| DRILL| dfs.default |
+| DRILL| dfs.root|
+| DRILL| dfs.tmp |
+| DRILL| HiveTest.SalesDB|
+| DRILL| maprfs.logs |
+| DRILL| sys |
++--+-+
+
+The INFORMATION_SCHEMA name and associated keywords are case-sensitive. You
+can also return a list of schemas by running the SHOW DATABASES command:
+
+0: jdbc:drill:zk=local show databases;
++-+
+| SCHEMA_NAME |
++-+
+| dfs.default |
+| dfs.root|
+| dfs.tmp |
+...
+
+## CATALOGS
+
+The CATALOGS table returns only one row, with the hardcoded DRILL catalog name
+and description.
+
+## TABLES
+
+The TABLES table returns the table name and type for each table or view in
+your databases. (Type means TABLE or VIEW.) Note that Drill does not return
+files available for querying in file-based data sources. Instead, use SHOW
+FILES to explore these data sources.
+
+## COLUMNS
+
+The COLUMNS table returns the column name and other metadata (such as the data
+type) for each column in each table or view.
+
+## VIEWS
+
+The VIEWS table returns the name and definition for each view in your
+databases. Note that file schemas are the canonical repository for views in
+Drill. Depending on how you create a view, the may only be displayed in Drill
+after it has been used.
+
+## Useful Queries
+
+Run an ``INFORMATION_SCHEMA.`TABLES` ``query to view all of the tables and 
views
+within a database. TABLES is a reserved word in Drill and requires back ticks
+(`).
+
+For example, the following query identifies all of the tables and views that
+Drill can access:
+
+SELECT TABLE_SCHEMA, TABLE_NAME, TABLE_TYPE
+FROM INFORMATION_SCHEMA.`TABLES`
+ORDER BY TABLE_NAME DESC;
+
+TABLE_SCHEMA TABLE_NAMETABLE_TYPE
+
+HiveTest.CustomersDB Customers TABLE
+HiveTest.SalesDB OrdersTABLE
+HiveTest.SalesDB OrderLinesTABLE
+HiveTest.SalesDB USOrders  VIEW
+dfs.default  CustomerSocialProfile VIEW
+
+
+**Note:** Currently, Drill only supports querying Drill views; Hive views are 
not yet supported.
+
+You can run a similar query to identify columns in tables and the data types
+of those columns:
+
+SELECT COLUMN_NAME, DATA_TYPE 
+FROM INFORMATION_SCHEMA.COLUMNS 
+WHERE TABLE_NAME = 'Orders' AND TABLE_SCHEMA = 'HiveTest.SalesDB' AND 
COLUMN_NAME LIKE '%Total';
++-++
+| COLUMN_NAME | DATA_TYPE  |
++-++
+| OrderTotal  | Decimal|
++-++
+

http://git-wip-us.apache.org/repos/asf/drill/blob/d959a210/_docs/query/006-query-sys-tbl.md
--
diff --git a/_docs/query/006-query-sys-tbl.md b/_docs/query/006-query-sys-tbl.md
new file mode 100644
index 000..9b853ec
--- /dev/null
+++ b/_docs/query/006-query-sys-tbl.md
@@ -0,0 +1,159 @@
+---
+title: Querying System Tables
+parent: Query Data
+---
+Drill has a sys database that contains system tables. You can query the system
+tables for information 

[05/13] drill git commit: DRILL-2315: Confluence conversion plus fixes

2015-02-25 Thread adi
http://git-wip-us.apache.org/repos/asf/drill/blob/d959a210/_docs/img/ngram_plugin2.png
--
diff --git a/_docs/img/ngram_plugin2.png b/_docs/img/ngram_plugin2.png
new file mode 100644
index 000..60d432d
Binary files /dev/null and b/_docs/img/ngram_plugin2.png differ

http://git-wip-us.apache.org/repos/asf/drill/blob/d959a210/_docs/img/settings.png
--
diff --git a/_docs/img/settings.png b/_docs/img/settings.png
new file mode 100644
index 000..dcff0d9
Binary files /dev/null and b/_docs/img/settings.png differ

http://git-wip-us.apache.org/repos/asf/drill/blob/d959a210/_docs/img/student_hive.png
--
diff --git a/_docs/img/student_hive.png b/_docs/img/student_hive.png
new file mode 100644
index 000..7e22b88
Binary files /dev/null and b/_docs/img/student_hive.png differ

http://git-wip-us.apache.org/repos/asf/drill/blob/d959a210/_docs/install/001-drill-in-10.md
--
diff --git a/_docs/install/001-drill-in-10.md b/_docs/install/001-drill-in-10.md
new file mode 100644
index 000..13d2410
--- /dev/null
+++ b/_docs/install/001-drill-in-10.md
@@ -0,0 +1,365 @@
+---
+title: Apache Drill in 10 Minutes
+parent: Install Drill
+---
+* Objective
+* A Few Bits About Apache Drill
+* Process Overview
+* Install Drill
+  * Installing Drill on Linux
+  * Installing Drill on Mac OS X
+  * Installing Drill on Windows 
+* Start Drill 
+* Query Sample Data 
+* Summary 
+* Next Steps
+* More Information
+
+## Objective
+
+Use Apache Drill to query sample data in 10 minutes. For simplicity, you’ll
+run Drill in _embedded_ mode rather than _distributed_ mode to try out Drill
+without having to perform any setup tasks.
+
+## A Few Bits About Apache Drill
+
+Drill is a clustered, powerful MPP (Massively Parallel Processing) query
+engine for Hadoop that can process petabytes of data, fast. Drill is useful
+for short, interactive ad-hoc queries on large-scale data sets. Drill is
+capable of querying nested data in formats like JSON and Parquet and
+performing dynamic schema discovery. Drill does not require a centralized
+metadata repository.
+
+### **_Dynamic schema discovery_**
+
+Drill does not require schema or type specification for data in order to start
+the query execution process. Drill starts data processing in record-batches
+and discovers the schema during processing. Self-describing data formats such
+as Parquet, JSON, AVRO, and NoSQL databases have schema specified as part of
+the data itself, which Drill leverages dynamically at query time. Because
+schema can change over the course of a Drill query, all Drill operators are
+designed to reconfigure themselves when schemas change.
+
+### **_Flexible data model_**
+
+Drill allows access to nested data attributes, just like SQL columns, and
+provides intuitive extensions to easily operate on them. From an architectural
+point of view, Drill provides a flexible hierarchical columnar data model that
+can represent complex, highly dynamic and evolving data models. Drill allows
+for efficient processing of these models without the need to flatten or
+materialize them at design time or at execution time. Relational data in Drill
+is treated as a special or simplified case of complex/multi-structured data.
+
+### **_De-centralized metadata_**
+
+Drill does not have a centralized metadata requirement. You do not need to
+create and manage tables and views in a metadata repository, or rely on a
+database administrator group for such a function. Drill metadata is derived
+from the storage plugins that correspond to data sources. Storage plugins
+provide a spectrum of metadata ranging from full metadata (Hive), partial
+metadata (HBase), or no central metadata (files). De-centralized metadata
+means that Drill is NOT tied to a single Hive repository. You can query
+multiple Hive repositories at once and then combine the data with information
+from HBase tables or with a file in a distributed file system. You can also
+use SQL DDL syntax to create metadata within Drill, which gets organized just
+like a traditional database. Drill metadata is accessible through the ANSI
+standard INFORMATION_SCHEMA database.
+
+### **_Extensibility_**
+
+Drill provides an extensible architecture at all layers, including the storage
+plugin, query, query optimization/execution, and client API layers. You can
+customize any layer for the specific needs of an organization or you can
+extend the layer to a broader array of use cases. Drill provides a built in
+classpath scanning and plugin concept to add additional storage plugins,
+functions, and operators with minimal configuration.
+
+## Process Overview
+
+Download the Apache Drill archive and extract the contents to a directory on
+your machine. The Apache Drill archive 

[09/13] drill git commit: DRILL-2315: Confluence conversion plus fixes

2015-02-25 Thread adi
http://git-wip-us.apache.org/repos/asf/drill/blob/d959a210/_docs/drill-docs/datasets/001-aol.md
--
diff --git a/_docs/drill-docs/datasets/001-aol.md 
b/_docs/drill-docs/datasets/001-aol.md
deleted file mode 100644
index 472f52f..000
--- a/_docs/drill-docs/datasets/001-aol.md
+++ /dev/null
@@ -1,47 +0,0 @@

-title: AOL Search
-parent: Sample Datasets

-## Quick Stats
-
-The [AOL Search dataset](http://en.wikipedia.org/wiki/AOL_search_data_leak) is
-a collection of real query log data that is based on real users.
-
-## The Data Source
-
-The dataset consists of 20M Web queries from 650k users over a period of three
-months, 440MB in total and available [for
-download](http://zola.di.unipi.it/smalltext/datasets.html). The format used in
-the dataset is:
-
-AnonID, Query, QueryTime, ItemRank, ClickURL
-
-... with:
-
-  * AnonID, an anonymous user ID number.
-  * Query, the query issued by the user, case shifted with most punctuation 
removed.
-  * QueryTime, the time at which the query was submitted for search.
-  * ItemRank, if the user clicked on a search result, the rank of the item on 
which they clicked is listed.
-  * [ClickURL](http://www.dietkart.com/), if the user clicked on a search 
result, the domain portion of the URL in the clicked result is listed.
-
-Each line in the data represents one of two types of events
-
-  * A query that was NOT followed by the user clicking on a result item.
-  * A click through on an item in the result list returned from a query.
-
-In the first case (query only) there is data in only the first three columns,
-in the second case (click through), there is data in all five columns. For
-click through events, the query that preceded the click through is included.
-Note that if a user clicked on more than one result in the list returned from
-a single query, there will be TWO lines in the data to represent the two
-events.
-
-## The Queries
-
-Interesting queries, for example
-
-  * Users querying for topic X
-  * Users that click on the first (second, third) ranked item
-  * TOP 10 domains searched
-  * TOP 10 domains clicked at
-

http://git-wip-us.apache.org/repos/asf/drill/blob/d959a210/_docs/drill-docs/datasets/002-enron.md
--
diff --git a/_docs/drill-docs/datasets/002-enron.md 
b/_docs/drill-docs/datasets/002-enron.md
deleted file mode 100644
index 2ddbef6..000
--- a/_docs/drill-docs/datasets/002-enron.md
+++ /dev/null
@@ -1,21 +0,0 @@

-title: Enron Emails
-parent: Sample Datasets

-## Quick Stats
-
-The [Enron Email dataset](http://www.cs.cmu.edu/~enron/) contains data from
-about 150 users, mostly senior management of Enron.
-
-## The Data Source
-
-Totalling some 500,000 messages, the [raw
-data](http://www.cs.cmu.edu/~enron/enron_mail_20110402.tgz) (2009 version of
-the dataset; ~423MB) is available for download as well as a [MySQL
-dump](ftp://ftp.isi.edu/sims/philpot/data/enron-mysqldump.sql.gz) (~177MB).
-
-## The Queries
-
-Interesting queries, for example
-
-  * Via [Query Dataset for Email 
Search](https://dbappserv.cis.upenn.edu/spell/)
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/drill/blob/d959a210/_docs/drill-docs/datasets/003-wikipedia.md
--
diff --git a/_docs/drill-docs/datasets/003-wikipedia.md 
b/_docs/drill-docs/datasets/003-wikipedia.md
deleted file mode 100644
index 99e6e24..000
--- a/_docs/drill-docs/datasets/003-wikipedia.md
+++ /dev/null
@@ -1,105 +0,0 @@

-title: Wikipedia Edit History
-parent: Sample Datasets

-# Quick Stats
-
-The Wikipedia Edit History is a public dump of the website made available by
-the wikipedia foundation. You can find details
-[here](http://en.wikipedia.org/wiki/Wikipedia:Database_download). The dumps
-are made available as SQL or XML dumps. You can find the entire schema drawn
-together in this great [diagram](http://upload.wikimedia.org/wikipedia/commons
-/thumb/4/42/MediaWiki_1.20_%2844edaa2%29_database_schema.svg/2193px-
-MediaWiki_1.20_%2844edaa2%29_database_schema.svg.png).
-
-# Approach
-
-The _main_ distribution files are:
-
-  * Current Pages: As of January 2013 this SQL dump was 9.0GB in its 
compressed format.
-  * Complere Archive: This is what we actually want, but at a size of multiple 
terrabytes, clearly exceeds the storage available at home.
-
-To have some real historic data, it is recommended to download a _Special
-Export_ use this
-[link](http://en.wikipedia.org/w/index.php?title=Special:Export). Using this
-tool you generate a category specific XML dump and configure various export
-options. There are some limits like a maximum of 1000 revisions per export,
-but otherwise this should work out just fine.
-
-![](../../img/Overview.png)
-
-The entities used in the query use cases.
-
-# Use Cases
-
-## Select Change Volume Based on 

[07/13] drill git commit: DRILL-2315: Confluence conversion plus fixes

2015-02-25 Thread adi
http://git-wip-us.apache.org/repos/asf/drill/blob/d959a210/_docs/drill-docs/query/query-fs/001-query-json.md
--
diff --git a/_docs/drill-docs/query/query-fs/001-query-json.md 
b/_docs/drill-docs/query/query-fs/001-query-json.md
deleted file mode 100644
index 048903b..000
--- a/_docs/drill-docs/query/query-fs/001-query-json.md
+++ /dev/null
@@ -1,41 +0,0 @@

-title: Querying JSON Files
-parent: Querying a File System

-Your Drill installation includes a sample JSON file located in Drill's
-classpath. The sample JSON file, `employee.json`, contains fictitious employee
-data. Use SQL syntax to query the sample `JSON` file.
-
-To view the data in the `employee.json` file, submit the following SQL query
-to Drill:
-
-``0: jdbc:drill:zk=local SELECT * FROM cp.`employee.json`;``
-
-The query returns the following results:
-
-**Example of partial output**
-
-
+-++++-+---+
-| employee_id | full_name  | first_name | last_name  | position_id | 
position_ |
-
+-++++-+---+
-| 1101| Steve Eurich | Steve  | Eurich | 16  | 
Store T |
-| 1102| Mary Pierson | Mary   | Pierson| 16  | 
Store T |
-| 1103| Leo Jones  | Leo| Jones  | 16  | Store 
Tem |
-| 1104| Nancy Beatty | Nancy  | Beatty | 16  | 
Store T |
-| 1105| Clara McNight | Clara  | McNight| 16  | 
Store  |
-| 1106| Marcella Isaacs | Marcella   | Isaacs | 17  | 
Stor |
-| 1107| Charlotte Yonce | Charlotte  | Yonce  | 17  | 
Stor |
-| 1108| Benjamin Foster | Benjamin   | Foster | 17  | 
Stor |
-| 1109| John Reed  | John   | Reed   | 17  | Store 
Per |
-| 1110| Lynn Kwiatkowski | Lynn   | Kwiatkowski | 17  
| St |
-| | Donald Vann | Donald | Vann   | 17  | 
Store Pe |
-| 1112| William Smith | William| Smith  | 17  | 
Store  |
-| 1113| Amy Hensley | Amy| Hensley| 17  | 
Store Pe |
-| 1114| Judy Owens | Judy   | Owens  | 17  | Store 
Per |
-| 1115| Frederick Castillo | Frederick  | Castillo   | 17  
| S |
-| 1116| Phil Munoz | Phil   | Munoz  | 17  | Store 
Per |
-| 1117| Lori Lightfoot | Lori   | Lightfoot  | 17  | 
Store |
-...
-
+-++++-+---+
-1,155 rows selected (0.762 seconds)
-0: jdbc:drill:zk=local
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/drill/blob/d959a210/_docs/drill-docs/query/query-fs/002-query-parquet.md
--
diff --git a/_docs/drill-docs/query/query-fs/002-query-parquet.md 
b/_docs/drill-docs/query/query-fs/002-query-parquet.md
deleted file mode 100644
index 9b4e874..000
--- a/_docs/drill-docs/query/query-fs/002-query-parquet.md
+++ /dev/null
@@ -1,99 +0,0 @@

-title: Querying Parquet Files
-parent: Querying a File System

-Your Drill installation includes a `sample-date` directory with Parquet files
-that you can query. Use SQL syntax to query the `region.parquet` and
-`nation.parquet` files in the `sample-data` directory.
-
-**Note:** Your Drill installation location may differ from the examples used 
here. The examples assume that Drill was installed in embedded mode on your 
machine following the [Apache Drill in 10 Minutes 
](https://cwiki.apache.org/confluence/display/DRILL/Apache+Drill+in+10+Minutes)tutorial.
 If you installed Drill in distributed mode, or your `sample-data` directory 
differs from the location used in the examples, make sure to change the 
`sample-data` directory to the correct location before you run the queries.
-
- Region File
-
-If you followed the Apache Drill in 10 Minutes instructions to install Drill
-in embedded mode, the path to the parquet file varies between operating
-systems.
-
-To view the data in the `region.parquet` file, issue the query appropriate for
-your operating system:
-
-  * Linux  
-``SELECT * FROM dfs.`/opt/drill/apache-drill-0.4.0-incubating/sample-
-data/region.parquet`; ``
-
-   * Mac OS X  
-``SELECT * FROM dfs.`/Users/max/drill/apache-drill-0.4.0-incubating/sample-
-data/region.parquet`;``
-
-   * Windows  
-``SELECT * FROM dfs.`C:\drill\apache-drill-0.4.0-incubating\sample-
-data\region.parquet`;``
-
-The query returns the following results:
-
-+++
-|   EXPR$0   |   EXPR$1   |
-+++
-| AFRICA | lar deposits. blithely final packages cajole. regular 
waters ar |
-| 

Git Push Summary

2015-02-25 Thread adi
Repository: drill
Updated Branches:
  refs/heads/gh-pages-master [created] 23f82db9f


drill git commit: Updating to version 1.0.0-SNAPSHOT

2015-05-03 Thread adi
Repository: drill
Updated Branches:
  refs/heads/master 0dd0e8337 - b22ab2437


Updating to version 1.0.0-SNAPSHOT


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

Branch: refs/heads/master
Commit: b22ab2437ab3b0577ada7d25bddff0f4eef0f6a1
Parents: 0dd0e83
Author: Aditya Kishore a...@apache.org
Authored: Sun May 3 12:51:59 2015 -0700
Committer: Aditya Kishore a...@apache.org
Committed: Sun May 3 12:51:59 2015 -0700

--
 common/pom.xml   | 2 +-
 contrib/data/pom.xml | 2 +-
 contrib/data/tpch-sample-data/pom.xml| 2 +-
 contrib/data/window-test-data/pom.xml| 2 +-
 contrib/pom.xml  | 2 +-
 contrib/sqlline/pom.xml  | 2 +-
 contrib/storage-hbase/pom.xml| 2 +-
 contrib/storage-hive/core/pom.xml| 2 +-
 contrib/storage-hive/hive-exec-shade/pom.xml | 2 +-
 contrib/storage-hive/pom.xml | 2 +-
 contrib/storage-mongo/pom.xml| 2 +-
 distribution/pom.xml | 2 +-
 exec/java-exec/pom.xml   | 2 +-
 exec/jdbc-all/pom.xml| 2 +-
 exec/jdbc/pom.xml| 2 +-
 exec/pom.xml | 2 +-
 pom.xml  | 2 +-
 protocol/pom.xml | 2 +-
 18 files changed, 18 insertions(+), 18 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/drill/blob/b22ab243/common/pom.xml
--
diff --git a/common/pom.xml b/common/pom.xml
index 2ca629b..40d4ee3 100644
--- a/common/pom.xml
+++ b/common/pom.xml
@@ -21,7 +21,7 @@
   parent
 artifactIddrill-root/artifactId
 groupIdorg.apache.drill/groupId
-version0.9.0-SNAPSHOT/version
+version1.0.0-SNAPSHOT/version
   /parent
 
   artifactIddrill-common/artifactId

http://git-wip-us.apache.org/repos/asf/drill/blob/b22ab243/contrib/data/pom.xml
--
diff --git a/contrib/data/pom.xml b/contrib/data/pom.xml
index 6cb7319..99d19e8 100644
--- a/contrib/data/pom.xml
+++ b/contrib/data/pom.xml
@@ -20,7 +20,7 @@
   parent
 artifactIddrill-contrib-parent/artifactId
 groupIdorg.apache.drill.contrib/groupId
-version0.9.0-SNAPSHOT/version
+version1.0.0-SNAPSHOT/version
   /parent
 
   groupIdorg.apache.drill.contrib.data/groupId

http://git-wip-us.apache.org/repos/asf/drill/blob/b22ab243/contrib/data/tpch-sample-data/pom.xml
--
diff --git a/contrib/data/tpch-sample-data/pom.xml 
b/contrib/data/tpch-sample-data/pom.xml
index bd833df..df878d8 100644
--- a/contrib/data/tpch-sample-data/pom.xml
+++ b/contrib/data/tpch-sample-data/pom.xml
@@ -15,7 +15,7 @@
   parent
 artifactIddrill-contrib-data-parent/artifactId
 groupIdorg.apache.drill.contrib.data/groupId
-version0.9.0-SNAPSHOT/version
+version1.0.0-SNAPSHOT/version
   /parent
 
   artifactIdtpch-sample-data/artifactId

http://git-wip-us.apache.org/repos/asf/drill/blob/b22ab243/contrib/data/window-test-data/pom.xml
--
diff --git a/contrib/data/window-test-data/pom.xml 
b/contrib/data/window-test-data/pom.xml
index 6c2da75..f2b9d1b 100644
--- a/contrib/data/window-test-data/pom.xml
+++ b/contrib/data/window-test-data/pom.xml
@@ -15,7 +15,7 @@
   parent
 artifactIddrill-contrib-data-parent/artifactId
 groupIdorg.apache.drill.contrib.data/groupId
-version0.9.0-SNAPSHOT/version
+version1.0.0-SNAPSHOT/version
   /parent
 
   artifactIdwindow-test-data/artifactId

http://git-wip-us.apache.org/repos/asf/drill/blob/b22ab243/contrib/pom.xml
--
diff --git a/contrib/pom.xml b/contrib/pom.xml
index f8a1583..c59ca91 100644
--- a/contrib/pom.xml
+++ b/contrib/pom.xml
@@ -20,7 +20,7 @@
   parent
 artifactIddrill-root/artifactId
 groupIdorg.apache.drill/groupId
-version0.9.0-SNAPSHOT/version
+version1.0.0-SNAPSHOT/version
   /parent
 
   groupIdorg.apache.drill.contrib/groupId

http://git-wip-us.apache.org/repos/asf/drill/blob/b22ab243/contrib/sqlline/pom.xml
--
diff --git a/contrib/sqlline/pom.xml b/contrib/sqlline/pom.xml
index 05afc85..0581562 100644
--- a/contrib/sqlline/pom.xml
+++ b/contrib/sqlline/pom.xml
@@ -21,7 +21,7 @@
   parent
 artifactIddrill-contrib-parent/artifactId
 

[3/3] drill git commit: DRILL-3320: Do away with rebuffing Drill jar

2015-06-24 Thread adi
DRILL-3320: Do away with rebuffing Drill jar


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

Branch: refs/heads/master
Commit: 3aa82bc923cdcb15fdb918baa8b99a5bb85ef6cb
Parents: 8815eb7
Author: Aditya Kishore a...@apache.org
Authored: Fri Jun 19 13:12:46 2015 -0700
Committer: Aditya Kishore a...@apache.org
Committed: Tue Jun 23 23:13:01 2015 -0700

--
 common/pom.xml|   32 -
 distribution/pom.xml  |3 -
 distribution/src/assemble/bin.xml |6 +-
 exec/java-exec/pom.xml|   36 -
 protocol/output   | 3076 
 protocol/pom.xml  |   30 -
 6 files changed, 3 insertions(+), 3180 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/drill/blob/3aa82bc9/common/pom.xml
--
diff --git a/common/pom.xml b/common/pom.xml
index 7ab8adc..c23d9cc 100644
--- a/common/pom.xml
+++ b/common/pom.xml
@@ -143,38 +143,6 @@
   /execution
 /executions
   /plugin
-
-  plugin
-groupIdorg.apache.maven.plugins/groupId
-artifactIdmaven-shade-plugin/artifactId
-version2.1/version
-executions
-  execution
-phasepackage/phase
-goals
-  goalshade/goal
-/goals
-configuration
-  artifactSet
-includes
-  includecom.google.protobuf:protobuf-java/include
-/includes
-  /artifactSet
-  shadedArtifactAttachedtrue/shadedArtifactAttached
-  shadedClassifierNamerebuffed/shadedClassifierName
-
-  relocations
-relocation
-  patterncom.google.protobuf/pattern
-  shadedPattern250.com.google.protobuf/shadedPattern
-/relocation
-  /relocations
-/configuration
-  /execution
-/executions
-  /plugin
-
-
 /plugins
 
   /build

http://git-wip-us.apache.org/repos/asf/drill/blob/3aa82bc9/distribution/pom.xml
--
diff --git a/distribution/pom.xml b/distribution/pom.xml
index d00d2c41..2ee4c63 100644
--- a/distribution/pom.xml
+++ b/distribution/pom.xml
@@ -28,19 +28,16 @@
   groupIdorg.apache.drill/groupId
   artifactIddrill-protocol/artifactId
   version${project.version}/version
-  classifierrebuffed/classifier
 /dependency
 dependency
   groupIdorg.apache.drill.exec/groupId
   artifactIddrill-java-exec/artifactId
   version${project.version}/version
-  classifierrebuffed/classifier
 /dependency
 dependency
   groupIdorg.apache.drill/groupId
   artifactIddrill-common/artifactId
   version${project.version}/version
-  classifierrebuffed/classifier
 /dependency
 dependency
   groupIdorg.apache.drill.exec/groupId

http://git-wip-us.apache.org/repos/asf/drill/blob/3aa82bc9/distribution/src/assemble/bin.xml
--
diff --git a/distribution/src/assemble/bin.xml 
b/distribution/src/assemble/bin.xml
index 684ff19..244230f 100644
--- a/distribution/src/assemble/bin.xml
+++ b/distribution/src/assemble/bin.xml
@@ -84,9 +84,9 @@
   !-- Now, select which projects to include in this module-set. --
   includes
 includeorg.apache.drill.exec:drill-jdbc:jar/include
-includeorg.apache.drill:drill-protocol:jar:rebuffed/include
-includeorg.apache.drill:drill-common:jar:rebuffed/include
-includeorg.apache.drill.exec:drill-java-exec:jar:rebuffed/include
+includeorg.apache.drill:drill-protocol:jar/include
+includeorg.apache.drill:drill-common:jar/include
+includeorg.apache.drill.exec:drill-java-exec:jar/include
 
includeorg.apache.drill.contrib.storage-hive:drill-storage-hive-core/include
 
includeorg.apache.drill.contrib.storage-hive:drill-hive-exec-shaded/include
 includeorg.apache.drill.contrib.data:tpch-sample-data:jar/include

http://git-wip-us.apache.org/repos/asf/drill/blob/3aa82bc9/exec/java-exec/pom.xml
--
diff --git a/exec/java-exec/pom.xml b/exec/java-exec/pom.xml
index 5cc209d..3754126 100644
--- a/exec/java-exec/pom.xml
+++ b/exec/java-exec/pom.xml
@@ -589,42 +589,6 @@
 /executions
   /plugin
   plugin
-groupIdorg.apache.maven.plugins/groupId
-artifactIdmaven-shade-plugin/artifactId
-version2.1/version
-executions

[2/3] drill git commit: DRILL-3320: Do away with rebuffing Drill jar

2015-06-24 Thread adi
http://git-wip-us.apache.org/repos/asf/drill/blob/3aa82bc9/protocol/output
--
diff --git a/protocol/output b/protocol/output
deleted file mode 100644
index a7c8497..000
--- a/protocol/output
+++ /dev/null
@@ -1,3076 +0,0 @@
-Apache Maven 3.1.1 (0728685237757ffbf44136acec0402957f723d9a; 2013-09-17 
08:22:22-0700)
-Maven home: /Users/jnadeau/Downloads/apache-maven-3.1.1
-Java version: 1.7.0_09, vendor: Oracle Corporation
-Java home: /Library/Java/JavaVirtualMachines/jdk1.7.0_09.jdk/Contents/Home/jre
-Default locale: en_US, platform encoding: UTF-8
-OS name: mac os x, version: 10.9.2, arch: x86_64, family: mac
-[INFO] Error stacktraces are turned on.
-[DEBUG] Reading global settings from 
/Users/jnadeau/Downloads/apache-maven-3.1.1/conf/settings.xml
-[DEBUG] Reading user settings from /Users/jnadeau/.m2/settings.xml
-[DEBUG] Using local repository at /Users/jnadeau/.m2/repository
-[DEBUG] Using manager EnhancedLocalRepositoryManager with priority 10.0 for 
/Users/jnadeau/.m2/repository
-[INFO] Scanning for projects...
-[DEBUG] Extension realms for project 
org.apache.drill:drill-protocol:jar:1.0.0-m2-incubating-SNAPSHOT: (none)
-[DEBUG] Looking up lifecyle mappings for packaging jar from 
ClassRealm[plexus.core, parent: null]
-[DEBUG] === REACTOR BUILD PLAN 
-[DEBUG] Project: 
org.apache.drill:drill-protocol:jar:1.0.0-m2-incubating-SNAPSHOT
-[DEBUG] Tasks:   [install]
-[DEBUG] Style:   Regular
-[DEBUG] ===
-[INFO] 
-[INFO] 
-[INFO] Building Drill Protocol 1.0.0-m2-incubating-SNAPSHOT
-[INFO] 
-[DEBUG] Lifecycle default - [validate, initialize, generate-sources, 
process-sources, generate-resources, process-resources, compile, 
process-classes, generate-test-sources, process-test-sources, 
generate-test-resources, process-test-resources, test-compile, 
process-test-classes, test, prepare-package, package, pre-integration-test, 
integration-test, post-integration-test, verify, install, deploy]
-[DEBUG] Lifecycle clean - [pre-clean, clean, post-clean]
-[DEBUG] Lifecycle site - [pre-site, site, post-site, site-deploy]
-[DEBUG] Lifecycle default - [validate, initialize, generate-sources, 
process-sources, generate-resources, process-resources, compile, 
process-classes, generate-test-sources, process-test-sources, 
generate-test-resources, process-test-resources, test-compile, 
process-test-classes, test, prepare-package, package, pre-integration-test, 
integration-test, post-integration-test, verify, install, deploy]
-[DEBUG] Lifecycle clean - [pre-clean, clean, post-clean]
-[DEBUG] Lifecycle site - [pre-site, site, post-site, site-deploy]
-[DEBUG] Lifecycle default - [validate, initialize, generate-sources, 
process-sources, generate-resources, process-resources, compile, 
process-classes, generate-test-sources, process-test-sources, 
generate-test-resources, process-test-resources, test-compile, 
process-test-classes, test, prepare-package, package, pre-integration-test, 
integration-test, post-integration-test, verify, install, deploy]
-[DEBUG] Lifecycle clean - [pre-clean, clean, post-clean]
-[DEBUG] Lifecycle site - [pre-site, site, post-site, site-deploy]
-[DEBUG] Lifecycle default - [validate, initialize, generate-sources, 
process-sources, generate-resources, process-resources, compile, 
process-classes, generate-test-sources, process-test-sources, 
generate-test-resources, process-test-resources, test-compile, 
process-test-classes, test, prepare-package, package, pre-integration-test, 
integration-test, post-integration-test, verify, install, deploy]
-[DEBUG] Lifecycle clean - [pre-clean, clean, post-clean]
-[DEBUG] Lifecycle site - [pre-site, site, post-site, site-deploy]
-[DEBUG] Lifecycle default - [validate, initialize, generate-sources, 
process-sources, generate-resources, process-resources, compile, 
process-classes, generate-test-sources, process-test-sources, 
generate-test-resources, process-test-resources, test-compile, 
process-test-classes, test, prepare-package, package, pre-integration-test, 
integration-test, post-integration-test, verify, install, deploy]
-[DEBUG] Lifecycle clean - [pre-clean, clean, post-clean]
-[DEBUG] Lifecycle site - [pre-site, site, post-site, site-deploy]
-[DEBUG] Lifecycle default - [validate, initialize, generate-sources, 
process-sources, generate-resources, process-resources, compile, 
process-classes, generate-test-sources, process-test-sources, 
generate-test-resources, process-test-resources, test-compile, 
process-test-classes, test, prepare-package, package, pre-integration-test, 
integration-test, post-integration-test, verify, install, deploy]
-[DEBUG] 

[1/3] drill git commit: DRILL-3320: Do away with rebuffing Drill jar

2015-06-24 Thread adi
Repository: drill
Updated Branches:
  refs/heads/master 8815eb7d9 - 3aa82bc92


http://git-wip-us.apache.org/repos/asf/drill/blob/3aa82bc9/protocol/pom.xml
--
diff --git a/protocol/pom.xml b/protocol/pom.xml
index 0512083..22f85b1 100644
--- a/protocol/pom.xml
+++ b/protocol/pom.xml
@@ -149,36 +149,6 @@
   skiptrue/skip
 /configuration
   /plugin
-
-  plugin
-groupIdorg.apache.maven.plugins/groupId
-artifactIdmaven-shade-plugin/artifactId
-version2.1/version
-executions
-  execution
-phasepackage/phase
-goals
-  goalshade/goal
-/goals
-configuration
-  artifactSet
-includes
-  includecom.google.protobuf:protobuf-java/include
-/includes
-  /artifactSet
-  shadedArtifactAttachedtrue/shadedArtifactAttached
-  shadedClassifierNamerebuffed/shadedClassifierName
-
-  relocations
-relocation
-  patterncom.google.protobuf/pattern
-  shadedPattern250.com.google.protobuf/shadedPattern
-/relocation
-  /relocations
-/configuration
-  /execution
-/executions
-  /plugin
 /plugins
 
   /build



drill git commit: DRILL-3364: Prune scan range if the filter is on the leading field with byte comparable encoding

2015-08-14 Thread adi
Repository: drill
Updated Branches:
  refs/heads/master e3fbc6a19 - 645e43fd3


DRILL-3364: Prune scan range if the filter is on the leading field with byte 
comparable encoding

The change adds support to perform row-key range pruning when the row-key prefix
is interpreted as UINT4_BE, TIMESTAMP_EPOCH_BE, TIME_EPOCH_BE, DATE_EPOCH_BE,
UINT8_BE encoded.

Testing Done: Added a unit-tests for the new feature, also ran all existing
unit-tests to make sure there is no regression.


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

Branch: refs/heads/master
Commit: 645e43fd34ce3b70f14df4e3d21c9c04ca9314f1
Parents: e3fbc6a
Author: Smidth Panchamia spancha...@mapr.com
Authored: Mon Jul 27 14:14:20 2015 -0700
Committer: Aditya Kishore a...@apache.org
Committed: Fri Aug 14 22:34:33 2015 -0700

--
 .../store/hbase/CompareFunctionsProcessor.java  | 335 +++
 .../exec/store/hbase/HBaseFilterBuilder.java|  21 ++
 .../org/apache/drill/hbase/HBaseTestsSuite.java |  17 +-
 .../drill/hbase/TestHBaseFilterPushDown.java| 167 +
 .../apache/drill/hbase/TestTableGenerator.java  | 125 +++
 .../impl/conv/TimeStampEpochBEConvertFrom.java  |  45 +++
 .../fn/impl/conv/TimeStampEpochBEConvertTo.java |  54 +++
 .../fn/impl/conv/TimeStampEpochConvertFrom.java |  47 +++
 .../fn/impl/conv/TimeStampEpochConvertTo.java   |  55 +++
 .../expr/fn/impl/conv/UInt4BEConvertFrom.java   |  45 +++
 .../expr/fn/impl/conv/UInt4BEConvertTo.java |  54 +++
 .../expr/fn/impl/conv/UInt4ConvertFrom.java |  46 +++
 .../exec/expr/fn/impl/conv/UInt4ConvertTo.java  |  55 +++
 13 files changed, 1007 insertions(+), 59 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/drill/blob/645e43fd/contrib/storage-hbase/src/main/java/org/apache/drill/exec/store/hbase/CompareFunctionsProcessor.java
--
diff --git 
a/contrib/storage-hbase/src/main/java/org/apache/drill/exec/store/hbase/CompareFunctionsProcessor.java
 
b/contrib/storage-hbase/src/main/java/org/apache/drill/exec/store/hbase/CompareFunctionsProcessor.java
index 803f520..87eb42e 100644
--- 
a/contrib/storage-hbase/src/main/java/org/apache/drill/exec/store/hbase/CompareFunctionsProcessor.java
+++ 
b/contrib/storage-hbase/src/main/java/org/apache/drill/exec/store/hbase/CompareFunctionsProcessor.java
@@ -20,6 +20,7 @@ package org.apache.drill.exec.store.hbase;
 import io.netty.buffer.ByteBuf;
 import io.netty.buffer.Unpooled;
 
+import java.nio.ByteBuffer;
 import java.nio.ByteOrder;
 
 import org.apache.drill.common.expression.CastExpression;
@@ -35,7 +36,11 @@ import 
org.apache.drill.common.expression.ValueExpressions.IntExpression;
 import org.apache.drill.common.expression.ValueExpressions.LongExpression;
 import org.apache.drill.common.expression.ValueExpressions.QuotedString;
 import org.apache.drill.common.expression.ValueExpressions.TimeExpression;
+import org.apache.drill.common.expression.ValueExpressions.TimeStampExpression;
 import org.apache.drill.common.expression.visitors.AbstractExprVisitor;
+import org.apache.hadoop.hbase.HConstants;
+import org.apache.hadoop.hbase.filter.Filter;
+import org.apache.hadoop.hbase.filter.PrefixFilter;
 
 import com.google.common.base.Charsets;
 import com.google.common.collect.ImmutableMap;
@@ -48,6 +53,14 @@ class CompareFunctionsProcessor extends 
AbstractExprVisitorBoolean, LogicalExpr
   private SchemaPath path;
   private String functionName;
 
+  // Fields for row-key prefix comparison
+  // If the query is on row-key prefix, we cannot use a standard template to 
identify startRow, stopRow and filter
+  // Hence, we use these local variables(set depending upon the encoding type 
in user query)
+  private boolean isRowKeyPrefixComparison;
+  byte[] rowKeyPrefixStartRow;
+  byte[] rowKeyPrefixStopRow;
+  Filter rowKeyPrefixFilter;
+
   public static boolean isCompareFunction(String functionName) {
 return COMPARE_FUNCTIONS_TRANSPOSE_MAP.keySet().contains(functionName);
   }
@@ -79,6 +92,7 @@ class CompareFunctionsProcessor extends 
AbstractExprVisitorBoolean, LogicalExpr
 this.functionName = functionName;
 this.isEqualityFn = 
COMPARE_FUNCTIONS_TRANSPOSE_MAP.containsKey(functionName)
  
COMPARE_FUNCTIONS_TRANSPOSE_MAP.get(functionName).equals(functionName);
+this.isRowKeyPrefixComparison = false;
   }
 
   public byte[] getValue() {
@@ -97,6 +111,22 @@ class CompareFunctionsProcessor extends 
AbstractExprVisitorBoolean, LogicalExpr
 return functionName;
   }
 
+  public boolean isRowKeyPrefixComparison() {
+  return isRowKeyPrefixComparison;
+  }
+
+  public byte[] 

drill git commit: DRILL-4042: Unable to run sqlline in embedded mode on Windows

2015-11-06 Thread adi
Repository: drill
Updated Branches:
  refs/heads/master 1a2423347 -> 04c01bded


DRILL-4042: Unable to run sqlline in embedded mode on Windows

Use newer version of hadoop-winutils


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

Branch: refs/heads/master
Commit: 04c01bded6a3979c4d92906ff2952200f90281a4
Parents: 1a24233
Author: Patrick Wong 
Authored: Fri Nov 6 13:05:09 2015 -0800
Committer: Aditya Kishore 
Committed: Fri Nov 6 15:01:30 2015 -0800

--
 distribution/pom.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/drill/blob/04c01bde/distribution/pom.xml
--
diff --git a/distribution/pom.xml b/distribution/pom.xml
index 4746106..896a6fc 100644
--- a/distribution/pom.xml
+++ b/distribution/pom.xml
@@ -186,7 +186,7 @@
 
   org.apache.hadoop
   hadoop-winutils
-  2.4.1
+  2.7.1
   zip
 
   
@@ -212,7 +212,7 @@
 
   org.apache.hadoop
   hadoop-winutils
-  2.4.1-mapr-1408
+  2.7.0-mapr-1506
   zip
 
   



drill git commit: DRILL-3888: Build test jars for all Drill Modules

2015-10-07 Thread adi
Repository: drill
Updated Branches:
  refs/heads/master 6cd399de8 -> aa63e1f48


DRILL-3888: Build test jars for all Drill Modules

Move the test jar configuration to the root pom and remove it from individual 
module's pom.

This closes #188


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

Branch: refs/heads/master
Commit: aa63e1f48ccada7386b2c2fea08dbd97ba77383c
Parents: 6cd399d
Author: Aditya Kishore 
Authored: Fri Oct 2 11:36:45 2015 -0700
Committer: Aditya Kishore 
Committed: Wed Oct 7 14:00:12 2015 -0700

--
 common/pom.xml| 11 ---
 contrib/storage-hive/core/pom.xml | 11 ---
 exec/java-exec/pom.xml| 12 
 pom.xml   | 10 ++
 4 files changed, 10 insertions(+), 34 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/drill/blob/aa63e1f4/common/pom.xml
--
diff --git a/common/pom.xml b/common/pom.xml
index 85b487e..cdeb453 100644
--- a/common/pom.xml
+++ b/common/pom.xml
@@ -118,17 +118,6 @@
 
   
   
-maven-jar-plugin
-
-  
-test-jar
-
-  test-jar
-
-  
-
-  
-  
 org.antlr
 antlr3-maven-plugin
 3.4

http://git-wip-us.apache.org/repos/asf/drill/blob/aa63e1f4/contrib/storage-hive/core/pom.xml
--
diff --git a/contrib/storage-hive/core/pom.xml 
b/contrib/storage-hive/core/pom.xml
index aca05d5..87384a0 100644
--- a/contrib/storage-hive/core/pom.xml
+++ b/contrib/storage-hive/core/pom.xml
@@ -148,17 +148,6 @@
   
 
   
-  
-maven-jar-plugin
-
-  
-test-jar
-
-  test-jar
-
-  
-
-  
 
   
 

http://git-wip-us.apache.org/repos/asf/drill/blob/aa63e1f4/exec/java-exec/pom.xml
--
diff --git a/exec/java-exec/pom.xml b/exec/java-exec/pom.xml
index fb7a62d..0eaff60 100644
--- a/exec/java-exec/pom.xml
+++ b/exec/java-exec/pom.xml
@@ -514,18 +514,6 @@
 
   
   
-org.apache.maven.plugins
-maven-jar-plugin
-2.2
-
-  
-
-  test-jar
-
-  
-
-  
-  
 
 org.apache.maven.plugins

http://git-wip-us.apache.org/repos/asf/drill/blob/aa63e1f4/pom.xml
--
diff --git a/pom.xml b/pom.xml
index b6b38ec..f2242dd 100644
--- a/pom.xml
+++ b/pom.xml
@@ -245,6 +245,16 @@
 
   
 
+
+  
+
+  test-jar
+
+
+  true
+
+  
+
   
 
 



[2/2] drill git commit: DRILL-4199: Add Support for HBase 1.X

2016-06-14 Thread adi
DRILL-4199: Add Support for HBase 1.X

Highlights of the changes:

* Replaced the old HBase APIs (HBaseAdmin/HTable) with the new HBase 1.1 APIs 
(Connection/Admin/Table).
* Added HBaseConnectionManager class which which manages the life-cycle of 
HBase connections inside a Drillbit process.
* Updated HBase dependencies version to 1.1.3 and 1.1.1-mapr-1602-m7-5.1.0 for 
default and "mapr" profiles respectively.
* Added `commons-logging` dependency in the `provided` scope to allow HBase 
test cluster to come up for Unit tests.
* Relaxed banned dependency rule for `commons-logging` library for 
`storage-hbase` module alone, in provided scope only.
* Removed the use of many deprecated APIs throughout the modules code.
* Added some missing test to HBase storage plugin's test suit.
* Move the GuavaPatcher code to main code execution path.
* Log a message if GuavaPatcher fails instead of exiting.

All unit tests are green.

Closes #443


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

Branch: refs/heads/master
Commit: c2d9959e07f47a09a4a11c250f84f4874b7e1db4
Parents: 6286c0a
Author: Aditya Kishore 
Authored: Sun Jun 12 16:28:52 2016 -0700
Committer: Aditya Kishore 
Committed: Tue Jun 14 13:37:20 2016 -0700

--
 contrib/storage-hbase/pom.xml   |  30 ++
 .../conv/OrderedBytesBigIntConvertFrom.java |   2 +-
 .../impl/conv/OrderedBytesBigIntConvertTo.java  |   2 +-
 .../conv/OrderedBytesBigIntDescConvertTo.java   |   2 +-
 .../conv/OrderedBytesDoubleConvertFrom.java |   2 +-
 .../impl/conv/OrderedBytesDoubleConvertTo.java  |   2 +-
 .../conv/OrderedBytesDoubleDescConvertTo.java   |   2 +-
 .../impl/conv/OrderedBytesFloatConvertFrom.java |   2 +-
 .../impl/conv/OrderedBytesFloatConvertTo.java   |   2 +-
 .../conv/OrderedBytesFloatDescConvertTo.java|   2 +-
 .../impl/conv/OrderedBytesIntConvertFrom.java   |   2 +-
 .../fn/impl/conv/OrderedBytesIntConvertTo.java  |   2 +-
 .../impl/conv/OrderedBytesIntDescConvertTo.java |   2 +-
 .../store/hbase/CompareFunctionsProcessor.java  |  10 +-
 .../drill/exec/store/hbase/DrillHBaseTable.java |  17 +-
 .../store/hbase/HBaseConnectionManager.java | 109 ++
 .../exec/store/hbase/HBaseFilterBuilder.java|  10 +-
 .../drill/exec/store/hbase/HBaseGroupScan.java  |  29 +-
 .../store/hbase/HBasePushFilterIntoScan.java|   9 +-
 .../exec/store/hbase/HBaseRecordReader.java |  26 +-
 .../exec/store/hbase/HBaseScanBatchCreator.java |   2 +-
 .../exec/store/hbase/HBaseSchemaFactory.java|   8 +-
 .../exec/store/hbase/HBaseStoragePlugin.java|  93 -
 .../drill/exec/store/hbase/HBaseSubScan.java|   4 +-
 .../exec/store/hbase/TableStatsCalculator.java  |  32 +-
 .../hbase/config/HBasePersistentStore.java  |  59 +--
 .../config/HBasePersistentStoreProvider.java|  46 +--
 .../org/apache/drill/hbase/BaseHBaseTest.java   |  15 +-
 .../org/apache/drill/hbase/GuavaPatcher.java|  90 -
 .../drill/hbase/HBaseRecordReaderTest.java  |   6 +-
 .../org/apache/drill/hbase/HBaseTestsSuite.java |  92 +++--
 .../drill/hbase/TestHBaseConnectionManager.java |  58 +++
 .../drill/hbase/TestHBaseFilterPushDown.java|   1 -
 .../apache/drill/hbase/TestHBaseQueries.java|  52 ++-
 .../hbase/TestOrderedBytesConvertFunctions.java |  22 --
 .../apache/drill/hbase/TestTableGenerator.java  | 372 +--
 ...30StorageHBaseHamcrestConfigurationTest.java |   8 +-
 .../src/test/resources/logback.xml  |  10 +-
 .../org/apache/drill/exec/server/Drillbit.java  |   7 +
 .../apache/drill/exec/util/GuavaPatcher.java|  89 +
 pom.xml |  10 +-
 41 files changed, 806 insertions(+), 534 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/drill/blob/c2d9959e/contrib/storage-hbase/pom.xml
--
diff --git a/contrib/storage-hbase/pom.xml b/contrib/storage-hbase/pom.xml
index fecb5ba..be38dd8 100644
--- a/contrib/storage-hbase/pom.xml
+++ b/contrib/storage-hbase/pom.xml
@@ -77,6 +77,14 @@
   2.1.1
   test
 
+
+  commons-logging
+  
+  commons-logging
+  1.2
+  provided
+
   
 
   
@@ -130,6 +138,28 @@
   
 
   
+  
+maven-enforcer-plugin
+
+  
+avoid_bad_dependencies
+verify
+
+  enforce
+
+
+  
+
+  
+
+
commons-logging:commons-logging:*:jar:provided
+  
+
+  

drill git commit: DRILL-4727: Exclude netty from HBase Client's transitive dependencies

2016-06-17 Thread adi
Repository: drill
Updated Branches:
  refs/heads/master 2e2b54af5 -> 7c7e9d171


DRILL-4727: Exclude netty from HBase Client's transitive dependencies

Excluded `netty-all` from the list of transitive dependencies pulled by 
`hbase-client`

Closes #525.


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

Branch: refs/heads/master
Commit: 7c7e9d1713300ed358285eaff6c44d6376b00c21
Parents: 2e2b54a
Author: Aditya Kishore 
Authored: Thu Jun 16 13:39:21 2016 -0700
Committer: Aditya Kishore 
Committed: Thu Jun 16 13:59:52 2016 -0700

--
 pom.xml | 18 +-
 1 file changed, 13 insertions(+), 5 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/drill/blob/7c7e9d17/pom.xml
--
diff --git a/pom.xml b/pom.xml
index 4e15aea..8e228f8 100644
--- a/pom.xml
+++ b/pom.xml
@@ -124,7 +124,7 @@
   
 false
   
-
+
 
 
   mapr-drill-thirdparty
@@ -574,8 +574,8 @@
   test
 
 
-   
+  
   org.mockito
   mockito-core
   1.9.5
@@ -1041,7 +1041,7 @@
   
 io.netty
 netty-all
-
+  
   
 javax.servlet
 servlet-api
@@ -1130,6 +1130,10 @@
 1.1.3
 
   
+netty-all
+io.netty
+  
+  
 org.mortbay.jetty
 servlet-api-2.5
   
@@ -1500,7 +1504,7 @@
   
 io.netty
 netty-all
-
+  
   
 commons-logging
 commons-logging
@@ -1720,6 +1724,10 @@
 ${hbase.version}
 
   
+netty-all
+io.netty
+  
+  
 javax.servlet
 servlet-api
   



drill git commit: DRILL-4501: Complete MapOrListWriter for all supported data types

2016-03-19 Thread adi
Repository: drill
Updated Branches:
  refs/heads/master 71608ca9f -> 245da9790


DRILL-4501: Complete MapOrListWriter for all supported data types

Closes #427


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

Branch: refs/heads/master
Commit: 245da9790813569c5da9404e0fc5e45cc88e22bb
Parents: 71608ca
Author: Aditya Kishore 
Authored: Sat Mar 12 11:12:34 2016 -0800
Committer: Aditya Kishore 
Committed: Wed Mar 16 10:25:48 2016 -0700

--
 .../src/main/codegen/templates/BaseWriter.java  |  25 
 .../complex/impl/MapOrListWriterImpl.java   | 125 ++-
 2 files changed, 149 insertions(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/drill/blob/245da979/exec/vector/src/main/codegen/templates/BaseWriter.java
--
diff --git a/exec/vector/src/main/codegen/templates/BaseWriter.java 
b/exec/vector/src/main/codegen/templates/BaseWriter.java
index 9ca72c2..f2c6e22 100644
--- a/exec/vector/src/main/codegen/templates/BaseWriter.java
+++ b/exec/vector/src/main/codegen/templates/BaseWriter.java
@@ -106,12 +106,37 @@ package org.apache.drill.exec.vector.complex.writer;
 MapOrListWriter list(String name);
 boolean isMapWriter();
 boolean isListWriter();
+UInt1Writer uInt1(String name);
+UInt2Writer uInt2(String name);
+UInt4Writer uInt4(String name);
+UInt8Writer uInt8(String name);
 VarCharWriter varChar(String name);
+Var16CharWriter var16Char(String name);
+TinyIntWriter tinyInt(String name);
+SmallIntWriter smallInt(String name);
 IntWriter integer(String name);
 BigIntWriter bigInt(String name);
 Float4Writer float4(String name);
 Float8Writer float8(String name);
 BitWriter bit(String name);
+VarBinaryWriter varBinary(String name);
+/**
+ * @deprecated Use {@link #varBinary(String)} instead.
+ */
+@Deprecated
 VarBinaryWriter binary(String name);
+DateWriter date(String name);
+TimeWriter time(String name);
+TimeStampWriter timeStamp(String name);
+IntervalYearWriter intervalYear(String name);
+IntervalDayWriter intervalDay(String name);
+IntervalWriter interval(String name);
+Decimal9Writer decimal9(String name);
+Decimal18Writer decimal18(String name);
+Decimal28DenseWriter decimal28Dense(String name);
+Decimal38DenseWriter decimal38Dense(String name);
+Decimal38SparseWriter decimal38Sparse(String name);
+Decimal28SparseWriter decimal28Sparse(String name);
   }
+
 }

http://git-wip-us.apache.org/repos/asf/drill/blob/245da979/exec/vector/src/main/java/org/apache/drill/exec/vector/complex/impl/MapOrListWriterImpl.java
--
diff --git 
a/exec/vector/src/main/java/org/apache/drill/exec/vector/complex/impl/MapOrListWriterImpl.java
 
b/exec/vector/src/main/java/org/apache/drill/exec/vector/complex/impl/MapOrListWriterImpl.java
index 1cfcdab..302d99e 100644
--- 
a/exec/vector/src/main/java/org/apache/drill/exec/vector/complex/impl/MapOrListWriterImpl.java
+++ 
b/exec/vector/src/main/java/org/apache/drill/exec/vector/complex/impl/MapOrListWriterImpl.java
@@ -17,13 +17,32 @@
  */
 package org.apache.drill.exec.vector.complex.impl;
 
-import org.apache.drill.exec.vector.complex.writer.BaseWriter.MapOrListWriter;
 import org.apache.drill.exec.vector.complex.writer.BaseWriter;
+import org.apache.drill.exec.vector.complex.writer.BaseWriter.MapOrListWriter;
 import org.apache.drill.exec.vector.complex.writer.BigIntWriter;
 import org.apache.drill.exec.vector.complex.writer.BitWriter;
+import org.apache.drill.exec.vector.complex.writer.DateWriter;
+import org.apache.drill.exec.vector.complex.writer.Decimal18Writer;
+import org.apache.drill.exec.vector.complex.writer.Decimal28DenseWriter;
+import org.apache.drill.exec.vector.complex.writer.Decimal28SparseWriter;
+import org.apache.drill.exec.vector.complex.writer.Decimal38DenseWriter;
+import org.apache.drill.exec.vector.complex.writer.Decimal38SparseWriter;
+import org.apache.drill.exec.vector.complex.writer.Decimal9Writer;
 import org.apache.drill.exec.vector.complex.writer.Float4Writer;
 import org.apache.drill.exec.vector.complex.writer.Float8Writer;
 import org.apache.drill.exec.vector.complex.writer.IntWriter;
+import org.apache.drill.exec.vector.complex.writer.IntervalDayWriter;
+import org.apache.drill.exec.vector.complex.writer.IntervalWriter;
+import org.apache.drill.exec.vector.complex.writer.IntervalYearWriter;
+import org.apache.drill.exec.vector.complex.writer.SmallIntWriter;
+import 

drill git commit: DRILL-4050: Add zip archives to the list of artifacts in verify_release.sh

2016-03-14 Thread adi
Repository: drill
Updated Branches:
  refs/heads/master dd4f03be9 -> 050ff9679


DRILL-4050: Add zip archives to the list of artifacts in verify_release.sh

This enhanced version of the script allows integrated download and verification 
of a Drill release. It can be used to verify both the main release artifacts 
and maven repository artifacts.

For example, to verify the 1.6 rc0 release artifacts, I ran

./verify_release.sh 
https://repository.apache.org/content/repositories/orgapachedrill-1030/ 
/tmp/drill-1.6/maven/
./verify_release.sh http://home.apache.org/~parthc/drill/releases/1.6.0/rc0/ 
/tmp/drill-1.6/main/

If I had pre-downloaded the files in the respective folders, I'd run

./verify_release.sh /tmp/drill-1.6/maven/
./verify_release.sh /tmp/drill-1.6/main/

Finally, run with `-nv` option to reduce the verbosity of the output.

Closes #249.


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

Branch: refs/heads/master
Commit: 050ff9679d99b5cdacc86f5501802c3d2a6dd3e3
Parents: dd4f03b
Author: Aditya Kishore 
Authored: Mon Mar 14 15:15:38 2016 -0700
Committer: Aditya Kishore 
Committed: Mon Mar 14 15:15:38 2016 -0700

--
 tools/verify_release.sh | 176 ++-
 1 file changed, 125 insertions(+), 51 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/drill/blob/050ff967/tools/verify_release.sh
--
diff --git a/tools/verify_release.sh b/tools/verify_release.sh
index eb50a31..90b991d 100755
--- a/tools/verify_release.sh
+++ b/tools/verify_release.sh
@@ -23,10 +23,15 @@
 
 DRILL_CHECKUM_ALOGRITHMS="sha1 md5"
 DRILL_SIGNATURE_EXTENSION=asc
-DRILL_ARTIFACT_EXTENSION=tar.gz
-DRILL_ARTIFACTS=*.${DRILL_ARTIFACT_EXTENSION}
+DRILL_DOWNLOAD_EXTENSIONS="tar.gz,zip,xml,asc,jar,md5,pom,sha1"
+DRILL_ARTIFACTS="*.tar.gz *.zip *.pom *.jar"
 DRILL_ARTIFACT_DIR=.
 
+TERSE=false
+CMD_REDIRECT="/dev/stdout"
+DOWNLOAD_URL=
+ARTIFACT_COUNT=0
+
 ERROR='\e[0;31m'
 SUCCESS='\e[0;32m'
 DEBUG='\e[1;30m'
@@ -36,68 +41,137 @@ RESET='\e[0m'
 #
 # Helper methods
 #
-error_exit() { echo -e $ERROR$@$RESET;  popd &> /dev/null; exit 1; }
-info_msg  () { echo -e $INFO$@$RESET; }
-debug_msg () { echo -e $DEBUG$@$RESET; }
+info_msg()   { echo -e $INFO$@$RESET; }
+debug_msg()  { if [ "$TERSE" == "false" ]; then echo -e $DEBUG$@$RESET; fi }
+error_msg()  { echo -e $ERROR$@$RESET; }
+error_exit() { echo -e $ERROR$@$RESET; popd &> /dev/null; exit 1; }
+
+header_msg() {
+  MSG=$@
+  info_msg ${MSG}
+  if [ "$TERSE" == "false" ]; then
+info_msg $(eval printf "=%.0s" {1..${#MSG}});
+  fi
+}
+
+test_dir()   {
+  if [ ! -e $1 ]; then
+mkdir -p $1
+  elif [ ! -d $1 ]; then
+error_msg "The specified path '$1' is not a directory."
+usage
+  fi
+}
+
+usage() {
+  echo -e "Usage:\n `basename $0` \n `basename $0` 
 [path_of_download_directory]"
+  exit 1
+}
+
+download_files() {
+  if [[ $# == 2 ]]; then
+test_dir $2
+DRILL_ARTIFACT_DIR=$2
+  else
+DRILL_ARTIFACT_DIR=`mktemp -d`
+  fi
+
+  info_msg "Downloading files from '$1' into '$DRILL_ARTIFACT_DIR'"
+  pushd ${DRILL_ARTIFACT_DIR} &> /dev/null
+  wget $1 -r -np -A ${DRILL_DOWNLOAD_EXTENSIONS} -l0 -e robots=off -nH -nv &> 
$CMD_REDIRECT
+  popd &> /dev/null
+}
+
+verify_directory() {
+  pushd $1 &> /dev/null
+
+  for ARTIFACT in ${DRILL_ARTIFACTS}; do
+ARTIFACT_COUNT=$(($ARTIFACT_COUNT+1))
+header_msg "Verifying artifact #$ARTIFACT_COUNT '$ARTIFACT' in $PWD"
+
+debug_msg "Verifying signature..."
+SIGNATURE_FILE=${ARTIFACT}.${DRILL_SIGNATURE_EXTENSION}
+if ! [ -f ${SIGNATURE_FILE} ]; then error_exit "Signature file 
'${SIGNATURE_FILE}' was not found"; fi
+if gpg --verify ${SIGNATURE_FILE} &> $CMD_REDIRECT; then
+  debug_msg "Signature verified (${SIGNATURE_FILE})."
+else
+  error_exit "Signature verification failed for '${ARTIFACT}'!"
+fi
+debug_msg ""
+
+debug_msg Verifying checksums...
+for ALGO in $DRILL_CHECKUM_ALOGRITHMS; do
+  CHECKSUM_FILE=${ARTIFACT}.${ALGO}
+  if ! [ -f ${CHECKSUM_FILE} ]; then error_exit "Checksum file 
'${CHECKSUM_FILE}' was not found"; fi
+  COMPUTED_SUM=`${ALGO}sum ${ARTIFACT} | awk '{print $1}'`
+  FILE_SUM=`cat ${CHECKSUM_FILE}`
+  if [ "${FILE_SUM}" == "${COMPUTED_SUM}" ]; then
+debug_msg "Verified ${ALGO} checksum (${CHECKSUM_FILE})."
+  else
+error_exit "Computed ${ALGO} checksum did not match the one in 
'${CHECKSUM_FILE}'"
+  fi
+done
+debug_msg "Checksums verified.\n"
+  done
+  
+  # recurse through the sub-directories
+  for SUB_DIR in *; do
+if [ -d 

[16/51] [abbrv] [partial] drill-site git commit: Revert "Website update"

2017-02-24 Thread adi
http://git-wip-us.apache.org/repos/asf/drill-site/blob/bdf0f883/_site/docs/apache-drill-1-0-0-release-notes/index.html
--
diff --git a/_site/docs/apache-drill-1-0-0-release-notes/index.html 
b/_site/docs/apache-drill-1-0-0-release-notes/index.html
deleted file mode 100644
index 317758d..000
--- a/_site/docs/apache-drill-1-0-0-release-notes/index.html
+++ /dev/null
@@ -1,1574 +0,0 @@
-
-
-
-
-
-
-
-
-
-Apache Drill 1.0.0 Release Notes - Apache Drill
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-  
-
-
-
-
-  
-  
-  
-  
-  
-  Menu
-  
-  
-  
-Documentation
-
-  
-Getting Started
-  
-Architecture
-  
-Tutorials
-  
-Install Drill
-  
-Configure Drill
-  
-Connect a Data 
Source
-  
-ODBC/JDBC 
Interfaces
-  
-Query Data
-  
-Performance 
Tuning
-  
-Log and Debug
-  
-SQL Reference
-  
-Data Sources 
and File Formats
-  
-Develop Custom 
Functions
-  
-Troubleshooting
-  
-Developer 
Information
-  
-Release Notes
-  
-Sample Datasets
-  
-Project Bylaws
-  
-
-  
-  
-Community
-
-  Team
-  Mailing Lists
-  Community Resources
-
-  
-  FAQ
-  Blog
-  https://twitter.com/apachedrill; 
title="apachedrill on twitter" target="_blank"> 
-  
-
-  
-  
-
-  
-
-  
-  
-
-   Download
-
-  
-
-
-
-
-
-
-  
-
-
-
-
-
-  
-
-  
-  
-
-  Getting 
Started
-  
-  
-
-  Drill Introduction
-
-  
-
-  Why Drill
-
-  
-  
-
-  
-
-  Architecture
-  
-  
-
-  Architecture Introduction
-
-  
-
-  Drill Query Execution
-
-  
-
-  Core Modules
-
-  
-
-  Performance
-
-  
-  
-
-  
-
-  Tutorials
-  
-  
-
-  Tutorials Introduction
-
-  
-
-  Drill in 10 Minutes
-
-  
-
-  Analyzing the Yelp 
Academic Dataset
-
-  
-
-  Learn 
Drill with the MapR Sandbox
-  
-  
-About the MapR Sandbox
-  
-Installing the Apache 
Drill Sandbox
-  
-Getting to Know the Drill 
Sandbox
-  
-Lesson 1: Learn about the 
Data Set
-  
-Lesson 2: Run Queries 
with ANSI SQL
-  
-Lesson 3: Run 
Queries on Complex Data Types
-  
-Summary
-  
-
-
-  
-
-  Analyzing Highly Dynamic 
Datasets
-
-  
-
-  Analyzing Social Media
-
-  
-
-  Analyzing Data Using 
Window Functions
-
-  
-  
-
-  
-
-  Install 
Drill
-  
-  
-
-  Install Drill 
Introduction
-
-  
-
-  Installing 
Drill in Embedded Mode
-  
-  
-Embedded Mode 
Prerequisites
-  
-Installing Drill on 
Linux and Mac OS X
-  
-Starting Drill on 
Linux and Mac OS X
-  
-Installing Drill on 
Windows
-  
-Starting Drill on Windows
-  
-
-
-  
-
-  Installing 
Drill in Distributed Mode
-  
-  
-Distributed Mode 
Prerequisites
-  
-Installing Drill on the 
Cluster
-  
-Starting Drill in 
Distributed Mode
-  
-
-
-  
-
-  Starting the Web Console
-
-  
-  
-
-  
-
-  Configure 
Drill
-  
-  
-
-  Configure Drill 
Introduction
-
-  
-
-  Configuring Drill Memory
-
-  
-
-  Configuring a Multitenant Cluster
-  
-  
-Configuring 
a Multitenant Cluster Introduction
-  
-Configuring Multitenant 
Resources
-  
-Configuring 
Resources for a Shared 

[50/51] [abbrv] [partial] drill-site git commit: Revert "Website update"

2017-02-24 Thread adi
http://git-wip-us.apache.org/repos/asf/drill-site/blob/bdf0f883/_site/api/1.2/jdbc/constant-values.html
--
diff --git a/_site/api/1.2/jdbc/constant-values.html 
b/_site/api/1.2/jdbc/constant-values.html
deleted file mode 100644
index 9e0aed3..000
--- a/_site/api/1.2/jdbc/constant-values.html
+++ /dev/null
@@ -1,119 +0,0 @@
-http://www.w3.org/TR/html4/loose.dtd;>
-
-
-
-
-
-Constant Field Values (Apache Drill JDBC Driver v. 1.2.0)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-Overview
-Package
-Class
-Use
-Tree
-Deprecated
-Index
-Help
-
-Apache Drill JDBC Driver v. 1.2.0
-
-
-
-Prev
-Next
-
-
-Frames
-No Frames
-
-
-All Classes
-
-
-
-
-
-
-
-
-
-
-Constant Field Values
-Contents
-
-
-
-
-
-
-
-
-Overview
-Package
-Class
-Use
-Tree
-Deprecated
-Index
-Help
-
-Apache Drill JDBC Driver v. 1.2.0
-
-
-
-Prev
-Next
-
-
-Frames
-No Frames
-
-
-All Classes
-
-
-
-
-
-
-
-
-
-Copyright  2015 http://www.apache.org/;>The Apache Software Foundation. All rights 
reserved.
-
-

http://git-wip-us.apache.org/repos/asf/drill-site/blob/bdf0f883/_site/api/1.2/jdbc/deprecated-list.html
--
diff --git a/_site/api/1.2/jdbc/deprecated-list.html 
b/_site/api/1.2/jdbc/deprecated-list.html
deleted file mode 100644
index 9fb7064..000
--- a/_site/api/1.2/jdbc/deprecated-list.html
+++ /dev/null
@@ -1,119 +0,0 @@
-http://www.w3.org/TR/html4/loose.dtd;>
-
-
-
-
-
-Deprecated List (Apache Drill JDBC Driver v. 1.2.0)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-Overview
-Package
-Class
-Use
-Tree
-Deprecated
-Index
-Help
-
-Apache Drill JDBC Driver v. 1.2.0
-
-
-
-Prev
-Next
-
-
-Frames
-No Frames
-
-
-All Classes
-
-
-
-
-
-
-
-
-
-
-Deprecated API
-Contents
-
-
-
-
-
-
-
-
-Overview
-Package
-Class
-Use
-Tree
-Deprecated
-Index
-Help
-
-Apache Drill JDBC Driver v. 1.2.0
-
-
-
-Prev
-Next
-
-
-Frames
-No Frames
-
-
-All Classes
-
-
-
-
-
-
-
-
-
-Copyright  2015 http://www.apache.org/;>The Apache Software Foundation. All rights 
reserved.
-
-

http://git-wip-us.apache.org/repos/asf/drill-site/blob/bdf0f883/_site/api/1.2/jdbc/help-doc.html
--
diff --git a/_site/api/1.2/jdbc/help-doc.html b/_site/api/1.2/jdbc/help-doc.html
deleted file mode 100644
index eab00f6..000
--- a/_site/api/1.2/jdbc/help-doc.html
+++ /dev/null
@@ -1,224 +0,0 @@
-http://www.w3.org/TR/html4/loose.dtd;>
-
-
-
-
-
-API Help (Apache Drill JDBC Driver v. 1.2.0)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-Overview
-Package
-Class
-Use
-Tree
-Deprecated
-Index
-Help
-
-Apache Drill JDBC Driver v. 1.2.0
-
-
-
-Prev
-Next
-
-
-Frames
-No Frames
-
-
-All Classes
-
-
-
-
-
-
-
-
-
-
-How This API Document Is Organized
-This API (Application Programming Interface) document 
has pages corresponding to the items in the navigation bar, described as 
follows.
-
-
-
-
-Overview
-The Overview page is the front page of 
this API document and provides a list of all packages with a summary for each.  
This page can also contain an overall description of the set of packages.
-
-
-Package
-Each package has a page that contains a list of its classes and interfaces, 
with a summary for each. This page can contain six categories:
-
-Interfaces (italic)
-Classes

[19/51] [abbrv] [partial] drill-site git commit: Revert "Website update"

2017-02-24 Thread adi
http://git-wip-us.apache.org/repos/asf/drill-site/blob/bdf0f883/_site/docs/apache-drill-0-7-0-release-notes/index.html
--
diff --git a/_site/docs/apache-drill-0-7-0-release-notes/index.html 
b/_site/docs/apache-drill-0-7-0-release-notes/index.html
deleted file mode 100644
index c3287ae..000
--- a/_site/docs/apache-drill-0-7-0-release-notes/index.html
+++ /dev/null
@@ -1,1106 +0,0 @@
-
-
-
-
-
-
-
-
-
-Apache Drill 0.7.0 Release Notes - Apache Drill
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-  
-
-
-
-
-  
-  
-  
-  
-  
-  Menu
-  
-  
-  
-Documentation
-
-  
-Getting Started
-  
-Architecture
-  
-Tutorials
-  
-Install Drill
-  
-Configure Drill
-  
-Connect a Data 
Source
-  
-ODBC/JDBC 
Interfaces
-  
-Query Data
-  
-Performance 
Tuning
-  
-Log and Debug
-  
-SQL Reference
-  
-Data Sources 
and File Formats
-  
-Develop Custom 
Functions
-  
-Troubleshooting
-  
-Developer 
Information
-  
-Release Notes
-  
-Sample Datasets
-  
-Project Bylaws
-  
-
-  
-  
-Community
-
-  Team
-  Mailing Lists
-  Community Resources
-
-  
-  FAQ
-  Blog
-  https://twitter.com/apachedrill; 
title="apachedrill on twitter" target="_blank"> 
-  
-
-  
-  
-
-  
-
-  
-  
-
-   Download
-
-  
-
-
-
-
-
-
-  
-
-
-
-
-
-  
-
-  
-  
-
-  Getting 
Started
-  
-  
-
-  Drill Introduction
-
-  
-
-  Why Drill
-
-  
-  
-
-  
-
-  Architecture
-  
-  
-
-  Architecture Introduction
-
-  
-
-  Drill Query Execution
-
-  
-
-  Core Modules
-
-  
-
-  Performance
-
-  
-  
-
-  
-
-  Tutorials
-  
-  
-
-  Tutorials Introduction
-
-  
-
-  Drill in 10 Minutes
-
-  
-
-  Analyzing the Yelp 
Academic Dataset
-
-  
-
-  Learn 
Drill with the MapR Sandbox
-  
-  
-About the MapR Sandbox
-  
-Installing the Apache 
Drill Sandbox
-  
-Getting to Know the Drill 
Sandbox
-  
-Lesson 1: Learn about the 
Data Set
-  
-Lesson 2: Run Queries 
with ANSI SQL
-  
-Lesson 3: Run 
Queries on Complex Data Types
-  
-Summary
-  
-
-
-  
-
-  Analyzing Highly Dynamic 
Datasets
-
-  
-
-  Analyzing Social Media
-
-  
-
-  Analyzing Data Using 
Window Functions
-
-  
-  
-
-  
-
-  Install 
Drill
-  
-  
-
-  Install Drill 
Introduction
-
-  
-
-  Installing 
Drill in Embedded Mode
-  
-  
-Embedded Mode 
Prerequisites
-  
-Installing Drill on 
Linux and Mac OS X
-  
-Starting Drill on 
Linux and Mac OS X
-  
-Installing Drill on 
Windows
-  
-Starting Drill on Windows
-  
-
-
-  
-
-  Installing 
Drill in Distributed Mode
-  
-  
-Distributed Mode 
Prerequisites
-  
-Installing Drill on the 
Cluster
-  
-Starting Drill in 
Distributed Mode
-  
-
-
-  
-
-  Starting the Web Console
-
-  
-  
-
-  
-
-  Configure 
Drill
-  
-  
-
-  Configure Drill 
Introduction
-
-  
-
-  Configuring Drill Memory
-
-  
-
-  Configuring a Multitenant Cluster
-  
-  
-Configuring 
a Multitenant Cluster Introduction
-  
-Configuring Multitenant 
Resources
-  
-Configuring 
Resources for a Shared 

[22/51] [abbrv] [partial] drill-site git commit: Revert "Website update"

2017-02-24 Thread adi
http://git-wip-us.apache.org/repos/asf/drill-site/blob/bdf0f883/_site/docs/apache-drill-0-4-0-release-notes/index.html
--
diff --git a/_site/docs/apache-drill-0-4-0-release-notes/index.html 
b/_site/docs/apache-drill-0-4-0-release-notes/index.html
deleted file mode 100644
index 65628e2..000
--- a/_site/docs/apache-drill-0-4-0-release-notes/index.html
+++ /dev/null
@@ -1,1101 +0,0 @@
-
-
-
-
-
-
-
-
-
-Apache Drill 0.4.0 Release Notes - Apache Drill
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-  
-
-
-
-
-  
-  
-  
-  
-  
-  Menu
-  
-  
-  
-Documentation
-
-  
-Getting Started
-  
-Architecture
-  
-Tutorials
-  
-Install Drill
-  
-Configure Drill
-  
-Connect a Data 
Source
-  
-ODBC/JDBC 
Interfaces
-  
-Query Data
-  
-Performance 
Tuning
-  
-Log and Debug
-  
-SQL Reference
-  
-Data Sources 
and File Formats
-  
-Develop Custom 
Functions
-  
-Troubleshooting
-  
-Developer 
Information
-  
-Release Notes
-  
-Sample Datasets
-  
-Project Bylaws
-  
-
-  
-  
-Community
-
-  Team
-  Mailing Lists
-  Community Resources
-
-  
-  FAQ
-  Blog
-  https://twitter.com/apachedrill; 
title="apachedrill on twitter" target="_blank"> 
-  
-
-  
-  
-
-  
-
-  
-  
-
-   Download
-
-  
-
-
-
-
-
-
-  
-
-
-
-
-
-  
-
-  
-  
-
-  Getting 
Started
-  
-  
-
-  Drill Introduction
-
-  
-
-  Why Drill
-
-  
-  
-
-  
-
-  Architecture
-  
-  
-
-  Architecture Introduction
-
-  
-
-  Drill Query Execution
-
-  
-
-  Core Modules
-
-  
-
-  Performance
-
-  
-  
-
-  
-
-  Tutorials
-  
-  
-
-  Tutorials Introduction
-
-  
-
-  Drill in 10 Minutes
-
-  
-
-  Analyzing the Yelp 
Academic Dataset
-
-  
-
-  Learn 
Drill with the MapR Sandbox
-  
-  
-About the MapR Sandbox
-  
-Installing the Apache 
Drill Sandbox
-  
-Getting to Know the Drill 
Sandbox
-  
-Lesson 1: Learn about the 
Data Set
-  
-Lesson 2: Run Queries 
with ANSI SQL
-  
-Lesson 3: Run 
Queries on Complex Data Types
-  
-Summary
-  
-
-
-  
-
-  Analyzing Highly Dynamic 
Datasets
-
-  
-
-  Analyzing Social Media
-
-  
-
-  Analyzing Data Using 
Window Functions
-
-  
-  
-
-  
-
-  Install 
Drill
-  
-  
-
-  Install Drill 
Introduction
-
-  
-
-  Installing 
Drill in Embedded Mode
-  
-  
-Embedded Mode 
Prerequisites
-  
-Installing Drill on 
Linux and Mac OS X
-  
-Starting Drill on 
Linux and Mac OS X
-  
-Installing Drill on 
Windows
-  
-Starting Drill on Windows
-  
-
-
-  
-
-  Installing 
Drill in Distributed Mode
-  
-  
-Distributed Mode 
Prerequisites
-  
-Installing Drill on the 
Cluster
-  
-Starting Drill in 
Distributed Mode
-  
-
-
-  
-
-  Starting the Web Console
-
-  
-  
-
-  
-
-  Configure 
Drill
-  
-  
-
-  Configure Drill 
Introduction
-
-  
-
-  Configuring Drill Memory
-
-  
-
-  Configuring a Multitenant Cluster
-  
-  
-Configuring 
a Multitenant Cluster Introduction
-  
-Configuring Multitenant 
Resources
-  
-Configuring 
Resources for a Shared 

[43/51] [abbrv] [partial] drill-site git commit: Revert "Website update"

2017-02-24 Thread adi
http://git-wip-us.apache.org/repos/asf/drill-site/blob/bdf0f883/_site/api/1.2/jdbc/org/apache/drill/jdbc/InvalidCursorStateSqlException.html
--
diff --git 
a/_site/api/1.2/jdbc/org/apache/drill/jdbc/InvalidCursorStateSqlException.html 
b/_site/api/1.2/jdbc/org/apache/drill/jdbc/InvalidCursorStateSqlException.html
deleted file mode 100644
index 64d79e4..000
--- 
a/_site/api/1.2/jdbc/org/apache/drill/jdbc/InvalidCursorStateSqlException.html
+++ /dev/null
@@ -1,409 +0,0 @@
-http://www.w3.org/TR/html4/loose.dtd;>
-
-
-
-
-
-InvalidCursorStateSqlException (Apache Drill JDBC Driver v. 
1.2.0)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-Overview
-Package
-Class
-Use
-Tree
-Deprecated
-Index
-Help
-
-Apache Drill JDBC Driver v. 1.2.0
-
-
-
-Prev 
Class
-Next 
Class
-
-
-Frames
-No 
Frames
-
-
-All Classes
-
-
-
-
-
-
-
-Summary:
-Nested|
-Field|
-Constr|
-Method
-
-
-Detail:
-Field|
-Constr|
-Method
-
-
-
-
-
-
-
-
-org.apache.drill.jdbc
-Class 
InvalidCursorStateSqlException
-
-
-
-http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true;
 title="class or interface in java.lang">java.lang.Object
-
-
-http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true;
 title="class or interface in java.lang">java.lang.Throwable
-
-
-http://docs.oracle.com/javase/7/docs/api/java/lang/Exception.html?is-external=true;
 title="class or interface in java.lang">java.lang.Exception
-
-
-http://docs.oracle.com/javase/7/docs/api/java/sql/SQLException.html?is-external=true;
 title="class or interface in java.sql">java.sql.SQLException
-
-
-http://docs.oracle.com/javase/7/docs/api/java/sql/SQLNonTransientException.html?is-external=true;
 title="class or interface in 
java.sql">java.sql.SQLNonTransientException
-
-
-org.apache.drill.jdbc.JdbcApiSqlException
-
-
-org.apache.drill.jdbc.InvalidCursorStateSqlException
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-All Implemented Interfaces:
-http://docs.oracle.com/javase/7/docs/api/java/io/Serializable.html?is-external=true;
 title="class or interface in java.io">Serializable, http://docs.oracle.com/javase/7/docs/api/java/lang/Iterable.html?is-external=true;
 title="class or interface in java.lang">Iterablehttp://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true;
 title="class or interface in java.lang">Throwable
-
-
-
-public class InvalidCursorStateSqlException
-extends JdbcApiSqlException
-SQLException for invalid-cursor-state conditions, e.g., 
calling a column
- accessor method before calling http://docs.oracle.com/javase/7/docs/api/java/sql/ResultSet.html?is-external=true#next()"
 title="class or interface in java.sql">ResultSet.next() or 
after
- http://docs.oracle.com/javase/7/docs/api/java/sql/ResultSet.html?is-external=true#next()"
 title="class or interface in java.sql">ResultSet.next() 
returns false.
-See Also:Serialized
 Form
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-Constructors
-
-Constructor and Description
-
-
-InvalidCursorStateSqlException()
-See JdbcApiSqlException.JdbcApiSqlException().
-
-
-
-InvalidCursorStateSqlException(http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true;
 title="class or interface in java.lang">Stringreason)
-See JdbcApiSqlException.JdbcApiSqlException(String).
-
-
-
-InvalidCursorStateSqlException(http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true;
 title="class or interface in java.lang">Stringreason,
-  http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true;
 title="class or interface in java.lang">StringSQLState)
-See JdbcApiSqlException.JdbcApiSqlException(String,
 String).
-
-
-
-InvalidCursorStateSqlException(http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true;
 title="class or interface in java.lang">Stringreason,
-  http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true;
 title="class or interface in java.lang">StringSQLState,
-  intvendorCode)
-See JdbcApiSqlException.JdbcApiSqlException(String,
 String, int).
-
-
-
-InvalidCursorStateSqlException(http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true;
 title="class or interface in java.lang">Stringreason,
-  http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true;
 title="class or interface in java.lang">StringsqlState,
-

[12/51] [abbrv] [partial] drill-site git commit: Revert "Website update"

2017-02-24 Thread adi
http://git-wip-us.apache.org/repos/asf/drill-site/blob/bdf0f883/_site/docs/apache-drill-contribution-guidelines/index.html
--
diff --git a/_site/docs/apache-drill-contribution-guidelines/index.html 
b/_site/docs/apache-drill-contribution-guidelines/index.html
deleted file mode 100644
index eebfe4a..000
--- a/_site/docs/apache-drill-contribution-guidelines/index.html
+++ /dev/null
@@ -1,1297 +0,0 @@
-
-
-
-
-
-
-
-
-
-Apache Drill Contribution Guidelines - Apache Drill
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-  
-
-
-
-
-  
-  
-  
-  
-  
-  Menu
-  
-  
-  
-Documentation
-
-  
-Getting Started
-  
-Architecture
-  
-Tutorials
-  
-Install Drill
-  
-Configure Drill
-  
-Connect a Data 
Source
-  
-ODBC/JDBC 
Interfaces
-  
-Query Data
-  
-Performance 
Tuning
-  
-Log and Debug
-  
-SQL Reference
-  
-Data Sources 
and File Formats
-  
-Develop Custom 
Functions
-  
-Troubleshooting
-  
-Developer 
Information
-  
-Release Notes
-  
-Sample Datasets
-  
-Project Bylaws
-  
-
-  
-  
-Community
-
-  Team
-  Mailing Lists
-  Community Resources
-
-  
-  FAQ
-  Blog
-  https://twitter.com/apachedrill; 
title="apachedrill on twitter" target="_blank"> 
-  
-
-  
-  
-
-  
-
-  
-  
-
-   Download
-
-  
-
-
-
-
-
-
-  
-
-
-
-
-
-  
-
-  
-  
-
-  Getting 
Started
-  
-  
-
-  Drill Introduction
-
-  
-
-  Why Drill
-
-  
-  
-
-  
-
-  Architecture
-  
-  
-
-  Architecture Introduction
-
-  
-
-  Drill Query Execution
-
-  
-
-  Core Modules
-
-  
-
-  Performance
-
-  
-  
-
-  
-
-  Tutorials
-  
-  
-
-  Tutorials Introduction
-
-  
-
-  Drill in 10 Minutes
-
-  
-
-  Analyzing the Yelp 
Academic Dataset
-
-  
-
-  Learn 
Drill with the MapR Sandbox
-  
-  
-About the MapR Sandbox
-  
-Installing the Apache 
Drill Sandbox
-  
-Getting to Know the Drill 
Sandbox
-  
-Lesson 1: Learn about the 
Data Set
-  
-Lesson 2: Run Queries 
with ANSI SQL
-  
-Lesson 3: Run 
Queries on Complex Data Types
-  
-Summary
-  
-
-
-  
-
-  Analyzing Highly Dynamic 
Datasets
-
-  
-
-  Analyzing Social Media
-
-  
-
-  Analyzing Data Using 
Window Functions
-
-  
-  
-
-  
-
-  Install 
Drill
-  
-  
-
-  Install Drill 
Introduction
-
-  
-
-  Installing 
Drill in Embedded Mode
-  
-  
-Embedded Mode 
Prerequisites
-  
-Installing Drill on 
Linux and Mac OS X
-  
-Starting Drill on 
Linux and Mac OS X
-  
-Installing Drill on 
Windows
-  
-Starting Drill on Windows
-  
-
-
-  
-
-  Installing 
Drill in Distributed Mode
-  
-  
-Distributed Mode 
Prerequisites
-  
-Installing Drill on the 
Cluster
-  
-Starting Drill in 
Distributed Mode
-  
-
-
-  
-
-  Starting the Web Console
-
-  
-  
-
-  
-
-  Configure 
Drill
-  
-  
-
-  Configure Drill 
Introduction
-
-  
-
-  Configuring Drill Memory
-
-  
-
-  Configuring a Multitenant Cluster
-  
-  
-Configuring 
a Multitenant Cluster Introduction
-  
-Configuring Multitenant 
Resources
-  
-Configuring 

[29/51] [abbrv] [partial] drill-site git commit: Revert "Website update"

2017-02-24 Thread adi
http://git-wip-us.apache.org/repos/asf/drill-site/blob/bdf0f883/_site/docs/alter-session/index.html
--
diff --git a/_site/docs/alter-session/index.html 
b/_site/docs/alter-session/index.html
deleted file mode 100644
index e0134b5..000
--- a/_site/docs/alter-session/index.html
+++ /dev/null
@@ -1,1135 +0,0 @@
-
-
-
-
-
-
-
-
-
-ALTER SESSION - Apache Drill
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-  
-
-
-
-
-  
-  
-  
-  
-  
-  Menu
-  
-  
-  
-Documentation
-
-  
-Getting Started
-  
-Architecture
-  
-Tutorials
-  
-Install Drill
-  
-Configure Drill
-  
-Connect a Data 
Source
-  
-ODBC/JDBC 
Interfaces
-  
-Query Data
-  
-Performance 
Tuning
-  
-Log and Debug
-  
-SQL Reference
-  
-Data Sources 
and File Formats
-  
-Develop Custom 
Functions
-  
-Troubleshooting
-  
-Developer 
Information
-  
-Release Notes
-  
-Sample Datasets
-  
-Project Bylaws
-  
-
-  
-  
-Community
-
-  Team
-  Mailing Lists
-  Community Resources
-
-  
-  FAQ
-  Blog
-  https://twitter.com/apachedrill; 
title="apachedrill on twitter" target="_blank"> 
-  
-
-  
-  
-
-  
-
-  
-  
-
-   Download
-
-  
-
-
-
-
-
-
-  
-
-
-
-
-
-  
-
-  
-  
-
-  Getting 
Started
-  
-  
-
-  Drill Introduction
-
-  
-
-  Why Drill
-
-  
-  
-
-  
-
-  Architecture
-  
-  
-
-  Architecture Introduction
-
-  
-
-  Drill Query Execution
-
-  
-
-  Core Modules
-
-  
-
-  Performance
-
-  
-  
-
-  
-
-  Tutorials
-  
-  
-
-  Tutorials Introduction
-
-  
-
-  Drill in 10 Minutes
-
-  
-
-  Analyzing the Yelp 
Academic Dataset
-
-  
-
-  Learn 
Drill with the MapR Sandbox
-  
-  
-About the MapR Sandbox
-  
-Installing the Apache 
Drill Sandbox
-  
-Getting to Know the Drill 
Sandbox
-  
-Lesson 1: Learn about the 
Data Set
-  
-Lesson 2: Run Queries 
with ANSI SQL
-  
-Lesson 3: Run 
Queries on Complex Data Types
-  
-Summary
-  
-
-
-  
-
-  Analyzing Highly Dynamic 
Datasets
-
-  
-
-  Analyzing Social Media
-
-  
-
-  Analyzing Data Using 
Window Functions
-
-  
-  
-
-  
-
-  Install 
Drill
-  
-  
-
-  Install Drill 
Introduction
-
-  
-
-  Installing 
Drill in Embedded Mode
-  
-  
-Embedded Mode 
Prerequisites
-  
-Installing Drill on 
Linux and Mac OS X
-  
-Starting Drill on 
Linux and Mac OS X
-  
-Installing Drill on 
Windows
-  
-Starting Drill on Windows
-  
-
-
-  
-
-  Installing 
Drill in Distributed Mode
-  
-  
-Distributed Mode 
Prerequisites
-  
-Installing Drill on the 
Cluster
-  
-Starting Drill in 
Distributed Mode
-  
-
-
-  
-
-  Starting the Web Console
-
-  
-  
-
-  
-
-  Configure 
Drill
-  
-  
-
-  Configure Drill 
Introduction
-
-  
-
-  Configuring Drill Memory
-
-  
-
-  Configuring a Multitenant Cluster
-  
-  
-Configuring 
a Multitenant Cluster Introduction
-  
-Configuring Multitenant 
Resources
-  
-Configuring 
Resources for a Shared Drillbit
-  
-
-
-  
-
-  

[46/51] [abbrv] [partial] drill-site git commit: Revert "Website update"

2017-02-24 Thread adi
http://git-wip-us.apache.org/repos/asf/drill-site/blob/bdf0f883/_site/api/1.2/jdbc/org/apache/drill/jdbc/DrillPreparedStatement.html
--
diff --git 
a/_site/api/1.2/jdbc/org/apache/drill/jdbc/DrillPreparedStatement.html 
b/_site/api/1.2/jdbc/org/apache/drill/jdbc/DrillPreparedStatement.html
deleted file mode 100644
index ec324a8..000
--- a/_site/api/1.2/jdbc/org/apache/drill/jdbc/DrillPreparedStatement.html
+++ /dev/null
@@ -1,226 +0,0 @@
-http://www.w3.org/TR/html4/loose.dtd;>
-
-
-
-
-
-DrillPreparedStatement (Apache Drill JDBC Driver v. 1.2.0)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-Overview
-Package
-Class
-Use
-Tree
-Deprecated
-Index
-Help
-
-Apache Drill JDBC Driver v. 1.2.0
-
-
-
-Prev 
Class
-Next 
Class
-
-
-Frames
-No Frames
-
-
-All Classes
-
-
-
-
-
-
-
-Summary:
-Nested|
-Field|
-Constr|
-Method
-
-
-Detail:
-Field|
-Constr|
-Method
-
-
-
-
-
-
-
-
-org.apache.drill.jdbc
-Interface 
DrillPreparedStatement
-
-
-
-
-
-
-All Superinterfaces:
-http://docs.oracle.com/javase/7/docs/api/java/lang/AutoCloseable.html?is-external=true;
 title="class or interface in java.lang">AutoCloseable, http://docs.oracle.com/javase/7/docs/api/java/sql/PreparedStatement.html?is-external=true;
 title="class or interface in java.sql">PreparedStatement, http://docs.oracle.com/javase/7/docs/api/java/sql/Statement.html?is-external=true;
 title="class or interface in java.sql">Statement, http://docs.oracle.com/javase/7/docs/api/java/sql/Wrapper.html?is-external=true;
 title="class or interface in java.sql">Wrapper
-
-
-
-public interface DrillPreparedStatement
-extends http://docs.oracle.com/javase/7/docs/api/java/sql/PreparedStatement.html?is-external=true;
 title="class or interface in java.sql">PreparedStatement
-Drill-specific http://docs.oracle.com/javase/7/docs/api/java/sql/PreparedStatement.html?is-external=true;
 title="class or interface in java.sql">PreparedStatement.
-
- 
-   Drill:
-   Setting parameters is not supported; parameter-setting methods such as
-   http://docs.oracle.com/javase/7/docs/api/java/sql/PreparedStatement.html?is-external=true#setString(int,%20java.lang.String)"
 title="class or interface in java.sql">PreparedStatement.setString(int, 
String) throw
-   http://docs.oracle.com/javase/7/docs/api/java/sql/SQLFeatureNotSupportedException.html?is-external=true;
 title="class or interface in 
java.sql">SQLFeatureNotSupportedException.
- 
-See Also:http://docs.oracle.com/javase/7/docs/api/java/sql/Wrapper.html?is-external=true#unwrap(java.lang.Class)"
 title="class or interface in 
java.sql">Wrapper.unwrap(java.lang.ClassT)
-
-
-
-
-
-
-
-
-
-
-
-Field Summary
-
-
-
-
-Fields inherited from interfacejava.sql.http://docs.oracle.com/javase/7/docs/api/java/sql/Statement.html?is-external=true;
 title="class or interface in java.sql">Statement
-http://docs.oracle.com/javase/7/docs/api/java/sql/Statement.html?is-external=true#CLOSE_ALL_RESULTS;
 title="class or interface in java.sql">CLOSE_ALL_RESULTS, http://docs.oracle.com/javase/7/docs/api/java/sql/Statement.html?is-external=true#CLOSE_CURRENT_RESULT;
 title="class or interface in java.sql">CLOSE_CURRENT_RESULT, http://docs.oracle.com/javase/7/docs/api/java/sql/Statement.html?is-external=true#EXECUTE_FAILED;
 title="class or interface in java.sql">EXECUTE_FAILED, http://docs.oracle.com/javase/7/docs/api/java/sql/Statement.html?is-external=true#KEEP_CURRENT_RESULT;
 title="class or interface in java.sql">KEEP_CURRENT_RESULT, http://docs.oracle.com/javase/7/docs/api/java/sql/Statement.html?is-external=true#NO_GENERATED_KEYS;
 title="class or interface in java.sql">NO_GENERATED_KEYS, http://docs.oracle.com/javase/7/docs/api/java/sql/Statement.html?is-external=true#RETURN_GENERATED_KEYS;
 title="class 
 or interface in java.sql">RETURN_GENERATED_KEYS, http://docs.oracle.com/javase/7/docs/api/java/sql/Statement.html?is-external=true#SUCCESS_NO_INFO;
 title="class or interface in java.sql">SUCCESS_NO_INFO
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-Methods inherited from interfacejava.sql.http://docs.oracle.com/javase/7/docs/api/java/sql/PreparedStatement.html?is-external=true;
 title="class or interface in java.sql">PreparedStatement
-http://docs.oracle.com/javase/7/docs/api/java/sql/PreparedStatement.html?is-external=true#addBatch()"
 title="class or interface in java.sql">addBatch, http://docs.oracle.com/javase/7/docs/api/java/sql/PreparedStatement.html?is-external=true#clearParameters()"
 title="class or interface in java.sql">clearParameters, 

[14/51] [abbrv] [partial] drill-site git commit: Revert "Website update"

2017-02-24 Thread adi
http://git-wip-us.apache.org/repos/asf/drill-site/blob/bdf0f883/_site/docs/apache-drill-1-2-0-release-notes/index.html
--
diff --git a/_site/docs/apache-drill-1-2-0-release-notes/index.html 
b/_site/docs/apache-drill-1-2-0-release-notes/index.html
deleted file mode 100644
index 70c0bd4..000
--- a/_site/docs/apache-drill-1-2-0-release-notes/index.html
+++ /dev/null
@@ -1,1583 +0,0 @@
-
-
-
-
-
-
-
-
-
-Apache Drill 1.2.0 Release Notes - Apache Drill
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-  
-
-
-
-
-  
-  
-  
-  
-  
-  Menu
-  
-  
-  
-Documentation
-
-  
-Getting Started
-  
-Architecture
-  
-Tutorials
-  
-Install Drill
-  
-Configure Drill
-  
-Connect a Data 
Source
-  
-ODBC/JDBC 
Interfaces
-  
-Query Data
-  
-Performance 
Tuning
-  
-Log and Debug
-  
-SQL Reference
-  
-Data Sources 
and File Formats
-  
-Develop Custom 
Functions
-  
-Troubleshooting
-  
-Developer 
Information
-  
-Release Notes
-  
-Sample Datasets
-  
-Project Bylaws
-  
-
-  
-  
-Community
-
-  Team
-  Mailing Lists
-  Community Resources
-
-  
-  FAQ
-  Blog
-  https://twitter.com/apachedrill; 
title="apachedrill on twitter" target="_blank"> 
-  
-
-  
-  
-
-  
-
-  
-  
-
-   Download
-
-  
-
-
-
-
-
-
-  
-
-
-
-
-
-  
-
-  
-  
-
-  Getting 
Started
-  
-  
-
-  Drill Introduction
-
-  
-
-  Why Drill
-
-  
-  
-
-  
-
-  Architecture
-  
-  
-
-  Architecture Introduction
-
-  
-
-  Drill Query Execution
-
-  
-
-  Core Modules
-
-  
-
-  Performance
-
-  
-  
-
-  
-
-  Tutorials
-  
-  
-
-  Tutorials Introduction
-
-  
-
-  Drill in 10 Minutes
-
-  
-
-  Analyzing the Yelp 
Academic Dataset
-
-  
-
-  Learn 
Drill with the MapR Sandbox
-  
-  
-About the MapR Sandbox
-  
-Installing the Apache 
Drill Sandbox
-  
-Getting to Know the Drill 
Sandbox
-  
-Lesson 1: Learn about the 
Data Set
-  
-Lesson 2: Run Queries 
with ANSI SQL
-  
-Lesson 3: Run 
Queries on Complex Data Types
-  
-Summary
-  
-
-
-  
-
-  Analyzing Highly Dynamic 
Datasets
-
-  
-
-  Analyzing Social Media
-
-  
-
-  Analyzing Data Using 
Window Functions
-
-  
-  
-
-  
-
-  Install 
Drill
-  
-  
-
-  Install Drill 
Introduction
-
-  
-
-  Installing 
Drill in Embedded Mode
-  
-  
-Embedded Mode 
Prerequisites
-  
-Installing Drill on 
Linux and Mac OS X
-  
-Starting Drill on 
Linux and Mac OS X
-  
-Installing Drill on 
Windows
-  
-Starting Drill on Windows
-  
-
-
-  
-
-  Installing 
Drill in Distributed Mode
-  
-  
-Distributed Mode 
Prerequisites
-  
-Installing Drill on the 
Cluster
-  
-Starting Drill in 
Distributed Mode
-  
-
-
-  
-
-  Starting the Web Console
-
-  
-  
-
-  
-
-  Configure 
Drill
-  
-  
-
-  Configure Drill 
Introduction
-
-  
-
-  Configuring Drill Memory
-
-  
-
-  Configuring a Multitenant Cluster
-  
-  
-Configuring 
a Multitenant Cluster Introduction
-  
-Configuring Multitenant 
Resources
-  
-Configuring 
Resources for a Shared 

[26/51] [abbrv] [partial] drill-site git commit: Revert "Website update"

2017-02-24 Thread adi
http://git-wip-us.apache.org/repos/asf/drill-site/blob/bdf0f883/_site/docs/analyzing-highly-dynamic-datasets/index.html
--
diff --git a/_site/docs/analyzing-highly-dynamic-datasets/index.html 
b/_site/docs/analyzing-highly-dynamic-datasets/index.html
deleted file mode 100644
index 46da85c..000
--- a/_site/docs/analyzing-highly-dynamic-datasets/index.html
+++ /dev/null
@@ -1,1233 +0,0 @@
-
-
-
-
-
-
-
-
-
-Analyzing Highly Dynamic Datasets - Apache Drill
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-  
-
-
-
-
-  
-  
-  
-  
-  
-  Menu
-  
-  
-  
-Documentation
-
-  
-Getting Started
-  
-Architecture
-  
-Tutorials
-  
-Install Drill
-  
-Configure Drill
-  
-Connect a Data 
Source
-  
-ODBC/JDBC 
Interfaces
-  
-Query Data
-  
-Performance 
Tuning
-  
-Log and Debug
-  
-SQL Reference
-  
-Data Sources 
and File Formats
-  
-Develop Custom 
Functions
-  
-Troubleshooting
-  
-Developer 
Information
-  
-Release Notes
-  
-Sample Datasets
-  
-Project Bylaws
-  
-
-  
-  
-Community
-
-  Team
-  Mailing Lists
-  Community Resources
-
-  
-  FAQ
-  Blog
-  https://twitter.com/apachedrill; 
title="apachedrill on twitter" target="_blank"> 
-  
-
-  
-  
-
-  
-
-  
-  
-
-   Download
-
-  
-
-
-
-
-
-
-  
-
-
-
-
-
-  
-
-  
-  
-
-  Getting 
Started
-  
-  
-
-  Drill Introduction
-
-  
-
-  Why Drill
-
-  
-  
-
-  
-
-  Architecture
-  
-  
-
-  Architecture Introduction
-
-  
-
-  Drill Query Execution
-
-  
-
-  Core Modules
-
-  
-
-  Performance
-
-  
-  
-
-  
-
-  Tutorials
-  
-  
-
-  Tutorials Introduction
-
-  
-
-  Drill in 10 Minutes
-
-  
-
-  Analyzing the Yelp 
Academic Dataset
-
-  
-
-  Learn 
Drill with the MapR Sandbox
-  
-  
-About the MapR Sandbox
-  
-Installing the Apache 
Drill Sandbox
-  
-Getting to Know the Drill 
Sandbox
-  
-Lesson 1: Learn about the 
Data Set
-  
-Lesson 2: Run Queries 
with ANSI SQL
-  
-Lesson 3: Run 
Queries on Complex Data Types
-  
-Summary
-  
-
-
-  
-
-  Analyzing Highly Dynamic 
Datasets
-
-  
-
-  Analyzing Social Media
-
-  
-
-  Analyzing Data Using 
Window Functions
-
-  
-  
-
-  
-
-  Install 
Drill
-  
-  
-
-  Install Drill 
Introduction
-
-  
-
-  Installing 
Drill in Embedded Mode
-  
-  
-Embedded Mode 
Prerequisites
-  
-Installing Drill on 
Linux and Mac OS X
-  
-Starting Drill on 
Linux and Mac OS X
-  
-Installing Drill on 
Windows
-  
-Starting Drill on Windows
-  
-
-
-  
-
-  Installing 
Drill in Distributed Mode
-  
-  
-Distributed Mode 
Prerequisites
-  
-Installing Drill on the 
Cluster
-  
-Starting Drill in 
Distributed Mode
-  
-
-
-  
-
-  Starting the Web Console
-
-  
-  
-
-  
-
-  Configure 
Drill
-  
-  
-
-  Configure Drill 
Introduction
-
-  
-
-  Configuring Drill Memory
-
-  
-
-  Configuring a Multitenant Cluster
-  
-  
-Configuring 
a Multitenant Cluster Introduction
-  
-Configuring Multitenant 
Resources
-  
-Configuring 
Resources for a 

[35/51] [abbrv] [partial] drill-site git commit: Revert "Website update"

2017-02-24 Thread adi
http://git-wip-us.apache.org/repos/asf/drill-site/blob/bdf0f883/_site/data/index.html
--
diff --git a/_site/data/index.html b/_site/data/index.html
deleted file mode 100644
index 40f4c43..000
--- a/_site/data/index.html
+++ /dev/null
@@ -1,1508 +0,0 @@
-[
-{
-"url": "/docs/getting-started/",
-"title": "Getting Started",
-"parent": "",
-"relative_path": "_docs/010-getting-started.md"
-},
-{
-"url": "/docs/architecture/",
-"title": "Architecture",
-"parent": "",
-"relative_path": "_docs/020-architecture.md"
-},
-{
-"url": "/docs/tutorials/",
-"title": "Tutorials",
-"parent": "",
-"relative_path": "_docs/030-tutorials.md"
-},
-{
-"url": "/docs/install-drill/",
-"title": "Install Drill",
-"parent": "",
-"relative_path": "_docs/040-install-drill.md"
-},
-{
-"url": "/docs/configure-drill/",
-"title": "Configure Drill",
-"parent": "",
-"relative_path": "_docs/045-configure-drill.md"
-},
-{
-"url": "/docs/connect-a-data-source/",
-"title": "Connect a Data Source",
-"parent": "",
-"relative_path": "_docs/050-connect-a-data-source.md"
-},
-{
-"url": "/docs/odbc-jdbc-interfaces/",
-"title": "ODBC/JDBC Interfaces",
-"parent": "",
-"relative_path": "_docs/060-odbc-jdbc-interfaces.md"
-},
-{
-"url": "/docs/query-data/",
-"title": "Query Data",
-"parent": "",
-"relative_path": "_docs/070-query-data.md"
-},
-{
-"url": "/docs/performance-tuning/",
-"title": "Performance Tuning",
-"parent": "",
-"relative_path": "_docs/072-performance-tuning.md"
-},
-{
-"url": "/docs/log-and-debug/",
-"title": "Log and Debug",
-"parent": "",
-"relative_path": "_docs/073-log-and-debug.md"
-},
-{
-"url": "/docs/sql-reference/",
-"title": "SQL Reference",
-"parent": "",
-"relative_path": "_docs/080-sql-reference.md"
-},
-{
-"url": "/docs/data-sources-and-file-formats/",
-"title": "Data Sources and File Formats",
-"parent": "",
-"relative_path": "_docs/090-data-sources-and-file-formats.md"
-},
-{
-"url": "/docs/develop-custom-functions/",
-"title": "Develop Custom Functions",
-"parent": "",
-"relative_path": "_docs/100-develop-custom-functions.md"
-},
-{
-"url": "/docs/troubleshooting/",
-"title": "Troubleshooting",
-"parent": "",
-"relative_path": "_docs/110-troubleshooting.md"
-},
-{
-"url": "/docs/developer-information/",
-"title": "Developer Information",
-"parent": "",
-"relative_path": "_docs/120-developer-information.md"
-},
-{
-"url": "/docs/release-notes/",
-"title": "Release Notes",
-"parent": "",
-"relative_path": "_docs/130-rn.md"
-},
-{
-"url": "/docs/sample-datasets/",
-"title": "Sample Datasets",
-"parent": "",
-"relative_path": "_docs/140-sample-datasets.md"
-},
-{
-"url": "/docs/project-bylaws/",
-"title": "Project Bylaws",
-"parent": "",
-"relative_path": "_docs/170-bylaws.md"
-},
-{
-"url": "/docs/architecture-introduction/",
-"title": "Architecture Introduction",
-"parent": "Architecture",
-"relative_path": "_docs/architecture/010-architecture-introduction.md"
-},
-{
-"url": "/docs/drill-query-execution/",
-"title": "Drill Query Execution",
-"parent": "Architecture",
-"relative_path": "_docs/architecture/015-drill-query-execution.md"
-},
-{
-"url": "/docs/core-modules/",
-"title": "Core Modules",
-"parent": "Architecture",
-"relative_path": "_docs/architecture/020-core-modules.md"
-},
-{
-"url": "/docs/performance/",
-"title": "Performance",
-"parent": "Architecture",
-"relative_path": "_docs/architecture/030-performance.md"
-},
-{
-"url": "/docs/configure-drill-introduction/",
-"title": "Configure Drill Introduction",
-"parent": "Configure Drill",
-"relative_path": 
"_docs/configure-drill/010-configure-drill-introduction.md"
-},
-{
-"url": "/docs/configuring-drill-memory/",
-"title": "Configuring Drill Memory",
-"parent": "Configure Drill",
-"relative_path": "_docs/configure-drill/020-configuring-drill-memory.md"
-},
-{
-"url": "/docs/configuring-a-multitenant-cluster-introduction/",
-"title": "Configuring a Multitenant Cluster Introduction",
-"parent": "Configuring a Multitenant Cluster",
-"relative_path": 
"_docs/configure-drill/030-configuring-a-multitenant-cluster-introduction.md"
-},
-{
-"url": "/docs/configuring-a-multitenant-cluster/",
-"title": "Configuring a Multitenant Cluster",
-"parent": "Configure Drill",
-"relative_path": 
"_docs/configure-drill/040-configuring-a-multitenant-cluster.md"
-},
-{
-"url": "/docs/configuring-multitenant-resources/",
-"title": "Configuring Multitenant Resources",
-"parent": "Configuring a Multitenant Cluster",
-"relative_path": 

[27/51] [abbrv] [partial] drill-site git commit: Revert "Website update"

2017-02-24 Thread adi
http://git-wip-us.apache.org/repos/asf/drill-site/blob/bdf0f883/_site/docs/analyzing-data-using-window-functions/index.html
--
diff --git a/_site/docs/analyzing-data-using-window-functions/index.html 
b/_site/docs/analyzing-data-using-window-functions/index.html
deleted file mode 100644
index 37b34fd..000
--- a/_site/docs/analyzing-data-using-window-functions/index.html
+++ /dev/null
@@ -1,1300 +0,0 @@
-
-
-
-
-
-
-
-
-
-Analyzing Data Using Window Functions - Apache Drill
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-  
-
-
-
-
-  
-  
-  
-  
-  
-  Menu
-  
-  
-  
-Documentation
-
-  
-Getting Started
-  
-Architecture
-  
-Tutorials
-  
-Install Drill
-  
-Configure Drill
-  
-Connect a Data 
Source
-  
-ODBC/JDBC 
Interfaces
-  
-Query Data
-  
-Performance 
Tuning
-  
-Log and Debug
-  
-SQL Reference
-  
-Data Sources 
and File Formats
-  
-Develop Custom 
Functions
-  
-Troubleshooting
-  
-Developer 
Information
-  
-Release Notes
-  
-Sample Datasets
-  
-Project Bylaws
-  
-
-  
-  
-Community
-
-  Team
-  Mailing Lists
-  Community Resources
-
-  
-  FAQ
-  Blog
-  https://twitter.com/apachedrill; 
title="apachedrill on twitter" target="_blank"> 
-  
-
-  
-  
-
-  
-
-  
-  
-
-   Download
-
-  
-
-
-
-
-
-
-  
-
-
-
-
-
-  
-
-  
-  
-
-  Getting 
Started
-  
-  
-
-  Drill Introduction
-
-  
-
-  Why Drill
-
-  
-  
-
-  
-
-  Architecture
-  
-  
-
-  Architecture Introduction
-
-  
-
-  Drill Query Execution
-
-  
-
-  Core Modules
-
-  
-
-  Performance
-
-  
-  
-
-  
-
-  Tutorials
-  
-  
-
-  Tutorials Introduction
-
-  
-
-  Drill in 10 Minutes
-
-  
-
-  Analyzing the Yelp 
Academic Dataset
-
-  
-
-  Learn 
Drill with the MapR Sandbox
-  
-  
-About the MapR Sandbox
-  
-Installing the Apache 
Drill Sandbox
-  
-Getting to Know the Drill 
Sandbox
-  
-Lesson 1: Learn about the 
Data Set
-  
-Lesson 2: Run Queries 
with ANSI SQL
-  
-Lesson 3: Run 
Queries on Complex Data Types
-  
-Summary
-  
-
-
-  
-
-  Analyzing Highly Dynamic 
Datasets
-
-  
-
-  Analyzing Social Media
-
-  
-
-  Analyzing Data Using 
Window Functions
-
-  
-  
-
-  
-
-  Install 
Drill
-  
-  
-
-  Install Drill 
Introduction
-
-  
-
-  Installing 
Drill in Embedded Mode
-  
-  
-Embedded Mode 
Prerequisites
-  
-Installing Drill on 
Linux and Mac OS X
-  
-Starting Drill on 
Linux and Mac OS X
-  
-Installing Drill on 
Windows
-  
-Starting Drill on Windows
-  
-
-
-  
-
-  Installing 
Drill in Distributed Mode
-  
-  
-Distributed Mode 
Prerequisites
-  
-Installing Drill on the 
Cluster
-  
-Starting Drill in 
Distributed Mode
-  
-
-
-  
-
-  Starting the Web Console
-
-  
-  
-
-  
-
-  Configure 
Drill
-  
-  
-
-  Configure Drill 
Introduction
-
-  
-
-  Configuring Drill Memory
-
-  
-
-  Configuring a Multitenant Cluster
-  
-  
-Configuring 
a Multitenant Cluster Introduction
-  
-Configuring Multitenant 
Resources
-  
-Configuring 

[20/51] [abbrv] [partial] drill-site git commit: Revert "Website update"

2017-02-24 Thread adi
http://git-wip-us.apache.org/repos/asf/drill-site/blob/bdf0f883/_site/docs/apache-drill-0-6-0-release-notes/index.html
--
diff --git a/_site/docs/apache-drill-0-6-0-release-notes/index.html 
b/_site/docs/apache-drill-0-6-0-release-notes/index.html
deleted file mode 100644
index 2f007b5..000
--- a/_site/docs/apache-drill-0-6-0-release-notes/index.html
+++ /dev/null
@@ -1,1092 +0,0 @@
-
-
-
-
-
-
-
-
-
-Apache Drill 0.6.0 Release Notes - Apache Drill
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-  
-
-
-
-
-  
-  
-  
-  
-  
-  Menu
-  
-  
-  
-Documentation
-
-  
-Getting Started
-  
-Architecture
-  
-Tutorials
-  
-Install Drill
-  
-Configure Drill
-  
-Connect a Data 
Source
-  
-ODBC/JDBC 
Interfaces
-  
-Query Data
-  
-Performance 
Tuning
-  
-Log and Debug
-  
-SQL Reference
-  
-Data Sources 
and File Formats
-  
-Develop Custom 
Functions
-  
-Troubleshooting
-  
-Developer 
Information
-  
-Release Notes
-  
-Sample Datasets
-  
-Project Bylaws
-  
-
-  
-  
-Community
-
-  Team
-  Mailing Lists
-  Community Resources
-
-  
-  FAQ
-  Blog
-  https://twitter.com/apachedrill; 
title="apachedrill on twitter" target="_blank"> 
-  
-
-  
-  
-
-  
-
-  
-  
-
-   Download
-
-  
-
-
-
-
-
-
-  
-
-
-
-
-
-  
-
-  
-  
-
-  Getting 
Started
-  
-  
-
-  Drill Introduction
-
-  
-
-  Why Drill
-
-  
-  
-
-  
-
-  Architecture
-  
-  
-
-  Architecture Introduction
-
-  
-
-  Drill Query Execution
-
-  
-
-  Core Modules
-
-  
-
-  Performance
-
-  
-  
-
-  
-
-  Tutorials
-  
-  
-
-  Tutorials Introduction
-
-  
-
-  Drill in 10 Minutes
-
-  
-
-  Analyzing the Yelp 
Academic Dataset
-
-  
-
-  Learn 
Drill with the MapR Sandbox
-  
-  
-About the MapR Sandbox
-  
-Installing the Apache 
Drill Sandbox
-  
-Getting to Know the Drill 
Sandbox
-  
-Lesson 1: Learn about the 
Data Set
-  
-Lesson 2: Run Queries 
with ANSI SQL
-  
-Lesson 3: Run 
Queries on Complex Data Types
-  
-Summary
-  
-
-
-  
-
-  Analyzing Highly Dynamic 
Datasets
-
-  
-
-  Analyzing Social Media
-
-  
-
-  Analyzing Data Using 
Window Functions
-
-  
-  
-
-  
-
-  Install 
Drill
-  
-  
-
-  Install Drill 
Introduction
-
-  
-
-  Installing 
Drill in Embedded Mode
-  
-  
-Embedded Mode 
Prerequisites
-  
-Installing Drill on 
Linux and Mac OS X
-  
-Starting Drill on 
Linux and Mac OS X
-  
-Installing Drill on 
Windows
-  
-Starting Drill on Windows
-  
-
-
-  
-
-  Installing 
Drill in Distributed Mode
-  
-  
-Distributed Mode 
Prerequisites
-  
-Installing Drill on the 
Cluster
-  
-Starting Drill in 
Distributed Mode
-  
-
-
-  
-
-  Starting the Web Console
-
-  
-  
-
-  
-
-  Configure 
Drill
-  
-  
-
-  Configure Drill 
Introduction
-
-  
-
-  Configuring Drill Memory
-
-  
-
-  Configuring a Multitenant Cluster
-  
-  
-Configuring 
a Multitenant Cluster Introduction
-  
-Configuring Multitenant 
Resources
-  
-Configuring 
Resources for a Shared 

[11/51] [abbrv] [partial] drill-site git commit: Revert "Website update"

2017-02-24 Thread adi
http://git-wip-us.apache.org/repos/asf/drill-site/blob/bdf0f883/_site/docs/apache-drill-contribution-ideas/index.html
--
diff --git a/_site/docs/apache-drill-contribution-ideas/index.html 
b/_site/docs/apache-drill-contribution-ideas/index.html
deleted file mode 100644
index 73ee905..000
--- a/_site/docs/apache-drill-contribution-ideas/index.html
+++ /dev/null
@@ -1,1248 +0,0 @@
-
-
-
-
-
-
-
-
-
-Apache Drill Contribution Ideas - Apache Drill
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-  
-
-
-
-
-  
-  
-  
-  
-  
-  Menu
-  
-  
-  
-Documentation
-
-  
-Getting Started
-  
-Architecture
-  
-Tutorials
-  
-Install Drill
-  
-Configure Drill
-  
-Connect a Data 
Source
-  
-ODBC/JDBC 
Interfaces
-  
-Query Data
-  
-Performance 
Tuning
-  
-Log and Debug
-  
-SQL Reference
-  
-Data Sources 
and File Formats
-  
-Develop Custom 
Functions
-  
-Troubleshooting
-  
-Developer 
Information
-  
-Release Notes
-  
-Sample Datasets
-  
-Project Bylaws
-  
-
-  
-  
-Community
-
-  Team
-  Mailing Lists
-  Community Resources
-
-  
-  FAQ
-  Blog
-  https://twitter.com/apachedrill; 
title="apachedrill on twitter" target="_blank"> 
-  
-
-  
-  
-
-  
-
-  
-  
-
-   Download
-
-  
-
-
-
-
-
-
-  
-
-
-
-
-
-  
-
-  
-  
-
-  Getting 
Started
-  
-  
-
-  Drill Introduction
-
-  
-
-  Why Drill
-
-  
-  
-
-  
-
-  Architecture
-  
-  
-
-  Architecture Introduction
-
-  
-
-  Drill Query Execution
-
-  
-
-  Core Modules
-
-  
-
-  Performance
-
-  
-  
-
-  
-
-  Tutorials
-  
-  
-
-  Tutorials Introduction
-
-  
-
-  Drill in 10 Minutes
-
-  
-
-  Analyzing the Yelp 
Academic Dataset
-
-  
-
-  Learn 
Drill with the MapR Sandbox
-  
-  
-About the MapR Sandbox
-  
-Installing the Apache 
Drill Sandbox
-  
-Getting to Know the Drill 
Sandbox
-  
-Lesson 1: Learn about the 
Data Set
-  
-Lesson 2: Run Queries 
with ANSI SQL
-  
-Lesson 3: Run 
Queries on Complex Data Types
-  
-Summary
-  
-
-
-  
-
-  Analyzing Highly Dynamic 
Datasets
-
-  
-
-  Analyzing Social Media
-
-  
-
-  Analyzing Data Using 
Window Functions
-
-  
-  
-
-  
-
-  Install 
Drill
-  
-  
-
-  Install Drill 
Introduction
-
-  
-
-  Installing 
Drill in Embedded Mode
-  
-  
-Embedded Mode 
Prerequisites
-  
-Installing Drill on 
Linux and Mac OS X
-  
-Starting Drill on 
Linux and Mac OS X
-  
-Installing Drill on 
Windows
-  
-Starting Drill on Windows
-  
-
-
-  
-
-  Installing 
Drill in Distributed Mode
-  
-  
-Distributed Mode 
Prerequisites
-  
-Installing Drill on the 
Cluster
-  
-Starting Drill in 
Distributed Mode
-  
-
-
-  
-
-  Starting the Web Console
-
-  
-  
-
-  
-
-  Configure 
Drill
-  
-  
-
-  Configure Drill 
Introduction
-
-  
-
-  Configuring Drill Memory
-
-  
-
-  Configuring a Multitenant Cluster
-  
-  
-Configuring 
a Multitenant Cluster Introduction
-  
-Configuring Multitenant 
Resources
-  
-Configuring 
Resources for a Shared 

[37/51] [abbrv] [partial] drill-site git commit: Revert "Website update"

2017-02-24 Thread adi
http://git-wip-us.apache.org/repos/asf/drill-site/blob/bdf0f883/_site/blog/2015/03/23/microstrategy-announces-drill-support/index.html
--
diff --git 
a/_site/blog/2015/03/23/microstrategy-announces-drill-support/index.html 
b/_site/blog/2015/03/23/microstrategy-announces-drill-support/index.html
deleted file mode 100644
index e294067..000
--- a/_site/blog/2015/03/23/microstrategy-announces-drill-support/index.html
+++ /dev/null
@@ -1,177 +0,0 @@
-
-
-
-
-
-
-
-
-
-MicroStrategy Announces Drill Support - Apache Drill
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-  
-
-
-
-
-  
-  
-  
-  
-  
-  Menu
-  
-  
-  
-Documentation
-
-  
-Getting Started
-  
-Architecture
-  
-Tutorials
-  
-Install Drill
-  
-Configure Drill
-  
-Connect a Data 
Source
-  
-ODBC/JDBC 
Interfaces
-  
-Query Data
-  
-Performance 
Tuning
-  
-Log and Debug
-  
-SQL Reference
-  
-Data Sources 
and File Formats
-  
-Develop Custom 
Functions
-  
-Troubleshooting
-  
-Developer 
Information
-  
-Release Notes
-  
-Sample Datasets
-  
-Project Bylaws
-  
-
-  
-  
-Community
-
-  Team
-  Mailing Lists
-  Community Resources
-
-  
-  FAQ
-  Blog
-  https://twitter.com/apachedrill; 
title="apachedrill on twitter" target="_blank"> 
-  
-
-  
-  
-
-  
-
-  
-  
-
-   Download
-
-  
-
-
-
-
-
-
-  
-
-  MicroStrategy Announces Drill Support
-
-
-
-  
-  
-  Author: Tomer Shiran (Founder, PMC Member and 
Committer, Apache Drill)
-
-Date: Mar 23, 2015
-
-  
-  
-
-  
-Today MicroStrategy  http://ir.microstrategy.com/releasedetail.cfm?ReleaseID=902795;>announced
 that it has certified its platform with Apache Drill. According to 
MicroStrategys CTO, Tim Lang, Drill reduces the time-to-value for 
MicroStrategy users, and enables them to leverage multi-structured data.
-
-Many early adopters of Drill have been interested in leveraging 
MicroStrategys powerful BI platform. With its first-class support for 
self-describing data and evolving structure, Drill enables MicroStrategy users 
to explore and analyze the data in Hadoop and NoSQL databases without the usual 
friction that comes with having to define and manage schemas.
-
-If you would like to learn more about this integration, http://info.microstrategy.com/accessing-multi-structured-data-sources;>sign
 up for MicroStrategys webinar next month, which includes a live demo 
of the integration with Drill.
-
-Happy Drilling!
-Tomer Shiran
-
-  
- 
-
-/* * * CONFIGURATION VARIABLES: EDIT BEFORE PASTING INTO YOUR WEBPAGE 
* * */
-var disqus_shortname = 'drill'; // required: replace example with your 
forum shortname
-
-/* * * DON'T EDIT BELOW THIS LINE * * */
-(function() {
-var dsq = document.createElement('script'); dsq.type = 
'text/javascript'; dsq.async = true;
-dsq.src = '//' + disqus_shortname + '.disqus.com/embed.js';
-(document.getElementsByTagName('head')[0] || 
document.getElementsByTagName('body')[0]).appendChild(dsq);
-})();
-
-Please enable JavaScript to view the http://disqus.com/?ref_noscript;>comments powered by 
Disqus.
-
-
-
-
-  
-  
-
-
-Copyright © 2012-2014 The Apache Software Foundation, licensed under the 
Apache License, Version 2.0.
-Apache and the Apache feather logo are trademarks of The Apache Software 
Foundation. Other names appearing on the site may be trademarks of their 
respective owners.
-
-
-
-  
-(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
-(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
-m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
-})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
-
-ga('create', 'UA-53379651-1', 'auto');
-ga('send', 'pageview');
-
-
-
-

http://git-wip-us.apache.org/repos/asf/drill-site/blob/bdf0f883/_site/blog/2015/03/31/drill-0.8-released/index.html
--
diff --git a/_site/blog/2015/03/31/drill-0.8-released/index.html 
b/_site/blog/2015/03/31/drill-0.8-released/index.html
deleted file mode 100644
index 278283f..000
--- a/_site/blog/2015/03/31/drill-0.8-released/index.html
+++ /dev/null
@@ -1,194 +0,0 @@
-
-
-
-
-
-
-
-
-
-Drill 0.8 Released - Apache Drill
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-  
-
-
-
-
-  
-  
-  
-  
-  
-  Menu
-  
-  
-  
-Documentation
-
-  
-Getting Started
-  
-Architecture
-  
-Tutorials
-  
-Install Drill
-  
-Configure Drill
-  
-Connect a 

[42/51] [abbrv] [partial] drill-site git commit: Revert "Website update"

2017-02-24 Thread adi
http://git-wip-us.apache.org/repos/asf/drill-site/blob/bdf0f883/_site/api/1.2/jdbc/org/apache/drill/jdbc/SQLConversionException.html
--
diff --git 
a/_site/api/1.2/jdbc/org/apache/drill/jdbc/SQLConversionException.html 
b/_site/api/1.2/jdbc/org/apache/drill/jdbc/SQLConversionException.html
deleted file mode 100644
index 7727ef7..000
--- a/_site/api/1.2/jdbc/org/apache/drill/jdbc/SQLConversionException.html
+++ /dev/null
@@ -1,240 +0,0 @@
-http://www.w3.org/TR/html4/loose.dtd;>
-
-
-
-
-
-SQLConversionException (Apache Drill JDBC Driver v. 1.2.0)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-Overview
-Package
-Class
-Use
-Tree
-Deprecated
-Index
-Help
-
-Apache Drill JDBC Driver v. 1.2.0
-
-
-
-Prev 
Class
-Next 
Class
-
-
-Frames
-No Frames
-
-
-All Classes
-
-
-
-
-
-
-
-Summary:
-Nested|
-Field|
-Constr|
-Method
-
-
-Detail:
-Field|
-Constr|
-Method
-
-
-
-
-
-
-
-
-org.apache.drill.jdbc
-Class 
SQLConversionException
-
-
-
-http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true;
 title="class or interface in java.lang">java.lang.Object
-
-
-http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true;
 title="class or interface in java.lang">java.lang.Throwable
-
-
-http://docs.oracle.com/javase/7/docs/api/java/lang/Exception.html?is-external=true;
 title="class or interface in java.lang">java.lang.Exception
-
-
-http://docs.oracle.com/javase/7/docs/api/java/sql/SQLException.html?is-external=true;
 title="class or interface in java.sql">java.sql.SQLException
-
-
-http://docs.oracle.com/javase/7/docs/api/java/sql/SQLNonTransientException.html?is-external=true;
 title="class or interface in 
java.sql">java.sql.SQLNonTransientException
-
-
-org.apache.drill.exec.vector.accessor.InvalidAccessException
-
-
-org.apache.drill.jdbc.SQLConversionException
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-All Implemented Interfaces:
-http://docs.oracle.com/javase/7/docs/api/java/io/Serializable.html?is-external=true;
 title="class or interface in java.io">Serializable, http://docs.oracle.com/javase/7/docs/api/java/lang/Iterable.html?is-external=true;
 title="class or interface in java.lang">Iterablehttp://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true;
 title="class or interface in java.lang">Throwable
-
-
-Direct Known Subclasses:
-SQLConversionOverflowException
-
-
-
-public class SQLConversionException
-extends org.apache.drill.exec.vector.accessor.InvalidAccessException
-See Also:Serialized
 Form
-
-
-
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-Methods inherited from classjava.sql.http://docs.oracle.com/javase/7/docs/api/java/sql/SQLException.html?is-external=true;
 title="class or interface in java.sql">SQLException
-http://docs.oracle.com/javase/7/docs/api/java/sql/SQLException.html?is-external=true#getErrorCode()"
 title="class or interface in java.sql">getErrorCode, http://docs.oracle.com/javase/7/docs/api/java/sql/SQLException.html?is-external=true#getNextException()"
 title="class or interface in java.sql">getNextException, http://docs.oracle.com/javase/7/docs/api/java/sql/SQLException.html?is-external=true#getSQLState()"
 title="class or interface in java.sql">getSQLState, http://docs.oracle.com/javase/7/docs/api/java/sql/SQLException.html?is-external=true#iterator()"
 title="class or interface in java.sql">iterator, http://docs.oracle.com/javase/7/docs/api/java/sql/SQLException.html?is-external=true#setNextException(java.sql.SQLException)"
 title="class or interface in java.sql">setNextException
-
-
-
-
-
-Methods inherited from classjava.lang.http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true;
 title="class or interface in java.lang">Throwable
-http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true#addSuppressed(java.lang.Throwable)"
 title="class or interface in java.lang">addSuppressed, http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true#fillInStackTrace()"
 title="class or interface in java.lang">fillInStackTrace, http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true#getCause()"
 title="class or interface in java.lang">getCause, http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true#getLocalizedMessage()"
 title="class or interface in java.lang">getLocalizedMessage, http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true#getMessage()"
 title="class or interface in java.lang">getMessage, 

[32/51] [abbrv] [partial] drill-site git commit: Revert "Website update"

2017-02-24 Thread adi
http://git-wip-us.apache.org/repos/asf/drill-site/blob/bdf0f883/_site/docs/adding-custom-functions-to-drill/index.html
--
diff --git a/_site/docs/adding-custom-functions-to-drill/index.html 
b/_site/docs/adding-custom-functions-to-drill/index.html
deleted file mode 100644
index 28096a3..000
--- a/_site/docs/adding-custom-functions-to-drill/index.html
+++ /dev/null
@@ -1,1086 +0,0 @@
-
-
-
-
-
-
-
-
-
-Adding Custom Functions to Drill - Apache Drill
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-  
-
-
-
-
-  
-  
-  
-  
-  
-  Menu
-  
-  
-  
-Documentation
-
-  
-Getting Started
-  
-Architecture
-  
-Tutorials
-  
-Install Drill
-  
-Configure Drill
-  
-Connect a Data 
Source
-  
-ODBC/JDBC 
Interfaces
-  
-Query Data
-  
-Performance 
Tuning
-  
-Log and Debug
-  
-SQL Reference
-  
-Data Sources 
and File Formats
-  
-Develop Custom 
Functions
-  
-Troubleshooting
-  
-Developer 
Information
-  
-Release Notes
-  
-Sample Datasets
-  
-Project Bylaws
-  
-
-  
-  
-Community
-
-  Team
-  Mailing Lists
-  Community Resources
-
-  
-  FAQ
-  Blog
-  https://twitter.com/apachedrill; 
title="apachedrill on twitter" target="_blank"> 
-  
-
-  
-  
-
-  
-
-  
-  
-
-   Download
-
-  
-
-
-
-
-
-
-  
-
-
-
-
-
-  
-
-  
-  
-
-  Getting 
Started
-  
-  
-
-  Drill Introduction
-
-  
-
-  Why Drill
-
-  
-  
-
-  
-
-  Architecture
-  
-  
-
-  Architecture Introduction
-
-  
-
-  Drill Query Execution
-
-  
-
-  Core Modules
-
-  
-
-  Performance
-
-  
-  
-
-  
-
-  Tutorials
-  
-  
-
-  Tutorials Introduction
-
-  
-
-  Drill in 10 Minutes
-
-  
-
-  Analyzing the Yelp 
Academic Dataset
-
-  
-
-  Learn 
Drill with the MapR Sandbox
-  
-  
-About the MapR Sandbox
-  
-Installing the Apache 
Drill Sandbox
-  
-Getting to Know the Drill 
Sandbox
-  
-Lesson 1: Learn about the 
Data Set
-  
-Lesson 2: Run Queries 
with ANSI SQL
-  
-Lesson 3: Run 
Queries on Complex Data Types
-  
-Summary
-  
-
-
-  
-
-  Analyzing Highly Dynamic 
Datasets
-
-  
-
-  Analyzing Social Media
-
-  
-
-  Analyzing Data Using 
Window Functions
-
-  
-  
-
-  
-
-  Install 
Drill
-  
-  
-
-  Install Drill 
Introduction
-
-  
-
-  Installing 
Drill in Embedded Mode
-  
-  
-Embedded Mode 
Prerequisites
-  
-Installing Drill on 
Linux and Mac OS X
-  
-Starting Drill on 
Linux and Mac OS X
-  
-Installing Drill on 
Windows
-  
-Starting Drill on Windows
-  
-
-
-  
-
-  Installing 
Drill in Distributed Mode
-  
-  
-Distributed Mode 
Prerequisites
-  
-Installing Drill on the 
Cluster
-  
-Starting Drill in 
Distributed Mode
-  
-
-
-  
-
-  Starting the Web Console
-
-  
-  
-
-  
-
-  Configure 
Drill
-  
-  
-
-  Configure Drill 
Introduction
-
-  
-
-  Configuring Drill Memory
-
-  
-
-  Configuring a Multitenant Cluster
-  
-  
-Configuring 
a Multitenant Cluster Introduction
-  
-Configuring Multitenant 
Resources
-  
-Configuring 
Resources for a Shared 

[48/51] [abbrv] [partial] drill-site git commit: Revert "Website update"

2017-02-24 Thread adi
http://git-wip-us.apache.org/repos/asf/drill-site/blob/bdf0f883/_site/api/1.2/jdbc/org/apache/drill/jdbc/DrillConnectionConfig.html
--
diff --git 
a/_site/api/1.2/jdbc/org/apache/drill/jdbc/DrillConnectionConfig.html 
b/_site/api/1.2/jdbc/org/apache/drill/jdbc/DrillConnectionConfig.html
deleted file mode 100644
index ba7c261..000
--- a/_site/api/1.2/jdbc/org/apache/drill/jdbc/DrillConnectionConfig.html
+++ /dev/null
@@ -1,354 +0,0 @@
-http://www.w3.org/TR/html4/loose.dtd;>
-
-
-
-
-
-DrillConnectionConfig (Apache Drill JDBC Driver v. 1.2.0)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-Overview
-Package
-Class
-Use
-Tree
-Deprecated
-Index
-Help
-
-Apache Drill JDBC Driver v. 1.2.0
-
-
-
-Prev 
Class
-Next 
Class
-
-
-Frames
-No Frames
-
-
-All Classes
-
-
-
-
-
-
-
-Summary:
-Nested|
-Field|
-Constr|
-Method
-
-
-Detail:
-Field|
-Constr|
-Method
-
-
-
-
-
-
-
-
-org.apache.drill.jdbc
-Class 
DrillConnectionConfig
-
-
-
-http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true;
 title="class or interface in java.lang">java.lang.Object
-
-
-net.hydromatic.avatica.ConnectionConfigImpl
-
-
-org.apache.drill.jdbc.DrillConnectionConfig
-
-
-
-
-
-
-
-
-
-All Implemented Interfaces:
-net.hydromatic.avatica.ConnectionConfig
-
-
-
-public class DrillConnectionConfig
-extends net.hydromatic.avatica.ConnectionConfigImpl
-
-NOTE:  DrillConnectionConfig will be changed from a class to an interface.
-  
-  
-In the meantime, clients must not use the fact that
-DrillConnectionConfig currently extends
-ConnectionConfigImpl.  They must call only
-methods declared directly in DrillConnectionConfig (or inherited Object).
-  
-
-
-
-
-
-
-
-
-
-
-
-Nested Class Summary
-
-
-
-
-Nested classes/interfaces inherited from 
classnet.hydromatic.avatica.ConnectionConfigImpl
-net.hydromatic.avatica.ConnectionConfigImpl.ConverterT, 
net.hydromatic.avatica.ConnectionConfigImpl.PropEnv
-
-
-
-
-
-
-
-
-Field Summary
-
-
-
-
-Fields inherited from 
classnet.hydromatic.avatica.ConnectionConfigImpl
-BOOLEAN_CONVERTER, IDENTITY_CONVERTER, properties
-
-
-
-
-
-
-
-
-Constructor Summary
-
-Constructors
-
-Constructor and Description
-
-
-DrillConnectionConfig(http://docs.oracle.com/javase/7/docs/api/java/util/Properties.html?is-external=true;
 title="class or interface in 
java.util">Propertiesp)
-
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-http://docs.oracle.com/javase/7/docs/api/java/util/TimeZone.html?is-external=true;
 title="class or interface in java.util">TimeZone
-getTimeZone()
-
-
-http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true;
 title="class or interface in java.lang">String
-getZookeeperConnectionString()
-
-
-boolean
-isDirect()
-
-
-boolean
-isLocal()
-
-
-
-
-
-
-Methods inherited from 
classnet.hydromatic.avatica.ConnectionConfigImpl
-enumConverter, parse, schema, timeZone
-
-
-
-
-
-Methods inherited from classjava.lang.http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true;
 title="class or interface in java.lang">Object
-http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#clone()"
 title="class or interface in java.lang">clone, http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#equals(java.lang.Object)"
 title="class or interface in java.lang">equals, http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#finalize()"
 title="class or interface in java.lang">finalize, http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#getClass()"
 title="class or interface in java.lang">getClass, http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#hashCode()"
 title="class or interface in java.lang">hashCode, http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#notify()"
 title="class or interface in java.lang">notify, http://docs.oracle.com/javase/7/docs/api/java/lang
 /Object.html?is-external=true#notifyAll()" title="class or interface in 
java.lang">notifyAll, http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#toString()"
 title="class or interface in java.lang">toString, http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#wait()"
 title="class or interface in java.lang">wait, http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#wait(long)"
 title="class or interface in 

[40/51] [abbrv] [partial] drill-site git commit: Revert "Website update"

2017-02-24 Thread adi
http://git-wip-us.apache.org/repos/asf/drill-site/blob/bdf0f883/_site/api/1.2/jdbc/org/apache/drill/jdbc/package-tree.html
--
diff --git a/_site/api/1.2/jdbc/org/apache/drill/jdbc/package-tree.html 
b/_site/api/1.2/jdbc/org/apache/drill/jdbc/package-tree.html
deleted file mode 100644
index 62f6427..000
--- a/_site/api/1.2/jdbc/org/apache/drill/jdbc/package-tree.html
+++ /dev/null
@@ -1,228 +0,0 @@
-http://www.w3.org/TR/html4/loose.dtd;>
-
-
-
-
-
-org.apache.drill.jdbc Class Hierarchy (Apache Drill JDBC Driver v. 
1.2.0)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-Overview
-Package
-Class
-Use
-Tree
-Deprecated
-Index
-Help
-
-Apache Drill JDBC Driver v. 1.2.0
-
-
-
-Prev
-Next
-
-
-Frames
-No Frames
-
-
-All Classes
-
-
-
-
-
-
-
-
-
-
-Hierarchy For Package org.apache.drill.jdbc
-Package Hierarchies:
-
-All Packages
-
-
-
-Class Hierarchy
-
-java.lang.http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true;
 title="class or interface in java.lang">Object
-
-net.hydromatic.avatica.ConnectionConfigImpl (implements 
net.hydromatic.avatica.ConnectionConfig)
-
-org.apache.drill.jdbc.DrillConnectionConfig
-
-
-org.apache.drill.jdbc.Driver (implements 
java.sql.http://docs.oracle.com/javase/7/docs/api/java/sql/Driver.html?is-external=true;
 title="class or interface in java.sql">Driver)
-java.lang.http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true;
 title="class or interface in java.lang">Throwable (implements java.io.http://docs.oracle.com/javase/7/docs/api/java/io/Serializable.html?is-external=true;
 title="class or interface in java.io">Serializable)
-
-java.lang.http://docs.oracle.com/javase/7/docs/api/java/lang/Exception.html?is-external=true;
 title="class or interface in java.lang">Exception
-
-java.sql.http://docs.oracle.com/javase/7/docs/api/java/sql/SQLException.html?is-external=true;
 title="class or interface in java.sql">SQLException (implements java.lang.http://docs.oracle.com/javase/7/docs/api/java/lang/Iterable.html?is-external=true;
 title="class or interface in java.lang">IterableT)
-
-java.sql.http://docs.oracle.com/javase/7/docs/api/java/sql/SQLNonTransientException.html?is-external=true;
 title="class or interface in java.sql">SQLNonTransientException
-
-org.apache.drill.jdbc.ExecutionCanceledSqlException
-org.apache.drill.exec.vector.accessor.InvalidAccessException
-
-org.apache.drill.jdbc.SQLConversionException
-
-org.apache.drill.jdbc.SQLConversionOverflowException
-
-
-
-
-org.apache.drill.jdbc.JdbcApiSqlException
-
-org.apache.drill.jdbc.AlreadyClosedSqlException
-org.apache.drill.jdbc.InvalidCursorStateSqlException
-org.apache.drill.jdbc.InvalidParameterSqlException
-
-
-
-
-org.apache.drill.jdbc.SqlTimeoutException
-
-
-
-
-
-
-
-
-
-Interface Hierarchy
-
-java.lang.http://docs.oracle.com/javase/7/docs/api/java/lang/AutoCloseable.html?is-external=true;
 title="class or interface in java.lang">AutoCloseable
-
-java.sql.http://docs.oracle.com/javase/7/docs/api/java/sql/Connection.html?is-external=true;
 title="class or interface in java.sql">Connection (also extends java.sql.http://docs.oracle.com/javase/7/docs/api/java/sql/Wrapper.html?is-external=true;
 title="class or interface in java.sql">Wrapper)
-
-org.apache.drill.jdbc.DrillConnection
-
-
-java.sql.http://docs.oracle.com/javase/7/docs/api/java/sql/ResultSet.html?is-external=true;
 title="class or interface in java.sql">ResultSet (also extends java.sql.http://docs.oracle.com/javase/7/docs/api/java/sql/Wrapper.html?is-external=true;
 title="class or interface in java.sql">Wrapper)
-
-org.apache.drill.jdbc.DrillResultSet
-
-
-java.sql.http://docs.oracle.com/javase/7/docs/api/java/sql/Statement.html?is-external=true;
 title="class or interface in java.sql">Statement (also extends java.sql.http://docs.oracle.com/javase/7/docs/api/java/sql/Wrapper.html?is-external=true;
 title="class or interface in java.sql">Wrapper)
-
-org.apache.drill.jdbc.DrillStatement
-java.sql.http://docs.oracle.com/javase/7/docs/api/java/sql/PreparedStatement.html?is-external=true;
 title="class or interface in java.sql">PreparedStatement
-
-org.apache.drill.jdbc.DrillPreparedStatement
-
-
-
-
-
-
-org.apache.drill.jdbc.SchemaChangeListener
-java.sql.http://docs.oracle.com/javase/7/docs/api/java/sql/Wrapper.html?is-external=true;
 title="class or interface in java.sql">Wrapper
-
-java.sql.http://docs.oracle.com/javase/7/docs/api/java/sql/Connection.html?is-external=true;
 title="class or interface in 

[49/51] [abbrv] [partial] drill-site git commit: Revert "Website update"

2017-02-24 Thread adi
http://git-wip-us.apache.org/repos/asf/drill-site/blob/bdf0f883/_site/api/1.2/jdbc/index.html
--
diff --git a/_site/api/1.2/jdbc/index.html b/_site/api/1.2/jdbc/index.html
deleted file mode 100644
index 52b9781..000
--- a/_site/api/1.2/jdbc/index.html
+++ /dev/null
@@ -1,75 +0,0 @@
-http://www.w3.org/TR/html4/frameset.dtd;>
-
-
-
-
-
-Apache Drill JDBC Driver v. 1.2.0
-
-targetPage = "" + window.location.search;
-if (targetPage != "" && targetPage != "undefined")
-targetPage = targetPage.substring(1);
-if (targetPage.indexOf(":") != -1 || (targetPage != "" && 
!validURL(targetPage)))
-targetPage = "undefined";
-function validURL(url) {
-try {
-url = decodeURIComponent(url);
-}
-catch (error) {
-return false;
-}
-var pos = url.indexOf(".html");
-if (pos == -1 || pos != url.length - 5)
-return false;
-var allowNumber = false;
-var allowSep = false;
-var seenDot = false;
-for (var i = 0; i < url.length - 5; i++) {
-var ch = url.charAt(i);
-if ('a' <= ch && ch <= 'z' ||
-'A' <= ch && ch <= 'Z' ||
-ch == '$' ||
-ch == '_' ||
-ch.charCodeAt(0) > 127) {
-allowNumber = true;
-allowSep = true;
-} else if ('0' <= ch && ch <= '9'
-|| ch == '-') {
-if (!allowNumber)
- return false;
-} else if (ch == '/' || ch == '.') {
-if (!allowSep)
-return false;
-allowNumber = false;
-allowSep = false;
-if (ch == '.')
- seenDot = true;
-if (ch == '/' && seenDot)
- return false;
-} else {
-return false;
-}
-}
-return true;
-}
-function loadFrames() {
-if (targetPage != "" && targetPage != "undefined")
- top.classFrame.location = top.targetPage;
-}
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-Frame Alert
-This document is designed to be viewed using the frames feature. If you see 
this message, you are using a non-frame-capable web client. Link to Non-frame version.
-
-
-

http://git-wip-us.apache.org/repos/asf/drill-site/blob/bdf0f883/_site/api/1.2/jdbc/org/apache/drill/jdbc/AlreadyClosedSqlException.html
--
diff --git 
a/_site/api/1.2/jdbc/org/apache/drill/jdbc/AlreadyClosedSqlException.html 
b/_site/api/1.2/jdbc/org/apache/drill/jdbc/AlreadyClosedSqlException.html
deleted file mode 100644
index 89036ca..000
--- a/_site/api/1.2/jdbc/org/apache/drill/jdbc/AlreadyClosedSqlException.html
+++ /dev/null
@@ -1,408 +0,0 @@
-http://www.w3.org/TR/html4/loose.dtd;>
-
-
-
-
-
-AlreadyClosedSqlException (Apache Drill JDBC Driver v. 1.2.0)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-Overview
-Package
-Class
-Use
-Tree
-Deprecated
-Index
-Help
-
-Apache Drill JDBC Driver v. 1.2.0
-
-
-
-Prev Class
-Next 
Class
-
-
-Frames
-No Frames
-
-
-All Classes
-
-
-
-
-
-
-
-Summary:
-Nested|
-Field|
-Constr|
-Method
-
-
-Detail:
-Field|
-Constr|
-Method
-
-
-
-
-
-
-
-
-org.apache.drill.jdbc
-Class 
AlreadyClosedSqlException
-
-
-
-http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true;
 title="class or interface in java.lang">java.lang.Object
-
-
-http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true;
 title="class or interface in java.lang">java.lang.Throwable
-
-
-http://docs.oracle.com/javase/7/docs/api/java/lang/Exception.html?is-external=true;
 title="class or interface in java.lang">java.lang.Exception
-
-
-http://docs.oracle.com/javase/7/docs/api/java/sql/SQLException.html?is-external=true;
 title="class or interface in java.sql">java.sql.SQLException
-
-
-http://docs.oracle.com/javase/7/docs/api/java/sql/SQLNonTransientException.html?is-external=true;
 title="class or interface in 
java.sql">java.sql.SQLNonTransientException
-
-
-org.apache.drill.jdbc.JdbcApiSqlException
-
-
-org.apache.drill.jdbc.AlreadyClosedSqlException
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-All Implemented Interfaces:
-http://docs.oracle.com/javase/7/docs/api/java/io/Serializable.html?is-external=true;
 title="class or interface in java.io">Serializable, 

[01/51] [abbrv] [partial] drill-site git commit: Revert "Website update"

2017-02-24 Thread adi
Repository: drill-site
Updated Branches:
  refs/heads/asf-site 8b757a634 -> bdf0f8833


http://git-wip-us.apache.org/repos/asf/drill-site/blob/bdf0f883/_site/docs/configure-drill-introduction/index.html
--
diff --git a/_site/docs/configure-drill-introduction/index.html 
b/_site/docs/configure-drill-introduction/index.html
deleted file mode 100644
index 7534899..000
--- a/_site/docs/configure-drill-introduction/index.html
+++ /dev/null
@@ -1,1090 +0,0 @@
-
-
-
-
-
-
-
-
-
-Configure Drill Introduction - Apache Drill
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-  
-
-
-
-
-  
-  
-  
-  
-  
-  Menu
-  
-  
-  
-Documentation
-
-  
-Getting Started
-  
-Architecture
-  
-Tutorials
-  
-Install Drill
-  
-Configure Drill
-  
-Connect a Data 
Source
-  
-ODBC/JDBC 
Interfaces
-  
-Query Data
-  
-Performance 
Tuning
-  
-Log and Debug
-  
-SQL Reference
-  
-Data Sources 
and File Formats
-  
-Develop Custom 
Functions
-  
-Troubleshooting
-  
-Developer 
Information
-  
-Release Notes
-  
-Sample Datasets
-  
-Project Bylaws
-  
-
-  
-  
-Community
-
-  Team
-  Mailing Lists
-  Community Resources
-
-  
-  FAQ
-  Blog
-  https://twitter.com/apachedrill; 
title="apachedrill on twitter" target="_blank"> 
-  
-
-  
-  
-
-  
-
-  
-  
-
-   Download
-
-  
-
-
-
-
-
-
-  
-
-
-
-
-
-  
-
-  
-  
-
-  Getting 
Started
-  
-  
-
-  Drill Introduction
-
-  
-
-  Why Drill
-
-  
-  
-
-  
-
-  Architecture
-  
-  
-
-  Architecture Introduction
-
-  
-
-  Drill Query Execution
-
-  
-
-  Core Modules
-
-  
-
-  Performance
-
-  
-  
-
-  
-
-  Tutorials
-  
-  
-
-  Tutorials Introduction
-
-  
-
-  Drill in 10 Minutes
-
-  
-
-  Analyzing the Yelp 
Academic Dataset
-
-  
-
-  Learn 
Drill with the MapR Sandbox
-  
-  
-About the MapR Sandbox
-  
-Installing the Apache 
Drill Sandbox
-  
-Getting to Know the Drill 
Sandbox
-  
-Lesson 1: Learn about the 
Data Set
-  
-Lesson 2: Run Queries 
with ANSI SQL
-  
-Lesson 3: Run 
Queries on Complex Data Types
-  
-Summary
-  
-
-
-  
-
-  Analyzing Highly Dynamic 
Datasets
-
-  
-
-  Analyzing Social Media
-
-  
-
-  Analyzing Data Using 
Window Functions
-
-  
-  
-
-  
-
-  Install 
Drill
-  
-  
-
-  Install Drill 
Introduction
-
-  
-
-  Installing 
Drill in Embedded Mode
-  
-  
-Embedded Mode 
Prerequisites
-  
-Installing Drill on 
Linux and Mac OS X
-  
-Starting Drill on 
Linux and Mac OS X
-  
-Installing Drill on 
Windows
-  
-Starting Drill on Windows
-  
-
-
-  
-
-  Installing 
Drill in Distributed Mode
-  
-  
-Distributed Mode 
Prerequisites
-  
-Installing Drill on the 
Cluster
-  
-Starting Drill in 
Distributed Mode
-  
-
-
-  
-
-  Starting the Web Console
-
-  
-  
-
-  
-
-  Configure Drill
-  
-  
-
-  Configure Drill 
Introduction
-
-  
-
-  Configuring Drill Memory
-
-  
-
-  Configuring a Multitenant Cluster
-  
-  
-Configuring 
a Multitenant Cluster Introduction
-  
-Configuring Multitenant 
Resources
-  

[10/51] [abbrv] [partial] drill-site git commit: Revert "Website update"

2017-02-24 Thread adi
http://git-wip-us.apache.org/repos/asf/drill-site/blob/bdf0f883/_site/docs/apache-drill-m1-release-notes-apache-drill-alpha/index.html
--
diff --git 
a/_site/docs/apache-drill-m1-release-notes-apache-drill-alpha/index.html 
b/_site/docs/apache-drill-m1-release-notes-apache-drill-alpha/index.html
deleted file mode 100644
index 364f13f..000
--- a/_site/docs/apache-drill-m1-release-notes-apache-drill-alpha/index.html
+++ /dev/null
@@ -1,1101 +0,0 @@
-
-
-
-
-
-
-
-
-
-Apache Drill M1 Release Notes (Apache Drill Alpha) - Apache 
Drill
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-  
-
-
-
-
-  
-  
-  
-  
-  
-  Menu
-  
-  
-  
-Documentation
-
-  
-Getting Started
-  
-Architecture
-  
-Tutorials
-  
-Install Drill
-  
-Configure Drill
-  
-Connect a Data 
Source
-  
-ODBC/JDBC 
Interfaces
-  
-Query Data
-  
-Performance 
Tuning
-  
-Log and Debug
-  
-SQL Reference
-  
-Data Sources 
and File Formats
-  
-Develop Custom 
Functions
-  
-Troubleshooting
-  
-Developer 
Information
-  
-Release Notes
-  
-Sample Datasets
-  
-Project Bylaws
-  
-
-  
-  
-Community
-
-  Team
-  Mailing Lists
-  Community Resources
-
-  
-  FAQ
-  Blog
-  https://twitter.com/apachedrill; 
title="apachedrill on twitter" target="_blank"> 
-  
-
-  
-  
-
-  
-
-  
-  
-
-   Download
-
-  
-
-
-
-
-
-
-  
-
-
-
-
-
-  
-
-  
-  
-
-  Getting 
Started
-  
-  
-
-  Drill Introduction
-
-  
-
-  Why Drill
-
-  
-  
-
-  
-
-  Architecture
-  
-  
-
-  Architecture Introduction
-
-  
-
-  Drill Query Execution
-
-  
-
-  Core Modules
-
-  
-
-  Performance
-
-  
-  
-
-  
-
-  Tutorials
-  
-  
-
-  Tutorials Introduction
-
-  
-
-  Drill in 10 Minutes
-
-  
-
-  Analyzing the Yelp 
Academic Dataset
-
-  
-
-  Learn 
Drill with the MapR Sandbox
-  
-  
-About the MapR Sandbox
-  
-Installing the Apache 
Drill Sandbox
-  
-Getting to Know the Drill 
Sandbox
-  
-Lesson 1: Learn about the 
Data Set
-  
-Lesson 2: Run Queries 
with ANSI SQL
-  
-Lesson 3: Run 
Queries on Complex Data Types
-  
-Summary
-  
-
-
-  
-
-  Analyzing Highly Dynamic 
Datasets
-
-  
-
-  Analyzing Social Media
-
-  
-
-  Analyzing Data Using 
Window Functions
-
-  
-  
-
-  
-
-  Install 
Drill
-  
-  
-
-  Install Drill 
Introduction
-
-  
-
-  Installing 
Drill in Embedded Mode
-  
-  
-Embedded Mode 
Prerequisites
-  
-Installing Drill on 
Linux and Mac OS X
-  
-Starting Drill on 
Linux and Mac OS X
-  
-Installing Drill on 
Windows
-  
-Starting Drill on Windows
-  
-
-
-  
-
-  Installing 
Drill in Distributed Mode
-  
-  
-Distributed Mode 
Prerequisites
-  
-Installing Drill on the 
Cluster
-  
-Starting Drill in 
Distributed Mode
-  
-
-
-  
-
-  Starting the Web Console
-
-  
-  
-
-  
-
-  Configure 
Drill
-  
-  
-
-  Configure Drill 
Introduction
-
-  
-
-  Configuring Drill Memory
-
-  
-
-  Configuring a Multitenant Cluster
-  
-  
-Configuring 
a Multitenant Cluster Introduction
-  
-Configuring 

[39/51] [abbrv] [partial] drill-site git commit: Revert "Website update"

2017-02-24 Thread adi
http://git-wip-us.apache.org/repos/asf/drill-site/blob/bdf0f883/_site/api/1.2/jdbc/overview-tree.html
--
diff --git a/_site/api/1.2/jdbc/overview-tree.html 
b/_site/api/1.2/jdbc/overview-tree.html
deleted file mode 100644
index bd28acb..000
--- a/_site/api/1.2/jdbc/overview-tree.html
+++ /dev/null
@@ -1,251 +0,0 @@
-http://www.w3.org/TR/html4/loose.dtd;>
-
-
-
-
-
-Class Hierarchy (Apache Drill JDBC Driver v. 1.2.0)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-Overview
-Package
-Class
-Use
-Tree
-Deprecated
-Index
-Help
-
-Apache Drill JDBC Driver v. 1.2.0
-
-
-
-Prev
-Next
-
-
-Frames
-No Frames
-
-
-All Classes
-
-
-
-
-
-
-
-
-
-
-Hierarchy For All Packages
-Package Hierarchies:
-
-org.apache.drill.jdbc, 
-org.apache.drill.jdbc.proxy
-
-
-
-Class Hierarchy
-
-java.lang.http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true;
 title="class or interface in java.lang">Object
-
-net.hydromatic.avatica.ConnectionConfigImpl (implements 
net.hydromatic.avatica.ConnectionConfig)
-
-org.apache.drill.jdbc.DrillConnectionConfig
-
-
-org.apache.drill.jdbc.Driver (implements 
java.sql.http://docs.oracle.com/javase/7/docs/api/java/sql/Driver.html?is-external=true;
 title="class or interface in java.sql">Driver)
-java.lang.http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true;
 title="class or interface in java.lang">Throwable (implements java.io.http://docs.oracle.com/javase/7/docs/api/java/io/Serializable.html?is-external=true;
 title="class or interface in java.io">Serializable)
-
-java.lang.http://docs.oracle.com/javase/7/docs/api/java/lang/Exception.html?is-external=true;
 title="class or interface in java.lang">Exception
-
-java.sql.http://docs.oracle.com/javase/7/docs/api/java/sql/SQLException.html?is-external=true;
 title="class or interface in java.sql">SQLException (implements java.lang.http://docs.oracle.com/javase/7/docs/api/java/lang/Iterable.html?is-external=true;
 title="class or interface in java.lang">IterableT)
-
-java.sql.http://docs.oracle.com/javase/7/docs/api/java/sql/SQLNonTransientException.html?is-external=true;
 title="class or interface in java.sql">SQLNonTransientException
-
-org.apache.drill.jdbc.ExecutionCanceledSqlException
-org.apache.drill.exec.vector.accessor.InvalidAccessException
-
-org.apache.drill.jdbc.SQLConversionException
-
-org.apache.drill.jdbc.SQLConversionOverflowException
-
-
-
-
-org.apache.drill.jdbc.JdbcApiSqlException
-
-org.apache.drill.jdbc.AlreadyClosedSqlException
-org.apache.drill.jdbc.InvalidCursorStateSqlException
-org.apache.drill.jdbc.InvalidParameterSqlException
-
-
-
-
-org.apache.drill.jdbc.SqlTimeoutException
-
-
-
-
-
-
-org.apache.drill.jdbc.proxy.TracingProxyDriver 
(implements java.sql.http://docs.oracle.com/javase/7/docs/api/java/sql/Driver.html?is-external=true;
 title="class or interface in java.sql">Driver)
-
-
-
-Interface Hierarchy
-
-java.lang.http://docs.oracle.com/javase/7/docs/api/java/lang/AutoCloseable.html?is-external=true;
 title="class or interface in java.lang">AutoCloseable
-
-java.sql.http://docs.oracle.com/javase/7/docs/api/java/sql/Connection.html?is-external=true;
 title="class or interface in java.sql">Connection (also extends java.sql.http://docs.oracle.com/javase/7/docs/api/java/sql/Wrapper.html?is-external=true;
 title="class or interface in java.sql">Wrapper)
-
-org.apache.drill.jdbc.DrillConnection
-
-
-org.apache.drill.jdbc.DrillConnection
-org.apache.drill.jdbc.DrillPreparedStatement
-org.apache.drill.jdbc.DrillResultSet
-org.apache.drill.jdbc.DrillStatement
-java.sql.http://docs.oracle.com/javase/7/docs/api/java/sql/PreparedStatement.html?is-external=true;
 title="class or interface in java.sql">PreparedStatement
-
-org.apache.drill.jdbc.DrillPreparedStatement
-
-
-java.sql.http://docs.oracle.com/javase/7/docs/api/java/sql/ResultSet.html?is-external=true;
 title="class or interface in java.sql">ResultSet (also extends java.sql.http://docs.oracle.com/javase/7/docs/api/java/sql/Wrapper.html?is-external=true;
 title="class or interface in java.sql">Wrapper)
-
-org.apache.drill.jdbc.DrillResultSet
-
-
-java.sql.http://docs.oracle.com/javase/7/docs/api/java/sql/Statement.html?is-external=true;
 title="class or interface in java.sql">Statement (also extends java.sql.http://docs.oracle.com/javase/7/docs/api/java/sql/Wrapper.html?is-external=true;
 title="class or interface in java.sql">Wrapper)
-
-org.apache.drill.jdbc.DrillPreparedStatement
-org.apache.drill.jdbc.DrillStatement

[05/51] [abbrv] [partial] drill-site git commit: Revert "Website update"

2017-02-24 Thread adi
http://git-wip-us.apache.org/repos/asf/drill-site/blob/bdf0f883/_site/docs/choosing-a-storage-format/index.html
--
diff --git a/_site/docs/choosing-a-storage-format/index.html 
b/_site/docs/choosing-a-storage-format/index.html
deleted file mode 100644
index 5cc33b1..000
--- a/_site/docs/choosing-a-storage-format/index.html
+++ /dev/null
@@ -1,1076 +0,0 @@
-
-
-
-
-
-
-
-
-
-Choosing a Storage Format - Apache Drill
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-  
-
-
-
-
-  
-  
-  
-  
-  
-  Menu
-  
-  
-  
-Documentation
-
-  
-Getting Started
-  
-Architecture
-  
-Tutorials
-  
-Install Drill
-  
-Configure Drill
-  
-Connect a Data 
Source
-  
-ODBC/JDBC 
Interfaces
-  
-Query Data
-  
-Performance 
Tuning
-  
-Log and Debug
-  
-SQL Reference
-  
-Data Sources 
and File Formats
-  
-Develop Custom 
Functions
-  
-Troubleshooting
-  
-Developer 
Information
-  
-Release Notes
-  
-Sample Datasets
-  
-Project Bylaws
-  
-
-  
-  
-Community
-
-  Team
-  Mailing Lists
-  Community Resources
-
-  
-  FAQ
-  Blog
-  https://twitter.com/apachedrill; 
title="apachedrill on twitter" target="_blank"> 
-  
-
-  
-  
-
-  
-
-  
-  
-
-   Download
-
-  
-
-
-
-
-
-
-  
-
-
-
-
-
-  
-
-  
-  
-
-  Getting 
Started
-  
-  
-
-  Drill Introduction
-
-  
-
-  Why Drill
-
-  
-  
-
-  
-
-  Architecture
-  
-  
-
-  Architecture Introduction
-
-  
-
-  Drill Query Execution
-
-  
-
-  Core Modules
-
-  
-
-  Performance
-
-  
-  
-
-  
-
-  Tutorials
-  
-  
-
-  Tutorials Introduction
-
-  
-
-  Drill in 10 Minutes
-
-  
-
-  Analyzing the Yelp 
Academic Dataset
-
-  
-
-  Learn 
Drill with the MapR Sandbox
-  
-  
-About the MapR Sandbox
-  
-Installing the Apache 
Drill Sandbox
-  
-Getting to Know the Drill 
Sandbox
-  
-Lesson 1: Learn about the 
Data Set
-  
-Lesson 2: Run Queries 
with ANSI SQL
-  
-Lesson 3: Run 
Queries on Complex Data Types
-  
-Summary
-  
-
-
-  
-
-  Analyzing Highly Dynamic 
Datasets
-
-  
-
-  Analyzing Social Media
-
-  
-
-  Analyzing Data Using 
Window Functions
-
-  
-  
-
-  
-
-  Install 
Drill
-  
-  
-
-  Install Drill 
Introduction
-
-  
-
-  Installing 
Drill in Embedded Mode
-  
-  
-Embedded Mode 
Prerequisites
-  
-Installing Drill on 
Linux and Mac OS X
-  
-Starting Drill on 
Linux and Mac OS X
-  
-Installing Drill on 
Windows
-  
-Starting Drill on Windows
-  
-
-
-  
-
-  Installing 
Drill in Distributed Mode
-  
-  
-Distributed Mode 
Prerequisites
-  
-Installing Drill on the 
Cluster
-  
-Starting Drill in 
Distributed Mode
-  
-
-
-  
-
-  Starting the Web Console
-
-  
-  
-
-  
-
-  Configure 
Drill
-  
-  
-
-  Configure Drill 
Introduction
-
-  
-
-  Configuring Drill Memory
-
-  
-
-  Configuring a Multitenant Cluster
-  
-  
-Configuring 
a Multitenant Cluster Introduction
-  
-Configuring Multitenant 
Resources
-  
-Configuring 
Resources for a Shared Drillbit
-  
-  

[03/51] [abbrv] [partial] drill-site git commit: Revert "Website update"

2017-02-24 Thread adi
http://git-wip-us.apache.org/repos/asf/drill-site/blob/bdf0f883/_site/docs/configuration-options-introduction/index.html
--
diff --git a/_site/docs/configuration-options-introduction/index.html 
b/_site/docs/configuration-options-introduction/index.html
deleted file mode 100644
index a87e909..000
--- a/_site/docs/configuration-options-introduction/index.html
+++ /dev/null
@@ -1,1428 +0,0 @@
-
-
-
-
-
-
-
-
-
-Configuration Options Introduction - Apache Drill
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-  
-
-
-
-
-  
-  
-  
-  
-  
-  Menu
-  
-  
-  
-Documentation
-
-  
-Getting Started
-  
-Architecture
-  
-Tutorials
-  
-Install Drill
-  
-Configure Drill
-  
-Connect a Data 
Source
-  
-ODBC/JDBC 
Interfaces
-  
-Query Data
-  
-Performance 
Tuning
-  
-Log and Debug
-  
-SQL Reference
-  
-Data Sources 
and File Formats
-  
-Develop Custom 
Functions
-  
-Troubleshooting
-  
-Developer 
Information
-  
-Release Notes
-  
-Sample Datasets
-  
-Project Bylaws
-  
-
-  
-  
-Community
-
-  Team
-  Mailing Lists
-  Community Resources
-
-  
-  FAQ
-  Blog
-  https://twitter.com/apachedrill; 
title="apachedrill on twitter" target="_blank"> 
-  
-
-  
-  
-
-  
-
-  
-  
-
-   Download
-
-  
-
-
-
-
-
-
-  
-
-
-
-
-
-  
-
-  
-  
-
-  Getting 
Started
-  
-  
-
-  Drill Introduction
-
-  
-
-  Why Drill
-
-  
-  
-
-  
-
-  Architecture
-  
-  
-
-  Architecture Introduction
-
-  
-
-  Drill Query Execution
-
-  
-
-  Core Modules
-
-  
-
-  Performance
-
-  
-  
-
-  
-
-  Tutorials
-  
-  
-
-  Tutorials Introduction
-
-  
-
-  Drill in 10 Minutes
-
-  
-
-  Analyzing the Yelp 
Academic Dataset
-
-  
-
-  Learn 
Drill with the MapR Sandbox
-  
-  
-About the MapR Sandbox
-  
-Installing the Apache 
Drill Sandbox
-  
-Getting to Know the Drill 
Sandbox
-  
-Lesson 1: Learn about the 
Data Set
-  
-Lesson 2: Run Queries 
with ANSI SQL
-  
-Lesson 3: Run 
Queries on Complex Data Types
-  
-Summary
-  
-
-
-  
-
-  Analyzing Highly Dynamic 
Datasets
-
-  
-
-  Analyzing Social Media
-
-  
-
-  Analyzing Data Using 
Window Functions
-
-  
-  
-
-  
-
-  Install 
Drill
-  
-  
-
-  Install Drill 
Introduction
-
-  
-
-  Installing 
Drill in Embedded Mode
-  
-  
-Embedded Mode 
Prerequisites
-  
-Installing Drill on 
Linux and Mac OS X
-  
-Starting Drill on 
Linux and Mac OS X
-  
-Installing Drill on 
Windows
-  
-Starting Drill on Windows
-  
-
-
-  
-
-  Installing 
Drill in Distributed Mode
-  
-  
-Distributed Mode 
Prerequisites
-  
-Installing Drill on the 
Cluster
-  
-Starting Drill in 
Distributed Mode
-  
-
-
-  
-
-  Starting the Web Console
-
-  
-  
-
-  
-
-  Configure Drill
-  
-  
-
-  Configure Drill 
Introduction
-
-  
-
-  Configuring Drill Memory
-
-  
-
-  Configuring a Multitenant Cluster
-  
-  
-Configuring 
a Multitenant Cluster Introduction
-  
-Configuring Multitenant 
Resources
-  
-Configuring 
Resources for 

[13/51] [abbrv] [partial] drill-site git commit: Revert "Website update"

2017-02-24 Thread adi
http://git-wip-us.apache.org/repos/asf/drill-site/blob/bdf0f883/_site/docs/apache-drill-1-3-0-release-notes/index.html
--
diff --git a/_site/docs/apache-drill-1-3-0-release-notes/index.html 
b/_site/docs/apache-drill-1-3-0-release-notes/index.html
deleted file mode 100644
index e1659a5..000
--- a/_site/docs/apache-drill-1-3-0-release-notes/index.html
+++ /dev/null
@@ -1,1220 +0,0 @@
-
-
-
-
-
-
-
-
-
-Apache Drill 1.3.0 Release Notes - Apache Drill
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-  
-
-
-
-
-  
-  
-  
-  
-  
-  Menu
-  
-  
-  
-Documentation
-
-  
-Getting Started
-  
-Architecture
-  
-Tutorials
-  
-Install Drill
-  
-Configure Drill
-  
-Connect a Data 
Source
-  
-ODBC/JDBC 
Interfaces
-  
-Query Data
-  
-Performance 
Tuning
-  
-Log and Debug
-  
-SQL Reference
-  
-Data Sources 
and File Formats
-  
-Develop Custom 
Functions
-  
-Troubleshooting
-  
-Developer 
Information
-  
-Release Notes
-  
-Sample Datasets
-  
-Project Bylaws
-  
-
-  
-  
-Community
-
-  Team
-  Mailing Lists
-  Community Resources
-
-  
-  FAQ
-  Blog
-  https://twitter.com/apachedrill; 
title="apachedrill on twitter" target="_blank"> 
-  
-
-  
-  
-
-  
-
-  
-  
-
-   Download
-
-  
-
-
-
-
-
-
-  
-
-
-
-
-
-  
-
-  
-  
-
-  Getting 
Started
-  
-  
-
-  Drill Introduction
-
-  
-
-  Why Drill
-
-  
-  
-
-  
-
-  Architecture
-  
-  
-
-  Architecture Introduction
-
-  
-
-  Drill Query Execution
-
-  
-
-  Core Modules
-
-  
-
-  Performance
-
-  
-  
-
-  
-
-  Tutorials
-  
-  
-
-  Tutorials Introduction
-
-  
-
-  Drill in 10 Minutes
-
-  
-
-  Analyzing the Yelp 
Academic Dataset
-
-  
-
-  Learn 
Drill with the MapR Sandbox
-  
-  
-About the MapR Sandbox
-  
-Installing the Apache 
Drill Sandbox
-  
-Getting to Know the Drill 
Sandbox
-  
-Lesson 1: Learn about the 
Data Set
-  
-Lesson 2: Run Queries 
with ANSI SQL
-  
-Lesson 3: Run 
Queries on Complex Data Types
-  
-Summary
-  
-
-
-  
-
-  Analyzing Highly Dynamic 
Datasets
-
-  
-
-  Analyzing Social Media
-
-  
-
-  Analyzing Data Using 
Window Functions
-
-  
-  
-
-  
-
-  Install 
Drill
-  
-  
-
-  Install Drill 
Introduction
-
-  
-
-  Installing 
Drill in Embedded Mode
-  
-  
-Embedded Mode 
Prerequisites
-  
-Installing Drill on 
Linux and Mac OS X
-  
-Starting Drill on 
Linux and Mac OS X
-  
-Installing Drill on 
Windows
-  
-Starting Drill on Windows
-  
-
-
-  
-
-  Installing 
Drill in Distributed Mode
-  
-  
-Distributed Mode 
Prerequisites
-  
-Installing Drill on the 
Cluster
-  
-Starting Drill in 
Distributed Mode
-  
-
-
-  
-
-  Starting the Web Console
-
-  
-  
-
-  
-
-  Configure 
Drill
-  
-  
-
-  Configure Drill 
Introduction
-
-  
-
-  Configuring Drill Memory
-
-  
-
-  Configuring a Multitenant Cluster
-  
-  
-Configuring 
a Multitenant Cluster Introduction
-  
-Configuring Multitenant 
Resources
-  
-Configuring 
Resources for a Shared 

[15/51] [abbrv] [partial] drill-site git commit: Revert "Website update"

2017-02-24 Thread adi
http://git-wip-us.apache.org/repos/asf/drill-site/blob/bdf0f883/_site/docs/apache-drill-1-1-0-release-notes/index.html
--
diff --git a/_site/docs/apache-drill-1-1-0-release-notes/index.html 
b/_site/docs/apache-drill-1-1-0-release-notes/index.html
deleted file mode 100644
index 479dc9f..000
--- a/_site/docs/apache-drill-1-1-0-release-notes/index.html
+++ /dev/null
@@ -1,1434 +0,0 @@
-
-
-
-
-
-
-
-
-
-Apache Drill 1.1.0 Release Notes - Apache Drill
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-  
-
-
-
-
-  
-  
-  
-  
-  
-  Menu
-  
-  
-  
-Documentation
-
-  
-Getting Started
-  
-Architecture
-  
-Tutorials
-  
-Install Drill
-  
-Configure Drill
-  
-Connect a Data 
Source
-  
-ODBC/JDBC 
Interfaces
-  
-Query Data
-  
-Performance 
Tuning
-  
-Log and Debug
-  
-SQL Reference
-  
-Data Sources 
and File Formats
-  
-Develop Custom 
Functions
-  
-Troubleshooting
-  
-Developer 
Information
-  
-Release Notes
-  
-Sample Datasets
-  
-Project Bylaws
-  
-
-  
-  
-Community
-
-  Team
-  Mailing Lists
-  Community Resources
-
-  
-  FAQ
-  Blog
-  https://twitter.com/apachedrill; 
title="apachedrill on twitter" target="_blank"> 
-  
-
-  
-  
-
-  
-
-  
-  
-
-   Download
-
-  
-
-
-
-
-
-
-  
-
-
-
-
-
-  
-
-  
-  
-
-  Getting 
Started
-  
-  
-
-  Drill Introduction
-
-  
-
-  Why Drill
-
-  
-  
-
-  
-
-  Architecture
-  
-  
-
-  Architecture Introduction
-
-  
-
-  Drill Query Execution
-
-  
-
-  Core Modules
-
-  
-
-  Performance
-
-  
-  
-
-  
-
-  Tutorials
-  
-  
-
-  Tutorials Introduction
-
-  
-
-  Drill in 10 Minutes
-
-  
-
-  Analyzing the Yelp 
Academic Dataset
-
-  
-
-  Learn 
Drill with the MapR Sandbox
-  
-  
-About the MapR Sandbox
-  
-Installing the Apache 
Drill Sandbox
-  
-Getting to Know the Drill 
Sandbox
-  
-Lesson 1: Learn about the 
Data Set
-  
-Lesson 2: Run Queries 
with ANSI SQL
-  
-Lesson 3: Run 
Queries on Complex Data Types
-  
-Summary
-  
-
-
-  
-
-  Analyzing Highly Dynamic 
Datasets
-
-  
-
-  Analyzing Social Media
-
-  
-
-  Analyzing Data Using 
Window Functions
-
-  
-  
-
-  
-
-  Install 
Drill
-  
-  
-
-  Install Drill 
Introduction
-
-  
-
-  Installing 
Drill in Embedded Mode
-  
-  
-Embedded Mode 
Prerequisites
-  
-Installing Drill on 
Linux and Mac OS X
-  
-Starting Drill on 
Linux and Mac OS X
-  
-Installing Drill on 
Windows
-  
-Starting Drill on Windows
-  
-
-
-  
-
-  Installing 
Drill in Distributed Mode
-  
-  
-Distributed Mode 
Prerequisites
-  
-Installing Drill on the 
Cluster
-  
-Starting Drill in 
Distributed Mode
-  
-
-
-  
-
-  Starting the Web Console
-
-  
-  
-
-  
-
-  Configure 
Drill
-  
-  
-
-  Configure Drill 
Introduction
-
-  
-
-  Configuring Drill Memory
-
-  
-
-  Configuring a Multitenant Cluster
-  
-  
-Configuring 
a Multitenant Cluster Introduction
-  
-Configuring Multitenant 
Resources
-  
-Configuring 
Resources for a Shared 

[44/51] [abbrv] [partial] drill-site git commit: Revert "Website update"

2017-02-24 Thread adi
http://git-wip-us.apache.org/repos/asf/drill-site/blob/bdf0f883/_site/api/1.2/jdbc/org/apache/drill/jdbc/DrillStatement.html
--
diff --git a/_site/api/1.2/jdbc/org/apache/drill/jdbc/DrillStatement.html 
b/_site/api/1.2/jdbc/org/apache/drill/jdbc/DrillStatement.html
deleted file mode 100644
index edab4eb..000
--- a/_site/api/1.2/jdbc/org/apache/drill/jdbc/DrillStatement.html
+++ /dev/null
@@ -1,310 +0,0 @@
-http://www.w3.org/TR/html4/loose.dtd;>
-
-
-
-
-
-DrillStatement (Apache Drill JDBC Driver v. 1.2.0)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-Overview
-Package
-Class
-Use
-Tree
-Deprecated
-Index
-Help
-
-Apache Drill JDBC Driver v. 1.2.0
-
-
-
-Prev 
Class
-Next Class
-
-
-Frames
-No Frames
-
-
-All Classes
-
-
-
-
-
-
-
-Summary:
-Nested|
-Field|
-Constr|
-Method
-
-
-Detail:
-Field|
-Constr|
-Method
-
-
-
-
-
-
-
-
-org.apache.drill.jdbc
-Interface 
DrillStatement
-
-
-
-
-
-
-All Superinterfaces:
-http://docs.oracle.com/javase/7/docs/api/java/lang/AutoCloseable.html?is-external=true;
 title="class or interface in java.lang">AutoCloseable, http://docs.oracle.com/javase/7/docs/api/java/sql/Statement.html?is-external=true;
 title="class or interface in java.sql">Statement, http://docs.oracle.com/javase/7/docs/api/java/sql/Wrapper.html?is-external=true;
 title="class or interface in java.sql">Wrapper
-
-
-
-public interface DrillStatement
-extends http://docs.oracle.com/javase/7/docs/api/java/sql/Statement.html?is-external=true;
 title="class or interface in java.sql">Statement
-Drill-specific http://docs.oracle.com/javase/7/docs/api/java/sql/Statement.html?is-external=true;
 title="class or interface in java.sql">Statement.
-See Also:http://docs.oracle.com/javase/7/docs/api/java/sql/Wrapper.html?is-external=true#unwrap(java.lang.Class)"
 title="class or interface in 
java.sql">Wrapper.unwrap(java.lang.ClassT)
-
-
-
-
-
-
-
-
-
-
-
-Field Summary
-
-
-
-
-Fields inherited from interfacejava.sql.http://docs.oracle.com/javase/7/docs/api/java/sql/Statement.html?is-external=true;
 title="class or interface in java.sql">Statement
-http://docs.oracle.com/javase/7/docs/api/java/sql/Statement.html?is-external=true#CLOSE_ALL_RESULTS;
 title="class or interface in java.sql">CLOSE_ALL_RESULTS, http://docs.oracle.com/javase/7/docs/api/java/sql/Statement.html?is-external=true#CLOSE_CURRENT_RESULT;
 title="class or interface in java.sql">CLOSE_CURRENT_RESULT, http://docs.oracle.com/javase/7/docs/api/java/sql/Statement.html?is-external=true#EXECUTE_FAILED;
 title="class or interface in java.sql">EXECUTE_FAILED, http://docs.oracle.com/javase/7/docs/api/java/sql/Statement.html?is-external=true#KEEP_CURRENT_RESULT;
 title="class or interface in java.sql">KEEP_CURRENT_RESULT, http://docs.oracle.com/javase/7/docs/api/java/sql/Statement.html?is-external=true#NO_GENERATED_KEYS;
 title="class or interface in java.sql">NO_GENERATED_KEYS, http://docs.oracle.com/javase/7/docs/api/java/sql/Statement.html?is-external=true#RETURN_GENERATED_KEYS;
 title="class 
 or interface in java.sql">RETURN_GENERATED_KEYS, http://docs.oracle.com/javase/7/docs/api/java/sql/Statement.html?is-external=true#SUCCESS_NO_INFO;
 title="class or interface in java.sql">SUCCESS_NO_INFO
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-int
-getQueryTimeout()
-Drill:
- Returns zero, indicating that no timeout is set.
-
-
-
-boolean
-isClosed()
-
-
-void
-setQueryTimeout(intmilliseconds)
-Drill:
- Not supported (for non-zero timeout value).
-
-
-
-
-
-
-
-Methods inherited from interfacejava.sql.http://docs.oracle.com/javase/7/docs/api/java/sql/Statement.html?is-external=true;
 title="class or interface in java.sql">Statement
-http://docs.oracle.com/javase/7/docs/api/java/sql/Statement.html?is-external=true#addBatch(java.lang.String)"
 title="class or interface in java.sql">addBatch, http://docs.oracle.com/javase/7/docs/api/java/sql/Statement.html?is-external=true#cancel()"
 title="class or interface in java.sql">cancel, http://docs.oracle.com/javase/7/docs/api/java/sql/Statement.html?is-external=true#clearBatch()"
 title="class or interface in java.sql">clearBatch, http://docs.oracle.com/javase/7/docs/api/java/sql/Statement.html?is-external=true#clearWarnings()"
 title="class or interface in java.sql">clearWarnings, http://docs.oracle.com/javase/7/docs/api/java/sql/Statement.html?is-external=true#close()"
 title="class or interface in java.sql">close, 

[04/51] [abbrv] [partial] drill-site git commit: Revert "Website update"

2017-02-24 Thread adi
http://git-wip-us.apache.org/repos/asf/drill-site/blob/bdf0f883/_site/docs/compiling-drill-from-source/index.html
--
diff --git a/_site/docs/compiling-drill-from-source/index.html 
b/_site/docs/compiling-drill-from-source/index.html
deleted file mode 100644
index ccaa9ac..000
--- a/_site/docs/compiling-drill-from-source/index.html
+++ /dev/null
@@ -1,1103 +0,0 @@
-
-
-
-
-
-
-
-
-
-Compiling Drill from Source - Apache Drill
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-  
-
-
-
-
-  
-  
-  
-  
-  
-  Menu
-  
-  
-  
-Documentation
-
-  
-Getting Started
-  
-Architecture
-  
-Tutorials
-  
-Install Drill
-  
-Configure Drill
-  
-Connect a Data 
Source
-  
-ODBC/JDBC 
Interfaces
-  
-Query Data
-  
-Performance 
Tuning
-  
-Log and Debug
-  
-SQL Reference
-  
-Data Sources 
and File Formats
-  
-Develop Custom 
Functions
-  
-Troubleshooting
-  
-Developer 
Information
-  
-Release Notes
-  
-Sample Datasets
-  
-Project Bylaws
-  
-
-  
-  
-Community
-
-  Team
-  Mailing Lists
-  Community Resources
-
-  
-  FAQ
-  Blog
-  https://twitter.com/apachedrill; 
title="apachedrill on twitter" target="_blank"> 
-  
-
-  
-  
-
-  
-
-  
-  
-
-   Download
-
-  
-
-
-
-
-
-
-  
-
-
-
-
-
-  
-
-  
-  
-
-  Getting 
Started
-  
-  
-
-  Drill Introduction
-
-  
-
-  Why Drill
-
-  
-  
-
-  
-
-  Architecture
-  
-  
-
-  Architecture Introduction
-
-  
-
-  Drill Query Execution
-
-  
-
-  Core Modules
-
-  
-
-  Performance
-
-  
-  
-
-  
-
-  Tutorials
-  
-  
-
-  Tutorials Introduction
-
-  
-
-  Drill in 10 Minutes
-
-  
-
-  Analyzing the Yelp 
Academic Dataset
-
-  
-
-  Learn 
Drill with the MapR Sandbox
-  
-  
-About the MapR Sandbox
-  
-Installing the Apache 
Drill Sandbox
-  
-Getting to Know the Drill 
Sandbox
-  
-Lesson 1: Learn about the 
Data Set
-  
-Lesson 2: Run Queries 
with ANSI SQL
-  
-Lesson 3: Run 
Queries on Complex Data Types
-  
-Summary
-  
-
-
-  
-
-  Analyzing Highly Dynamic 
Datasets
-
-  
-
-  Analyzing Social Media
-
-  
-
-  Analyzing Data Using 
Window Functions
-
-  
-  
-
-  
-
-  Install 
Drill
-  
-  
-
-  Install Drill 
Introduction
-
-  
-
-  Installing 
Drill in Embedded Mode
-  
-  
-Embedded Mode 
Prerequisites
-  
-Installing Drill on 
Linux and Mac OS X
-  
-Starting Drill on 
Linux and Mac OS X
-  
-Installing Drill on 
Windows
-  
-Starting Drill on Windows
-  
-
-
-  
-
-  Installing 
Drill in Distributed Mode
-  
-  
-Distributed Mode 
Prerequisites
-  
-Installing Drill on the 
Cluster
-  
-Starting Drill in 
Distributed Mode
-  
-
-
-  
-
-  Starting the Web Console
-
-  
-  
-
-  
-
-  Configure 
Drill
-  
-  
-
-  Configure Drill 
Introduction
-
-  
-
-  Configuring Drill Memory
-
-  
-
-  Configuring a Multitenant Cluster
-  
-  
-Configuring 
a Multitenant Cluster Introduction
-  
-Configuring Multitenant 
Resources
-  
-Configuring 
Resources for a Shared Drillbit
-  

[24/51] [abbrv] [partial] drill-site git commit: Revert "Website update"

2017-02-24 Thread adi
http://git-wip-us.apache.org/repos/asf/drill-site/blob/bdf0f883/_site/docs/analyzing-the-yelp-academic-dataset/index.html
--
diff --git a/_site/docs/analyzing-the-yelp-academic-dataset/index.html 
b/_site/docs/analyzing-the-yelp-academic-dataset/index.html
deleted file mode 100644
index 1524252..000
--- a/_site/docs/analyzing-the-yelp-academic-dataset/index.html
+++ /dev/null
@@ -1,1465 +0,0 @@
-
-
-
-
-
-
-
-
-
-Analyzing the Yelp Academic Dataset - Apache Drill
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-  
-
-
-
-
-  
-  
-  
-  
-  
-  Menu
-  
-  
-  
-Documentation
-
-  
-Getting Started
-  
-Architecture
-  
-Tutorials
-  
-Install Drill
-  
-Configure Drill
-  
-Connect a Data 
Source
-  
-ODBC/JDBC 
Interfaces
-  
-Query Data
-  
-Performance 
Tuning
-  
-Log and Debug
-  
-SQL Reference
-  
-Data Sources 
and File Formats
-  
-Develop Custom 
Functions
-  
-Troubleshooting
-  
-Developer 
Information
-  
-Release Notes
-  
-Sample Datasets
-  
-Project Bylaws
-  
-
-  
-  
-Community
-
-  Team
-  Mailing Lists
-  Community Resources
-
-  
-  FAQ
-  Blog
-  https://twitter.com/apachedrill; 
title="apachedrill on twitter" target="_blank"> 
-  
-
-  
-  
-
-  
-
-  
-  
-
-   Download
-
-  
-
-
-
-
-
-
-  
-
-
-
-
-
-  
-
-  
-  
-
-  Getting 
Started
-  
-  
-
-  Drill Introduction
-
-  
-
-  Why Drill
-
-  
-  
-
-  
-
-  Architecture
-  
-  
-
-  Architecture Introduction
-
-  
-
-  Drill Query Execution
-
-  
-
-  Core Modules
-
-  
-
-  Performance
-
-  
-  
-
-  
-
-  Tutorials
-  
-  
-
-  Tutorials Introduction
-
-  
-
-  Drill in 10 Minutes
-
-  
-
-  Analyzing the Yelp 
Academic Dataset
-
-  
-
-  Learn 
Drill with the MapR Sandbox
-  
-  
-About the MapR Sandbox
-  
-Installing the Apache 
Drill Sandbox
-  
-Getting to Know the Drill 
Sandbox
-  
-Lesson 1: Learn about the 
Data Set
-  
-Lesson 2: Run Queries 
with ANSI SQL
-  
-Lesson 3: Run 
Queries on Complex Data Types
-  
-Summary
-  
-
-
-  
-
-  Analyzing Highly Dynamic 
Datasets
-
-  
-
-  Analyzing Social Media
-
-  
-
-  Analyzing Data Using 
Window Functions
-
-  
-  
-
-  
-
-  Install 
Drill
-  
-  
-
-  Install Drill 
Introduction
-
-  
-
-  Installing 
Drill in Embedded Mode
-  
-  
-Embedded Mode 
Prerequisites
-  
-Installing Drill on 
Linux and Mac OS X
-  
-Starting Drill on 
Linux and Mac OS X
-  
-Installing Drill on 
Windows
-  
-Starting Drill on Windows
-  
-
-
-  
-
-  Installing 
Drill in Distributed Mode
-  
-  
-Distributed Mode 
Prerequisites
-  
-Installing Drill on the 
Cluster
-  
-Starting Drill in 
Distributed Mode
-  
-
-
-  
-
-  Starting the Web Console
-
-  
-  
-
-  
-
-  Configure 
Drill
-  
-  
-
-  Configure Drill 
Introduction
-
-  
-
-  Configuring Drill Memory
-
-  
-
-  Configuring a Multitenant Cluster
-  
-  
-Configuring 
a Multitenant Cluster Introduction
-  
-Configuring Multitenant 
Resources
-  
-Configuring 

[36/51] [abbrv] [partial] drill-site git commit: Revert "Website update"

2017-02-24 Thread adi
http://git-wip-us.apache.org/repos/asf/drill-site/blob/bdf0f883/_site/blog/2015/07/23/drill-tutorial-at-nosql-now-2015/index.html
--
diff --git a/_site/blog/2015/07/23/drill-tutorial-at-nosql-now-2015/index.html 
b/_site/blog/2015/07/23/drill-tutorial-at-nosql-now-2015/index.html
deleted file mode 100644
index 8ae589b..000
--- a/_site/blog/2015/07/23/drill-tutorial-at-nosql-now-2015/index.html
+++ /dev/null
@@ -1,188 +0,0 @@
-
-
-
-
-
-
-
-
-
-Drill Tutorial at NoSQL Now! 2015 - Apache Drill
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-  
-
-
-
-
-  
-  
-  
-  
-  
-  Menu
-  
-  
-  
-Documentation
-
-  
-Getting Started
-  
-Architecture
-  
-Tutorials
-  
-Install Drill
-  
-Configure Drill
-  
-Connect a Data 
Source
-  
-ODBC/JDBC 
Interfaces
-  
-Query Data
-  
-Performance 
Tuning
-  
-Log and Debug
-  
-SQL Reference
-  
-Data Sources 
and File Formats
-  
-Develop Custom 
Functions
-  
-Troubleshooting
-  
-Developer 
Information
-  
-Release Notes
-  
-Sample Datasets
-  
-Project Bylaws
-  
-
-  
-  
-Community
-
-  Team
-  Mailing Lists
-  Community Resources
-
-  
-  FAQ
-  Blog
-  https://twitter.com/apachedrill; 
title="apachedrill on twitter" target="_blank"> 
-  
-
-  
-  
-
-  
-
-  
-  
-
-   Download
-
-  
-
-
-
-
-
-
-  
-
-  Drill Tutorial at NoSQL Now! 2015
-
-
-
-  
-  
-  Author: Tomer Shiran (Founder, PMC Member and 
Committer, Apache Drill)
-
-
-
-  
-  
-
-  
-
-
-
-Add to Calendar
-08-20-2015 13:00:00
-08-20-2014 16:15:00
-6
-Drill Tutorial at NoSQL Now! 2015
-NoSQL Now! 2015 is hosting a 3-hour tutorial on 
Apache Drill. Drill committers Tomer Shiran and Jacques Nadeau will demonstrate 
how to analyze NoSQL data with SQL queries and standard BI tools.
-San Jose Convention Center, 150 West San Carlos 
St, San Jose, CA 95113 USA
-Tomer Shiran
-tshiran\@apache.org
-false
-MM-DD-
-
-
-NoSQL Now! 2015 will be hosting a http://nosql2015.dataversity.net/sessionPop.cfm?confid=90proposalid=7727;>3-hour
 tutorial on Apache Drill. Jacques Nadeau and I will provide a deep dive on 
Drill and demonstrate how to analyze NoSQL data with SQL queries and standard 
BI tools. We would love to see you there!
-
-When you http://nosql2015.dataversity.net/reg.cfm;>register, 
use the coupon code SPEAKER for a 20% discount on the registration 
fees.
-
-  
- 
-
-/* * * CONFIGURATION VARIABLES: EDIT BEFORE PASTING INTO YOUR WEBPAGE 
* * */
-var disqus_shortname = 'drill'; // required: replace example with your 
forum shortname
-
-/* * * DON'T EDIT BELOW THIS LINE * * */
-(function() {
-var dsq = document.createElement('script'); dsq.type = 
'text/javascript'; dsq.async = true;
-dsq.src = '//' + disqus_shortname + '.disqus.com/embed.js';
-(document.getElementsByTagName('head')[0] || 
document.getElementsByTagName('body')[0]).appendChild(dsq);
-})();
-
-Please enable JavaScript to view the http://disqus.com/?ref_noscript;>comments powered by 
Disqus.
-
-
-
-
-  
-  
-
-
-Copyright © 2012-2014 The Apache Software Foundation, licensed under the 
Apache License, Version 2.0.
-Apache and the Apache feather logo are trademarks of The Apache Software 
Foundation. Other names appearing on the site may be trademarks of their 
respective owners.
-
-
-
-  
-(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
-(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
-m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
-})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
-
-ga('create', 'UA-53379651-1', 'auto');
-ga('send', 'pageview');
-
-
-
-

http://git-wip-us.apache.org/repos/asf/drill-site/blob/bdf0f883/_site/blog/2015/10/16/drill-1.2-released/index.html
--
diff --git a/_site/blog/2015/10/16/drill-1.2-released/index.html 
b/_site/blog/2015/10/16/drill-1.2-released/index.html
deleted file mode 100644
index 24fca88..000
--- a/_site/blog/2015/10/16/drill-1.2-released/index.html
+++ /dev/null
@@ -1,211 +0,0 @@
-
-
-
-
-
-
-
-
-
-Drill 1.2 Released - Apache Drill
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-  
-
-
-
-
-  
-  
-  
-  
-  
-  Menu
-  
-  
-  
-Documentation
-
-  
-Getting Started
-  
-Architecture
-  
-Tutorials
-  
-Install Drill
-  
-Configure Drill
-  
-Connect a Data 
Source
-  
-ODBC/JDBC 
Interfaces
-  

[38/51] [abbrv] [partial] drill-site git commit: Revert "Website update"

2017-02-24 Thread adi
http://git-wip-us.apache.org/repos/asf/drill-site/blob/bdf0f883/_site/blog/2014/12/02/drill-top-level-project/index.html
--
diff --git a/_site/blog/2014/12/02/drill-top-level-project/index.html 
b/_site/blog/2014/12/02/drill-top-level-project/index.html
deleted file mode 100644
index 9407273..000
--- a/_site/blog/2014/12/02/drill-top-level-project/index.html
+++ /dev/null
@@ -1,210 +0,0 @@
-
-
-
-
-
-
-
-
-
-Apache Drill Graduates to a Top-Level Project - Apache Drill
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-  
-
-
-
-
-  
-  
-  
-  
-  
-  Menu
-  
-  
-  
-Documentation
-
-  
-Getting Started
-  
-Architecture
-  
-Tutorials
-  
-Install Drill
-  
-Configure Drill
-  
-Connect a Data 
Source
-  
-ODBC/JDBC 
Interfaces
-  
-Query Data
-  
-Performance 
Tuning
-  
-Log and Debug
-  
-SQL Reference
-  
-Data Sources 
and File Formats
-  
-Develop Custom 
Functions
-  
-Troubleshooting
-  
-Developer 
Information
-  
-Release Notes
-  
-Sample Datasets
-  
-Project Bylaws
-  
-
-  
-  
-Community
-
-  Team
-  Mailing Lists
-  Community Resources
-
-  
-  FAQ
-  Blog
-  https://twitter.com/apachedrill; 
title="apachedrill on twitter" target="_blank"> 
-  
-
-  
-  
-
-  
-
-  
-  
-
-   Download
-
-  
-
-
-
-
-
-
-  
-
-  Apache Drill Graduates to a Top-Level Project
-
-
-
-  
-  
-  Author: Tomer Shiran (Founder, PMC Member and 
Committer, Apache Drill)
-
-Date: Dec 2, 2014
-
-  
-  
-
-  
-The Apache Software Foundation has just announced that it has promoted 
Drill to a top-level project at Apache, similar to other well-known projects 
like Apache Hadoop and httpd (the worlds most popular Web server). This 
marks a significant accomplishment for the Drill community, and I wanted to 
personally thank everyone who has contributed to the project. It takes many 
people, and countless hours, to develop something as complex and innovative as 
Drill.
-
-In this post I wanted to reflect on the past and future of Drill.
-
-Why We Started Drill
-
-The Evolution of 
Application Development and Data
-
-Over the last decade, organizations have been striving to become more agile 
and data-driven, seeking to gain competitive advantage in their markets. This 
trend has led to dramatic changes in the way applications are built and 
delivered, and in the type and volume of data that is being leveraged.
-
-Applications: In previous decades, software development 
was a carefully orchestrated and planned process. The release cycles were often 
measured in years, and upgrades were infrequent. Today, Web and mobile 
applications are developed in a much more iterative fashion. The release cycles 
are measured in days or weeks, and upgrades are a non-issue. (What version of 
Salesforce.com or Google Maps are you using?)
-
-Data: In previous decades, data was measured in MBs or 
GBs, and it was highly structured and denormalized. Todays data is often 
measured in TBs or PBs, and it tends to be multi-structured — a combination 
of unstructured, semi-structured and structured. The data comes from many 
different sources, including a variety of applications, devices and services, 
and its structure changes much more frequently.
-
-A New Generation of Datastores
-
-The relational database, which was invented in 1970, was not designed for 
these new processes and data volumes and structures. As a result, a new 
generation of datastores has emerged, including HDFS, NoSQL (HBase, MongoDB, 
etc.) and search (Elasticsearch, Solr).  These systems are schema-free (also 
known as dynamic schema). Applications, as opposed to DBAs, control 
the data structure, enabling more agility and flexibility. For example, an 
application developer can independently evolve the data structure with each 
application release (which could be daily or weekly) without filing a ticket 
with IT and waiting for the schema of the databae to be modified.
-
-The Need for a New Query Engine
-
-With data increasingly being stored in schema-free datastores (HDFS, HBase, 
MongoDB, etc.) and a variety of cloud services, users need a way to explore and 
analyze this data, and a way to visualize it with BI tools (reports, 
dashboards, etc.). In 2012 we decided to embark on a journey to create the 
worlds next-generation SQL engine. We had several high-level requirements 
in mind:
-
-
-A schema-free data model. Schema-free datastores (HDFS, 
NoSQL, search) need a schema-free SQL engine. These datastores became popular 
for a reason, and we shouldnt expect organizations to sacrifice those 
advantages in order to enjoy SQL-based analytics and BI. Todays 
organizations 

[09/51] [abbrv] [partial] drill-site git commit: Revert "Website update"

2017-02-24 Thread adi
http://git-wip-us.apache.org/repos/asf/drill-site/blob/bdf0f883/_site/docs/architecture-introduction/index.html
--
diff --git a/_site/docs/architecture-introduction/index.html 
b/_site/docs/architecture-introduction/index.html
deleted file mode 100644
index ce633b5..000
--- a/_site/docs/architecture-introduction/index.html
+++ /dev/null
@@ -1,1145 +0,0 @@
-
-
-
-
-
-
-
-
-
-Architecture Introduction - Apache Drill
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-  
-
-
-
-
-  
-  
-  
-  
-  
-  Menu
-  
-  
-  
-Documentation
-
-  
-Getting Started
-  
-Architecture
-  
-Tutorials
-  
-Install Drill
-  
-Configure Drill
-  
-Connect a Data 
Source
-  
-ODBC/JDBC 
Interfaces
-  
-Query Data
-  
-Performance 
Tuning
-  
-Log and Debug
-  
-SQL Reference
-  
-Data Sources 
and File Formats
-  
-Develop Custom 
Functions
-  
-Troubleshooting
-  
-Developer 
Information
-  
-Release Notes
-  
-Sample Datasets
-  
-Project Bylaws
-  
-
-  
-  
-Community
-
-  Team
-  Mailing Lists
-  Community Resources
-
-  
-  FAQ
-  Blog
-  https://twitter.com/apachedrill; 
title="apachedrill on twitter" target="_blank"> 
-  
-
-  
-  
-
-  
-
-  
-  
-
-   Download
-
-  
-
-
-
-
-
-
-  
-
-
-
-
-
-  
-
-  
-  
-
-  Getting 
Started
-  
-  
-
-  Drill Introduction
-
-  
-
-  Why Drill
-
-  
-  
-
-  
-
-  Architecture
-  
-  
-
-  Architecture Introduction
-
-  
-
-  Drill Query Execution
-
-  
-
-  Core Modules
-
-  
-
-  Performance
-
-  
-  
-
-  
-
-  Tutorials
-  
-  
-
-  Tutorials Introduction
-
-  
-
-  Drill in 10 Minutes
-
-  
-
-  Analyzing the Yelp 
Academic Dataset
-
-  
-
-  Learn 
Drill with the MapR Sandbox
-  
-  
-About the MapR Sandbox
-  
-Installing the Apache 
Drill Sandbox
-  
-Getting to Know the Drill 
Sandbox
-  
-Lesson 1: Learn about the 
Data Set
-  
-Lesson 2: Run Queries 
with ANSI SQL
-  
-Lesson 3: Run 
Queries on Complex Data Types
-  
-Summary
-  
-
-
-  
-
-  Analyzing Highly Dynamic 
Datasets
-
-  
-
-  Analyzing Social Media
-
-  
-
-  Analyzing Data Using 
Window Functions
-
-  
-  
-
-  
-
-  Install 
Drill
-  
-  
-
-  Install Drill 
Introduction
-
-  
-
-  Installing 
Drill in Embedded Mode
-  
-  
-Embedded Mode 
Prerequisites
-  
-Installing Drill on 
Linux and Mac OS X
-  
-Starting Drill on 
Linux and Mac OS X
-  
-Installing Drill on 
Windows
-  
-Starting Drill on Windows
-  
-
-
-  
-
-  Installing 
Drill in Distributed Mode
-  
-  
-Distributed Mode 
Prerequisites
-  
-Installing Drill on the 
Cluster
-  
-Starting Drill in 
Distributed Mode
-  
-
-
-  
-
-  Starting the Web Console
-
-  
-  
-
-  
-
-  Configure 
Drill
-  
-  
-
-  Configure Drill 
Introduction
-
-  
-
-  Configuring Drill Memory
-
-  
-
-  Configuring a Multitenant Cluster
-  
-  
-Configuring 
a Multitenant Cluster Introduction
-  
-Configuring Multitenant 
Resources
-  
-Configuring 
Resources for a Shared Drillbit
-  
-  

[07/51] [abbrv] [partial] drill-site git commit: Revert "Website update"

2017-02-24 Thread adi
http://git-wip-us.apache.org/repos/asf/drill-site/blob/bdf0f883/_site/docs/browsing-data-and-defining-views/index.html
--
diff --git a/_site/docs/browsing-data-and-defining-views/index.html 
b/_site/docs/browsing-data-and-defining-views/index.html
deleted file mode 100644
index f718df2..000
--- a/_site/docs/browsing-data-and-defining-views/index.html
+++ /dev/null
@@ -1,1160 +0,0 @@
-
-
-
-
-
-
-
-
-
-Browsing Data and Defining Views - Apache Drill
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-  
-
-
-
-
-  
-  
-  
-  
-  
-  Menu
-  
-  
-  
-Documentation
-
-  
-Getting Started
-  
-Architecture
-  
-Tutorials
-  
-Install Drill
-  
-Configure Drill
-  
-Connect a Data 
Source
-  
-ODBC/JDBC 
Interfaces
-  
-Query Data
-  
-Performance 
Tuning
-  
-Log and Debug
-  
-SQL Reference
-  
-Data Sources 
and File Formats
-  
-Develop Custom 
Functions
-  
-Troubleshooting
-  
-Developer 
Information
-  
-Release Notes
-  
-Sample Datasets
-  
-Project Bylaws
-  
-
-  
-  
-Community
-
-  Team
-  Mailing Lists
-  Community Resources
-
-  
-  FAQ
-  Blog
-  https://twitter.com/apachedrill; 
title="apachedrill on twitter" target="_blank"> 
-  
-
-  
-  
-
-  
-
-  
-  
-
-   Download
-
-  
-
-
-
-
-
-
-  
-
-
-
-
-
-  
-
-  
-  
-
-  Getting 
Started
-  
-  
-
-  Drill Introduction
-
-  
-
-  Why Drill
-
-  
-  
-
-  
-
-  Architecture
-  
-  
-
-  Architecture Introduction
-
-  
-
-  Drill Query Execution
-
-  
-
-  Core Modules
-
-  
-
-  Performance
-
-  
-  
-
-  
-
-  Tutorials
-  
-  
-
-  Tutorials Introduction
-
-  
-
-  Drill in 10 Minutes
-
-  
-
-  Analyzing the Yelp 
Academic Dataset
-
-  
-
-  Learn 
Drill with the MapR Sandbox
-  
-  
-About the MapR Sandbox
-  
-Installing the Apache 
Drill Sandbox
-  
-Getting to Know the Drill 
Sandbox
-  
-Lesson 1: Learn about the 
Data Set
-  
-Lesson 2: Run Queries 
with ANSI SQL
-  
-Lesson 3: Run 
Queries on Complex Data Types
-  
-Summary
-  
-
-
-  
-
-  Analyzing Highly Dynamic 
Datasets
-
-  
-
-  Analyzing Social Media
-
-  
-
-  Analyzing Data Using 
Window Functions
-
-  
-  
-
-  
-
-  Install 
Drill
-  
-  
-
-  Install Drill 
Introduction
-
-  
-
-  Installing 
Drill in Embedded Mode
-  
-  
-Embedded Mode 
Prerequisites
-  
-Installing Drill on 
Linux and Mac OS X
-  
-Starting Drill on 
Linux and Mac OS X
-  
-Installing Drill on 
Windows
-  
-Starting Drill on Windows
-  
-
-
-  
-
-  Installing 
Drill in Distributed Mode
-  
-  
-Distributed Mode 
Prerequisites
-  
-Installing Drill on the 
Cluster
-  
-Starting Drill in 
Distributed Mode
-  
-
-
-  
-
-  Starting the Web Console
-
-  
-  
-
-  
-
-  Configure 
Drill
-  
-  
-
-  Configure Drill 
Introduction
-
-  
-
-  Configuring Drill Memory
-
-  
-
-  Configuring a Multitenant Cluster
-  
-  
-Configuring 
a Multitenant Cluster Introduction
-  
-Configuring Multitenant 
Resources
-  
-Configuring 
Resources for a Shared 

[51/51] [abbrv] [partial] drill-site git commit: Revert "Website update"

2017-02-24 Thread adi
Revert "Website update"

This reverts commit bbdefcb2d354f8045ba0d4e9d2b6feb1f43cf830.


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

Branch: refs/heads/asf-site
Commit: bdf0f8833df30fb86f695635e94e1bf6bcfbeffa
Parents: 4ad9f12
Author: Aditya <adi...@mapr.com>
Authored: Fri Feb 24 15:17:47 2017 -0800
Committer: Aditya <adi...@mapr.com>
Committed: Fri Feb 24 15:17:47 2017 -0800

--
 _site/FETCH_HEAD|0
 _site/README.md |   55 -
 _site/api/1.2/jdbc/META-INF/DEPENDENCIES|  243 --
 _site/api/1.2/jdbc/META-INF/LICENSE |  202 --
 _site/api/1.2/jdbc/META-INF/MANIFEST.MF |6 -
 _site/api/1.2/jdbc/META-INF/NOTICE  |8 -
 _site/api/1.2/jdbc/allclasses-frame.html|   35 -
 _site/api/1.2/jdbc/allclasses-noframe.html  |   35 -
 _site/api/1.2/jdbc/constant-values.html |  119 -
 _site/api/1.2/jdbc/deprecated-list.html |  119 -
 _site/api/1.2/jdbc/help-doc.html|  224 --
 _site/api/1.2/jdbc/index-all.html   |  661 --
 _site/api/1.2/jdbc/index.html   |   75 -
 .../drill/jdbc/AlreadyClosedSqlException.html   |  408 
 .../org/apache/drill/jdbc/DrillConnection.html  |  675 --
 .../drill/jdbc/DrillConnectionConfig.html   |  354 ---
 .../drill/jdbc/DrillDatabaseMetaData.html   |  940 
 .../drill/jdbc/DrillPreparedStatement.html  |  226 --
 .../org/apache/drill/jdbc/DrillResultSet.html   |  859 ---
 .../org/apache/drill/jdbc/DrillStatement.html   |  310 ---
 .../1.2/jdbc/org/apache/drill/jdbc/Driver.html  |  404 
 .../jdbc/ExecutionCanceledSqlException.html |  280 ---
 .../jdbc/InvalidCursorStateSqlException.html|  409 
 .../jdbc/InvalidParameterSqlException.html  |  392 
 .../apache/drill/jdbc/JdbcApiSqlException.html  |  466 
 .../drill/jdbc/SQLConversionException.html  |  240 --
 .../jdbc/SQLConversionOverflowException.html|  281 ---
 .../apache/drill/jdbc/SchemaChangeListener.html |  210 --
 .../apache/drill/jdbc/SqlTimeoutException.html  |  228 --
 .../class-use/AlreadyClosedSqlException.html|  186 --
 .../drill/jdbc/class-use/DrillConnection.html   |  119 -
 .../jdbc/class-use/DrillConnectionConfig.html   |  163 --
 .../jdbc/class-use/DrillDatabaseMetaData.html   |  119 -
 .../jdbc/class-use/DrillPreparedStatement.html  |  119 -
 .../drill/jdbc/class-use/DrillResultSet.html|  119 -
 .../drill/jdbc/class-use/DrillStatement.html|  119 -
 .../org/apache/drill/jdbc/class-use/Driver.html |  119 -
 .../ExecutionCanceledSqlException.html  |  119 -
 .../InvalidCursorStateSqlException.html |  119 -
 .../class-use/InvalidParameterSqlException.html |  119 -
 .../jdbc/class-use/JdbcApiSqlException.html |  202 --
 .../jdbc/class-use/SQLConversionException.html  |  161 --
 .../SQLConversionOverflowException.html |  205 --
 .../jdbc/class-use/SchemaChangeListener.html|  119 -
 .../jdbc/class-use/SqlTimeoutException.html |  119 -
 .../org/apache/drill/jdbc/package-frame.html|   41 -
 .../org/apache/drill/jdbc/package-summary.html  |  265 ---
 .../org/apache/drill/jdbc/package-tree.html |  228 --
 .../jdbc/org/apache/drill/jdbc/package-use.html |  174 --
 .../drill/jdbc/proxy/TracingProxyDriver.html|  435 
 .../proxy/class-use/TracingProxyDriver.html |  119 -
 .../apache/drill/jdbc/proxy/package-frame.html  |   20 -
 .../drill/jdbc/proxy/package-summary.html   |  149 --
 .../apache/drill/jdbc/proxy/package-tree.html   |  132 --
 .../apache/drill/jdbc/proxy/package-use.html|  119 -
 _site/api/1.2/jdbc/overview-frame.html  |   23 -
 _site/api/1.2/jdbc/overview-summary.html|  152 --
 _site/api/1.2/jdbc/overview-tree.html   |  251 --
 _site/api/1.2/jdbc/package-list |2 -
 _site/api/1.2/jdbc/resources/background.gif |  Bin 2313 -> 0 bytes
 _site/api/1.2/jdbc/resources/tab.gif|  Bin 291 -> 0 bytes
 _site/api/1.2/jdbc/resources/titlebar.gif   |  Bin 10701 -> 0 bytes
 _site/api/1.2/jdbc/resources/titlebar_end.gif   |  Bin 849 -> 0 bytes
 _site/api/1.2/jdbc/serialized-form.html |  195 --
 _site/api/1.2/jdbc/stylesheet.css   |  474 
 _site/architecture/index.html   |  217 --
 _site/blog/2014/11/19/sql-on-mongodb/index.html |  322 ---
 .../12/02/drill-top-level-project/index.html|  210 --
 .../running-sql-queries-on-amazon-s3/index.html |  240 --
 .../index.html  |  214 --
 .../2014/12/16/whats-coming-in-2015/index.html  |  293 ---
 .../2014/12/23/drill

[41/51] [abbrv] [partial] drill-site git commit: Revert "Website update"

2017-02-24 Thread adi
http://git-wip-us.apache.org/repos/asf/drill-site/blob/bdf0f883/_site/api/1.2/jdbc/org/apache/drill/jdbc/class-use/DrillResultSet.html
--
diff --git 
a/_site/api/1.2/jdbc/org/apache/drill/jdbc/class-use/DrillResultSet.html 
b/_site/api/1.2/jdbc/org/apache/drill/jdbc/class-use/DrillResultSet.html
deleted file mode 100644
index 7448b4d..000
--- a/_site/api/1.2/jdbc/org/apache/drill/jdbc/class-use/DrillResultSet.html
+++ /dev/null
@@ -1,119 +0,0 @@
-http://www.w3.org/TR/html4/loose.dtd;>
-
-
-
-
-
-Uses of Interface org.apache.drill.jdbc.DrillResultSet (Apache Drill 
JDBC Driver v. 1.2.0)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-Overview
-Package
-Class
-Use
-Tree
-Deprecated
-Index
-Help
-
-Apache Drill JDBC Driver v. 1.2.0
-
-
-
-Prev
-Next
-
-
-Frames
-No Frames
-
-
-All Classes
-
-
-
-
-
-
-
-
-
-
-Uses of Interfaceorg.apache.drill.jdbc.DrillResultSet
-
-No usage of 
org.apache.drill.jdbc.DrillResultSet
-
-
-
-
-
-
-
-Overview
-Package
-Class
-Use
-Tree
-Deprecated
-Index
-Help
-
-Apache Drill JDBC Driver v. 1.2.0
-
-
-
-Prev
-Next
-
-
-Frames
-No Frames
-
-
-All Classes
-
-
-
-
-
-
-
-
-
-Copyright  2015 http://www.apache.org/;>The Apache Software Foundation. All rights 
reserved.
-
-

http://git-wip-us.apache.org/repos/asf/drill-site/blob/bdf0f883/_site/api/1.2/jdbc/org/apache/drill/jdbc/class-use/DrillStatement.html
--
diff --git 
a/_site/api/1.2/jdbc/org/apache/drill/jdbc/class-use/DrillStatement.html 
b/_site/api/1.2/jdbc/org/apache/drill/jdbc/class-use/DrillStatement.html
deleted file mode 100644
index 7b6b718..000
--- a/_site/api/1.2/jdbc/org/apache/drill/jdbc/class-use/DrillStatement.html
+++ /dev/null
@@ -1,119 +0,0 @@
-http://www.w3.org/TR/html4/loose.dtd;>
-
-
-
-
-
-Uses of Interface org.apache.drill.jdbc.DrillStatement (Apache Drill 
JDBC Driver v. 1.2.0)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-Overview
-Package
-Class
-Use
-Tree
-Deprecated
-Index
-Help
-
-Apache Drill JDBC Driver v. 1.2.0
-
-
-
-Prev
-Next
-
-
-Frames
-No Frames
-
-
-All Classes
-
-
-
-
-
-
-
-
-
-
-Uses of Interfaceorg.apache.drill.jdbc.DrillStatement
-
-No usage of 
org.apache.drill.jdbc.DrillStatement
-
-
-
-
-
-
-
-Overview
-Package
-Class
-Use
-Tree
-Deprecated
-Index
-Help
-
-Apache Drill JDBC Driver v. 1.2.0
-
-
-
-Prev
-Next
-
-
-Frames
-No Frames
-
-
-All Classes
-
-
-
-
-
-
-
-
-
-Copyright  2015 http://www.apache.org/;>The Apache Software Foundation. All rights 
reserved.
-
-

http://git-wip-us.apache.org/repos/asf/drill-site/blob/bdf0f883/_site/api/1.2/jdbc/org/apache/drill/jdbc/class-use/Driver.html
--
diff --git a/_site/api/1.2/jdbc/org/apache/drill/jdbc/class-use/Driver.html 
b/_site/api/1.2/jdbc/org/apache/drill/jdbc/class-use/Driver.html
deleted file mode 100644
index dff3605..000
--- a/_site/api/1.2/jdbc/org/apache/drill/jdbc/class-use/Driver.html
+++ /dev/null
@@ -1,119 +0,0 @@
-http://www.w3.org/TR/html4/loose.dtd;>
-
-
-
-
-
-Uses of Class org.apache.drill.jdbc.Driver (Apache Drill JDBC Driver v. 
1.2.0)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-Overview
-Package
-Class
-Use
-Tree
-Deprecated
-Index
-Help
-
-Apache Drill JDBC Driver v. 1.2.0
-
-
-
-Prev
-Next
-
-
-Frames
-No Frames
-
-
-All Classes
-
-
-