[1/3] impala git commit: IMPALA-4690: [DOCS] More content for CONV()

2018-08-06 Thread tarmstrong
Repository: impala Updated Branches: refs/heads/master 3334c167a -> a0673c058 IMPALA-4690: [DOCS] More content for CONV() Change-Id: I4e424fd5a009ff5aa2d35a403e08fcd33c75fec5 Reviewed-on: http://gerrit.cloudera.org:8080/11075 Reviewed-by: Jim Apple Tested-by: Impala Public Jenkins

[3/3] impala git commit: IMPALA-7396: unblock testing with --thread_creation_fault_injection

2018-08-06 Thread tarmstrong
IMPALA-7396: unblock testing with --thread_creation_fault_injection These are minimal fixes to allow testing new patches with the fault injection. ClientRequestState: fixing this seems somewhat involved, so disabled the fault injection for now to unblock further testing. HdfsScanNode:

[2/3] impala git commit: IMPALA-6789: disable impersonation in hive in minicluster

2018-08-06 Thread tarmstrong
IMPALA-6789: disable impersonation in hive in minicluster Due to bug of HADOOP-7050, users with dots in their username can't launch HiveServer2 in minicluster. To work arround this, we can set hive.server2.enable.doAs to false to disable impersonation in hive. Impala's authorization only depends

[5/5] impala git commit: IMPALA-7242/IMPALA-7243: check for overflow when converting IntVal to DecimalValue

2018-08-06 Thread tarmstrong
IMPALA-7242/IMPALA-7243: check for overflow when converting IntVal to DecimalValue This change adds a check for an overflow which can happen during converting num_buckets from IntVal to a DecimalValue during width_bucket evaluation. An overflow can result in hitting a DCHECK if it needs int256

[3/5] impala git commit: IMPALA-7385: Fix test-with-docker errors having to do with time zones.

2018-08-06 Thread tarmstrong
IMPALA-7385: Fix test-with-docker errors having to do with time zones. ExprTest.TimestampFunctions, query_test.test_scanners.TestOrc.test_type_conversions, and query_test.test_queries.TestHdfsQueries.test_hdfs_scan_node were all failing when using test-with-docker with mismatched dates. As it

[1/5] impala git commit: IMPALA-7258: Support querying HBase tables in LocalCatalog

2018-08-06 Thread tarmstrong
Repository: impala Updated Branches: refs/heads/master a0673c058 -> df3f16584 http://git-wip-us.apache.org/repos/asf/impala/blob/e6bf4dc2/fe/src/main/java/org/apache/impala/catalog/local/LocalHbaseTable.java -- diff --git

[4/5] impala git commit: IMPALA-7397: fix DCHECK in impala::AggregationNode::Close

2018-08-06 Thread tarmstrong
IMPALA-7397: fix DCHECK in impala::AggregationNode::Close As part of IMPALA-110, all of the logic of performing aggregations was refactored out of the aggregation ExecNode and into Aggregators. Each Aggregator manages its own memory, so a DCHECK was added in AggregationNode::Close to ensure that

impala git commit: [DOCS] Dedicated coordinators and executors explained

2018-08-06 Thread arodoni
Repository: impala Updated Branches: refs/heads/master 34fd9732e -> 312a8d60d [DOCS] Dedicated coordinators and executors explained Change-Id: Ic0038eb40951ddf619ea6470a7363122635391d8 Reviewed-on: http://gerrit.cloudera.org:8080/11080 Tested-by: Impala Public Jenkins Reviewed-by: Tim

impala git commit: IMPALA-7387: Set correct MIME type for JSON webpages

2018-08-06 Thread tarmstrong
Repository: impala Updated Branches: refs/heads/master 312a8d60d -> 3334c167a IMPALA-7387: Set correct MIME type for JSON webpages Right now Impala sets "text/plain" as the MIME type for all non-HTML pages. As per RFC-4627[1], JSON's prescribed MIME type is "application/json". Additionally,