Return-Path: X-Original-To: apmail-drill-commits-archive@www.apache.org Delivered-To: apmail-drill-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 6BAB118837 for ; Fri, 18 Dec 2015 00:33:16 +0000 (UTC) Received: (qmail 82144 invoked by uid 500); 18 Dec 2015 00:33:16 -0000 Delivered-To: apmail-drill-commits-archive@drill.apache.org Received: (qmail 82113 invoked by uid 500); 18 Dec 2015 00:33:16 -0000 Mailing-List: contact commits-help@drill.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: commits@drill.apache.org Delivered-To: mailing list commits@drill.apache.org Received: (qmail 82103 invoked by uid 99); 18 Dec 2015 00:33:16 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 18 Dec 2015 00:33:16 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 25EB8E6967; Fri, 18 Dec 2015 00:33:16 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: krishahn@apache.org To: commits@drill.apache.org Message-Id: <1b0864165fb94e9087ab0cf535d35ccd@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: drill-site git commit: website update Date: Fri, 18 Dec 2015 00:33:16 +0000 (UTC) Repository: drill-site Updated Branches: refs/heads/asf-site 9da9b8822 -> d2e91ed6f website update Project: http://git-wip-us.apache.org/repos/asf/drill-site/repo Commit: http://git-wip-us.apache.org/repos/asf/drill-site/commit/d2e91ed6 Tree: http://git-wip-us.apache.org/repos/asf/drill-site/tree/d2e91ed6 Diff: http://git-wip-us.apache.org/repos/asf/drill-site/diff/d2e91ed6 Branch: refs/heads/asf-site Commit: d2e91ed6f523e03d06cfa136aa8403ccd5778d4a Parents: 9da9b88 Author: Kris Hahn Authored: Thu Dec 17 16:33:03 2015 -0800 Committer: Kris Hahn Committed: Thu Dec 17 16:33:03 2015 -0800 ---------------------------------------------------------------------- docs/functions-for-handling-nulls/index.html | 4 ++-- docs/hive-to-drill-data-type-mapping/index.html | 13 ++++++++++++- docs/storage-plugin-registration/index.html | 2 +- index.html | 2 +- 4 files changed, 16 insertions(+), 5 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/drill-site/blob/d2e91ed6/docs/functions-for-handling-nulls/index.html ---------------------------------------------------------------------- diff --git a/docs/functions-for-handling-nulls/index.html b/docs/functions-for-handling-nulls/index.html index e1cbb8b..0cb1c42 100644 --- a/docs/functions-for-handling-nulls/index.html +++ b/docs/functions-for-handling-nulls/index.html @@ -1074,9 +1074,9 @@ returns a null value of the type of the first expression if the two expressions are equal.

NULLIF Syntax

-
NULLIF ( expr1[, expr2, ... expr_n] )
+
NULLIF ( expr1, expr2 )
 
-

expr1 to expr_n are any valid scalar expressions.

+

expr1 to expr2 are any valid scalar expressions.

This function returns the same type as the first expression.

http://git-wip-us.apache.org/repos/asf/drill-site/blob/d2e91ed6/docs/hive-to-drill-data-type-mapping/index.html ---------------------------------------------------------------------- diff --git a/docs/hive-to-drill-data-type-mapping/index.html b/docs/hive-to-drill-data-type-mapping/index.html index 964b7fa..dc3c703 100644 --- a/docs/hive-to-drill-data-type-mapping/index.html +++ b/docs/hive-to-drill-data-type-mapping/index.html @@ -1046,7 +1046,18 @@
-

Using Drill you can read tables created in Hive that use data types compatible with Drill. Drill currently does not support writing Hive tables. Drill supports the following Hive types for querying:

+

Using Drill you can read tables created in Hive that use data types compatible with Drill. Drill currently does not support writing Hive tables. The map of SQL types and Hive types shows that several Hive types need to be cast to the supported SQL type in a Drill query:

+ +
    +
  • CHAR
    +Cast the Hive CHAR type to VARCHAR.
  • +
  • TINYINT and SMALLINT
    +Cast these types to INTEGER.
  • +
  • BINARY
    +Cast the Hive BINARY type to VARCHAR.
  • +
+ +

Map of SQL and Hive Types

http://git-wip-us.apache.org/repos/asf/drill-site/blob/d2e91ed6/docs/storage-plugin-registration/index.html ---------------------------------------------------------------------- diff --git a/docs/storage-plugin-registration/index.html b/docs/storage-plugin-registration/index.html index 0573f3f..6f8fd80 100644 --- a/docs/storage-plugin-registration/index.html +++ b/docs/storage-plugin-registration/index.html @@ -1074,7 +1074,7 @@ Provides a connection to MongoDB data. -

Storage Plugin Configuration Persistance

+

Storage Plugin Configuration Persistence

Drill saves storage plugin configurations in a temporary directory (embedded mode) or in ZooKeeper (distributed mode). For example, on Mac OS X, Drill uses /tmp/drill/sys.storage_plugins to store storage plugin configurations. The temporary directory clears when you reboot. Copy storage plugin configurations to a secure location to save them when you run drill in embedded mode.

http://git-wip-us.apache.org/repos/asf/drill-site/blob/d2e91ed6/index.html ---------------------------------------------------------------------- diff --git a/index.html b/index.html index a11fd62..5f3d134 100644 --- a/index.html +++ b/index.html @@ -258,7 +258,7 @@ $ bin/drill-embedded
  • Columnar execution engine (the first ever to support complex data!)
  • Data-driven compilation and recompilation at execution time
  • Specialized memory management that reduces memory footprint and eliminates garbage collections
  • -
  • Locality-aware exeucution that reduces network traffic when Drill is co-located with the datastore
  • +
  • Locality-aware execution that reduces network traffic when Drill is co-located with the datastore
  • Advanced cost-based optimizer that pushes processing into the datastore when possible