[incubator-impala] Git Push Summary

2016-10-04 Thread jbapple
Repository: incubator-impala Updated Tags: refs/tags/2.7.0 [created] 8da1098dd

svn commit: r16362 - in /release/incubator/impala/2.7.0: ./ apache-impala-incubating-2.7.0.tar.gz apache-impala-incubating-2.7.0.tar.gz.asc apache-impala-incubating-2.7.0.tar.gz.md5 apache-impala-incu

2016-10-04 Thread jbapple
Author: jbapple Date: Tue Oct 4 21:15:54 2016 New Revision: 16362 Log: Impala release 2.7.0 PPMC vote thread: http://mail-archives.apache.org/mod_mbox/incubator-impala-dev/201609.mbox/%3CCAC-pSX36EbVohLNXdg7pV7i3gkv5_JajZ8ekbZM9OguOi9fH0Q%40mail.gmail.com%3E mirror: https://lists.apache.org

incubator-impala git commit: IMPALA-3808: Add downloads page

2016-10-05 Thread jbapple
Repository: incubator-impala Updated Branches: refs/heads/asf-site 965c5172d -> 22cae2406 IMPALA-3808: Add downloads page This should not be pushed to the repo until a release is approved by the IPMC and the links are working and the mirrors have 24 hours to catch up. Change-Id: I100a4640d0a7

[1/2] incubator-impala git commit: IMPALA-4204: Remove KuduScanNodeTest

2016-10-06 Thread jbapple
Repository: incubator-impala Updated Branches: refs/heads/master 08636ace0 -> 2b5d1344c IMPALA-4204: Remove KuduScanNodeTest In IMPALA-4204, the limit test could fail depending on the timing of the scanner threads. Now that we have functional tests for Kudu (IMPALA-3718), we can remove the BE

[2/2] incubator-impala git commit: IMPALA-4213: Fix Kudu predicates that need constant folding

2016-10-06 Thread jbapple
IMPALA-4213: Fix Kudu predicates that need constant folding Folding const exprs where there were implicit casts on the slot resulted in the predicate not being pushed to Kudu. Change-Id: I3bab22d90ee00a054c847de6c734b4f24a3f5a85 Reviewed-on: http://gerrit.cloudera.org:8080/4613 Reviewed-by: Matth

incubator-impala git commit: Add 'Downloads' link to bylaws page

2016-10-06 Thread jbapple
Repository: incubator-impala Updated Branches: refs/heads/asf-site 22cae2406 -> 1cb80588b Add 'Downloads' link to bylaws page Change-Id: I7e7373976f32b5f9904e22ba3f137ed94291dd56 Reviewed-on: http://gerrit.cloudera.org:8080/4647 Reviewed-by: Tim Armstrong Tested-by: Jim Apple Project: http

[4/4] incubator-impala git commit: IMPALA-4188: Leopard: support external Docker volumes

2016-10-14 Thread jbapple
IMPALA-4188: Leopard: support external Docker volumes To be able to run the Random Query Generator with Impala and Kudu, we need to mount an external Docker volume as a workaround to KUDU-1419. This patch introduces a series of environment variables a user may tweak in order to help with that purp

[2/4] incubator-impala git commit: IMPALA-3943: Address post-merge comments.

2016-10-14 Thread jbapple
IMPALA-3943: Address post-merge comments. Adds code comments and issues a warning for Parquet files with num_rows=0 but at least one non-empty row group. Change-Id: I72ccf00191afddb8583ac961f1eaf11e5eb28791 Reviewed-on: http://gerrit.cloudera.org:8080/4696 Reviewed-by: Alex Behm Tested-by: Inter

[1/4] incubator-impala git commit: IMPALA-4291: Reduce LLVM module's preparation time

2016-10-14 Thread jbapple
Repository: incubator-impala Updated Branches: refs/heads/master c7fe4385d -> db5de41a8 IMPALA-4291: Reduce LLVM module's preparation time Previously, when creating a LlvmCodeGen object, we run an O(mn) algorithm to map the IRFunction::Type to the actual LLVM::Function object in the module. m

[3/4] incubator-impala git commit: IMPALA-3971, IMPALA-3229: Bootstrap an Impala dev environment

2016-10-14 Thread jbapple
IMPALA-3971, IMPALA-3229: Bootstrap an Impala dev environment This script bootstraps an Impala dev environment on Ubuntu 14.04. It is not hermetic -- it changes some config files for the user and for the OS. It is green on Jenkins, and it runs in about 6.5 hours. The intention is to have this scr

incubator-impala git commit: Follow Apache Project Branding Requirements

2016-10-29 Thread jbapple
Repository: incubator-impala Updated Branches: refs/heads/asf-site 1cb80588b -> cac548670 Follow Apache Project Branding Requirements See: http://www.apache.org/foundation/marks/pmcs.html Specifically: 1. Add TM to logo 2. Add links back to ASF 3. Add trademark notice to footers Change-Id

[1/2] incubator-impala git commit: IMPALA-4330: Fix JSON syntax in generate_metrics.py

2016-11-02 Thread jbapple
Repository: incubator-impala Updated Branches: refs/heads/master dead771d1 -> 81c5b8150 IMPALA-4330: Fix JSON syntax in generate_metrics.py The hardcoded JSON string in MDL_BASE had a superfluous comma, that tripped both the simplejson and json parsers. This change removes it so the string wor

[2/2] incubator-impala git commit: IMPALA-4381: Incorrect AVX version of BloomFilter::Or

2016-11-02 Thread jbapple
IMPALA-4381: Incorrect AVX version of BloomFilter::Or The iteration on the loop incrementing the loop variable by the wrong amount. This version is hopefully clearer. I have tested it on an AVX_enabled machine and I have inspected the assembly. Change-Id: I18480c598fbf6b842398581acde6fc719c40ce27

[3/5] incubator-impala git commit: IMPALA-3676: Use clang as a static analysis tool

2016-11-04 Thread jbapple
IMPALA-3676: Use clang as a static analysis tool This patch adds a script to run clang-tidy over the whole code base. It is a first step towards running clang-tidy over patches as a tool to help users spot bugs before code review. Because of the number of clang-tidy checks, this patch only addres

[4/5] incubator-impala git commit: IMPALA-4423: Correct but conservative implementation of Subquery.equals().

2016-11-04 Thread jbapple
IMPALA-4423: Correct but conservative implementation of Subquery.equals(). The underlying problem was for trivial/constant [NOT] EXISTS subqueries we substituted out Subqueries with bool literals using an ExprSubstitutionMap, but the Subquery.equals() function was not implemented properly, so we e

[2/5] incubator-impala git commit: IMPALA-3676: Use clang as a static analysis tool

2016-11-04 Thread jbapple
http://git-wip-us.apache.org/repos/asf/incubator-impala/blob/14891fe0/be/src/service/impala-server.h -- diff --git a/be/src/service/impala-server.h b/be/src/service/impala-server.h index c40fcb4..b884ea4 100644 --- a/be/src/service

[1/5] incubator-impala git commit: IMPALA-3983/IMPALA-3974: Delete function jar resources after load

2016-11-04 Thread jbapple
Repository: incubator-impala Updated Branches: refs/heads/master 1af0aa4ad -> 32294220c IMPALA-3983/IMPALA-3974: Delete function jar resources after load The Catalog copies the UDF jar files to the local file system to load the Java UDF classes for validation purposes. However we do not clean

[5/5] incubator-impala git commit: IMPALA-4379: Fix and test Kudu table type checking, follow up

2016-11-04 Thread jbapple
IMPALA-4379: Fix and test Kudu table type checking, follow up The first fix for IMPALA-4379 went in before all comments were addressed. First commit: 9b507b6. This addresses some follow-up comments about how to handling ALTER TABLE setting the storage_handler table property, which doesn't really

[1/3] incubator-impala git commit: IMPALA-4352: test infra: store Impala/Kudu primary keys in object model

2016-11-05 Thread jbapple
Repository: incubator-impala Updated Branches: refs/heads/master 50f7753d2 -> 7c0018881 IMPALA-4352: test infra: store Impala/Kudu primary keys in object model Test infrastructure, including the random query generator and the data migrator, needs to know the primary keys of Impala/Kudu tables.

[3/3] incubator-impala git commit: IMPALA-4435: Fix in-predicate-benchmark linking by moving templates

2016-11-05 Thread jbapple
IMPALA-4435: Fix in-predicate-benchmark linking by moving templates In C++ (without export, which was removed in C++11), templates definitions (and not just declarations) must be in headers in order to be implicitly instantiated by callers. in-predicate-benchmark was http://gerrit.cloudera.org:808

[2/3] incubator-impala git commit: IMPALA-3202: DiskIoMgr improvements for new buffer pool

2016-11-05 Thread jbapple
IMPALA-3202: DiskIoMgr improvements for new buffer pool The main goal of this patch is to add support to the DiskIoMgr to read into client-provided buffers, instead of the DiskIoMgr allocating intermediate buffers. This is important for the new buffer pool because we want it to entirely manage its

[2/2] incubator-impala git commit: IMPALA-4455: MemPoolTest.TryAllocateAligned failure: sizeof v. alignof

2016-11-10 Thread jbapple
IMPALA-4455: MemPoolTest.TryAllocateAligned failure: sizeof v. alignof This was testing all memory alignments up to and including sizeof(max_align_t), but the standard says nothing about that. It does say things about alignof(max_align_t), including that malloc() returns memory at least that align

[1/2] incubator-impala git commit: IMPALA-4461: Make sure data gets loaded for wide hbase tables.

2016-11-10 Thread jbapple
Repository: incubator-impala Updated Branches: refs/heads/master 0aeb68050 -> c68734ad6 IMPALA-4461: Make sure data gets loaded for wide hbase tables. Ths patch reverts a change that broke the exhaustive suite of Impala tests. The change was introduced here: https://github.com/apache/incubato

[4/4] incubator-impala git commit: IMPALA-4452: Always call AggFnEvaluator::Open() before AggFnEvaluator::Init()

2016-11-14 Thread jbapple
IMPALA-4452: Always call AggFnEvaluator::Open() before AggFnEvaluator::Init() As part of the fix for IMPALA-2379, the expression contexts of aggregation function evaluators are expected to be opened before their initFn() are called so \ constant arguments can be accessed in initFn(). However, the

[3/4] incubator-impala git commit: IMPALA-4480: zero_length_region_ must be as aligned as max_align_t

2016-11-14 Thread jbapple
IMPALA-4480: zero_length_region_ must be as aligned as max_align_t MemPool::TryAllocateAligned returns memory that might be that aligned, and it returns &MemPool::zero_length_region_ when called to allocate a block of size 0. While I'm here, do some things to make diagnosing test failures from te

[1/4] incubator-impala git commit: IMPALA-4454: test_kudu.TestShowCreateTable flaky

2016-11-14 Thread jbapple
Repository: incubator-impala Updated Branches: refs/heads/master c68734ad6 -> cac02d6b7 IMPALA-4454: test_kudu.TestShowCreateTable flaky The cause of the flakiness is Kudu CREATE TABLE operations that are sometimes taking a long time, leading to timeouts in the hiveserver2 connection. This pat

[2/4] incubator-impala git commit: IMPALA-4477: Upgrade Kudu version to latest master

2016-11-14 Thread jbapple
IMPALA-4477: Upgrade Kudu version to latest master Change the toolchain build and Kudu version to use the latest master, using Kudu commit 88b023. Change-Id: I21c5bc0d28df83cd2e57cd30b6ab416e0d430775 Reviewed-on: http://gerrit.cloudera.org:8080/5054 Reviewed-by: Alex Behm Tested-by: Internal Jen

[2/5] incubator-impala git commit: IMPALA-4436: StringValue::StringCompare() should match strncmp()

2016-11-15 Thread jbapple
IMPALA-4436: StringValue::StringCompare() should match strncmp() According to the C standard, strncmp() interprets characters as unsigned, whereas StringCompare() uses char (which happens to be signed). This means that for values greater than 127, they don't give the same result (which is especia

[4/5] incubator-impala git commit: clang-tidy should tidy tests; fix alignas error in clang builds.

2016-11-15 Thread jbapple
clang-tidy should tidy tests; fix alignas error in clang builds. run_clang_tidy.sh was mistakenly using -notests, which doesn't even compile the tests, rather than -skiptests, which compiles (but does not run) the backend tests. When I discovered this, I also found that all clang builds (includin

[5/5] incubator-impala git commit: Run MT_DOP tests on all file formats.

2016-11-15 Thread jbapple
Run MT_DOP tests on all file formats. Change-Id: I28d5bcc48bbe32fb970b41daa919096061a05beb Reviewed-on: http://gerrit.cloudera.org:8080/5025 Reviewed-by: Alex Behm Tested-by: Internal Jenkins Project: http://git-wip-us.apache.org/repos/asf/incubator-impala/repo Commit: http://git-wip-us.apache.

[3/5] incubator-impala git commit: IMPALA-4444: Transfer row group resources to row batch on scan failure

2016-11-15 Thread jbapple
IMPALA-: Transfer row group resources to row batch on scan failure Previously, if any column reader fails in HdfsParqetScanner::AssembleRows(), the memory pools associated with the ScratchTupleBatch will be freed. This is problematic as ScratchTupleBatch may contain memory pools which are stil

[1/5] incubator-impala git commit: Increase wait times for startup of Hive and its Metastore

2016-11-15 Thread jbapple
Repository: incubator-impala Updated Branches: refs/heads/master b3cbc960a -> 0a654b318 Increase wait times for startup of Hive and its Metastore On Ubuntu 14.04 on AWS EC2 m4.4x, instances, these components frequently take more than 30 seconds to start. I have seen the HMS take more than 90 s

[07/51] [partial] incubator-impala git commit: IMPALA-3398: Add docs to main Impala branch.

2016-11-17 Thread jbapple
http://git-wip-us.apache.org/repos/asf/incubator-impala/blob/3be0f122/docs/topics/impala_shell_options.xml -- diff --git a/docs/topics/impala_shell_options.xml b/docs/topics/impala_shell_options.xml new file mode 100644 index

[29/51] [partial] incubator-impala git commit: IMPALA-3398: Add docs to main Impala branch.

2016-11-17 Thread jbapple
http://git-wip-us.apache.org/repos/asf/incubator-impala/blob/3be0f122/docs/topics/impala_file_formats.xml -- diff --git a/docs/topics/impala_file_formats.xml b/docs/topics/impala_file_formats.xml new file mode 100644 index 000

[19/51] [partial] incubator-impala git commit: IMPALA-3398: Add docs to main Impala branch.

2016-11-17 Thread jbapple
http://git-wip-us.apache.org/repos/asf/incubator-impala/blob/3be0f122/docs/topics/impala_max_block_mgr_memory.xml -- diff --git a/docs/topics/impala_max_block_mgr_memory.xml b/docs/topics/impala_max_block_mgr_memory.xml new file m

[49/51] [partial] incubator-impala git commit: IMPALA-3398: Add docs to main Impala branch.

2016-11-17 Thread jbapple
http://git-wip-us.apache.org/repos/asf/incubator-impala/blob/3be0f122/docs/impala_html.ditaval -- diff --git a/docs/impala_html.ditaval b/docs/impala_html.ditaval new file mode 100644 index 000..b9403f6 --- /dev/null +++ b/docs

[10/51] [partial] incubator-impala git commit: IMPALA-3398: Add docs to main Impala branch.

2016-11-17 Thread jbapple
http://git-wip-us.apache.org/repos/asf/incubator-impala/blob/3be0f122/docs/topics/impala_resource_management.xml -- diff --git a/docs/topics/impala_resource_management.xml b/docs/topics/impala_resource_management.xml new file mode

[02/51] [partial] incubator-impala git commit: IMPALA-3398: Add docs to main Impala branch.

2016-11-17 Thread jbapple
http://git-wip-us.apache.org/repos/asf/incubator-impala/blob/3be0f122/docs/topics/impala_txtfile.xml -- diff --git a/docs/topics/impala_txtfile.xml b/docs/topics/impala_txtfile.xml new file mode 100644 index 000..fc8f846 --- /d

[44/51] [partial] incubator-impala git commit: IMPALA-3398: Add docs to main Impala branch.

2016-11-17 Thread jbapple
http://git-wip-us.apache.org/repos/asf/incubator-impala/blob/3be0f122/docs/topics/impala_array.xml -- diff --git a/docs/topics/impala_array.xml b/docs/topics/impala_array.xml new file mode 100644 index 000..f9519c1 --- /dev/nul

[33/51] [partial] incubator-impala git commit: IMPALA-3398: Add docs to main Impala branch.

2016-11-17 Thread jbapple
http://git-wip-us.apache.org/repos/asf/incubator-impala/blob/3be0f122/docs/topics/impala_drop_function.xml -- diff --git a/docs/topics/impala_drop_function.xml b/docs/topics/impala_drop_function.xml new file mode 100644 index

[23/51] [partial] incubator-impala git commit: IMPALA-3398: Add docs to main Impala branch.

2016-11-17 Thread jbapple
http://git-wip-us.apache.org/repos/asf/incubator-impala/blob/3be0f122/docs/topics/impala_joins.xml -- diff --git a/docs/topics/impala_joins.xml b/docs/topics/impala_joins.xml new file mode 100644 index 000..ddd2f2b --- /dev/nul

[38/51] [partial] incubator-impala git commit: IMPALA-3398: Add docs to main Impala branch.

2016-11-17 Thread jbapple
http://git-wip-us.apache.org/repos/asf/incubator-impala/blob/3be0f122/docs/topics/impala_config_options.xml -- diff --git a/docs/topics/impala_config_options.xml b/docs/topics/impala_config_options.xml new file mode 100644 index 0

[26/51] [partial] incubator-impala git commit: IMPALA-3398: Add docs to main Impala branch.

2016-11-17 Thread jbapple
http://git-wip-us.apache.org/repos/asf/incubator-impala/blob/3be0f122/docs/topics/impala_hbase.xml -- diff --git a/docs/topics/impala_hbase.xml b/docs/topics/impala_hbase.xml new file mode 100644 index 000..8b8d013 --- /dev/nul

[13/51] [partial] incubator-impala git commit: IMPALA-3398: Add docs to main Impala branch.

2016-11-17 Thread jbapple
http://git-wip-us.apache.org/repos/asf/incubator-impala/blob/3be0f122/docs/topics/impala_perf_stats.xml -- diff --git a/docs/topics/impala_perf_stats.xml b/docs/topics/impala_perf_stats.xml new file mode 100644 index 000..33d3

[01/51] [partial] incubator-impala git commit: IMPALA-3398: Add docs to main Impala branch.

2016-11-17 Thread jbapple
Repository: incubator-impala Updated Branches: refs/heads/master 46f5ad48e -> 3be0f122a http://git-wip-us.apache.org/repos/asf/incubator-impala/blob/3be0f122/docs/topics/impala_udf.xml -- diff --git a/docs/topics/impala_udf.xml

[41/51] [partial] incubator-impala git commit: IMPALA-3398: Add docs to main Impala branch.

2016-11-17 Thread jbapple
http://git-wip-us.apache.org/repos/asf/incubator-impala/blob/3be0f122/docs/topics/impala_char.xml -- diff --git a/docs/topics/impala_char.xml b/docs/topics/impala_char.xml new file mode 100644 index 000..0298d57 --- /dev/null +

[18/51] [partial] incubator-impala git commit: IMPALA-3398: Add docs to main Impala branch.

2016-11-17 Thread jbapple
http://git-wip-us.apache.org/repos/asf/incubator-impala/blob/3be0f122/docs/topics/impala_new_features.xml -- diff --git a/docs/topics/impala_new_features.xml b/docs/topics/impala_new_features.xml new file mode 100644 index 000

[46/51] [partial] incubator-impala git commit: IMPALA-3398: Add docs to main Impala branch.

2016-11-17 Thread jbapple
http://git-wip-us.apache.org/repos/asf/incubator-impala/blob/3be0f122/docs/topics/impala_alter_table.xml -- diff --git a/docs/topics/impala_alter_table.xml b/docs/topics/impala_alter_table.xml new file mode 100644 index 000..6

[14/51] [partial] incubator-impala git commit: IMPALA-3398: Add docs to main Impala branch.

2016-11-17 Thread jbapple
http://git-wip-us.apache.org/repos/asf/incubator-impala/blob/3be0f122/docs/topics/impala_perf_joins.xml -- diff --git a/docs/topics/impala_perf_joins.xml b/docs/topics/impala_perf_joins.xml new file mode 100644 index 000..4fcd

[05/51] [partial] incubator-impala git commit: IMPALA-3398: Add docs to main Impala branch.

2016-11-17 Thread jbapple
http://git-wip-us.apache.org/repos/asf/incubator-impala/blob/3be0f122/docs/topics/impala_string.xml -- diff --git a/docs/topics/impala_string.xml b/docs/topics/impala_string.xml new file mode 100644 index 000..1be9d98 --- /dev/

[03/51] [partial] incubator-impala git commit: IMPALA-3398: Add docs to main Impala branch.

2016-11-17 Thread jbapple
http://git-wip-us.apache.org/repos/asf/incubator-impala/blob/3be0f122/docs/topics/impala_tutorial.xml -- diff --git a/docs/topics/impala_tutorial.xml b/docs/topics/impala_tutorial.xml new file mode 100644 index 000..c5c8505 ---

[35/51] [partial] incubator-impala git commit: IMPALA-3398: Add docs to main Impala branch.

2016-11-17 Thread jbapple
http://git-wip-us.apache.org/repos/asf/incubator-impala/blob/3be0f122/docs/topics/impala_ddl.xml -- diff --git a/docs/topics/impala_ddl.xml b/docs/topics/impala_ddl.xml new file mode 100644 index 000..8e6a3bd --- /dev/null +++

[36/51] [partial] incubator-impala git commit: IMPALA-3398: Add docs to main Impala branch.

2016-11-17 Thread jbapple
http://git-wip-us.apache.org/repos/asf/incubator-impala/blob/3be0f122/docs/topics/impala_datetime_functions.xml -- diff --git a/docs/topics/impala_datetime_functions.xml b/docs/topics/impala_datetime_functions.xml new file mode 10

[51/51] [partial] incubator-impala git commit: IMPALA-3398: Add docs to main Impala branch.

2016-11-17 Thread jbapple
IMPALA-3398: Add docs to main Impala branch. These are refugees from doc_prototype. They can be rendered with the DITA Open Toolkit version 2.3.3 by: /tmp/dita-ot-2.3.3/bin/dita \ -i impala.ditamap \ -f html5 \ -o $(mktemp -d) \ -filter impala_html.ditaval Change-Id: I8861e99adc446f659a0

[47/51] [partial] incubator-impala git commit: IMPALA-3398: Add docs to main Impala branch.

2016-11-17 Thread jbapple
http://git-wip-us.apache.org/repos/asf/incubator-impala/blob/3be0f122/docs/topics/impala.xml -- diff --git a/docs/topics/impala.xml b/docs/topics/impala.xml new file mode 100644 index 000..8dc7b2a --- /dev/null +++ b/docs/topic

[43/51] [partial] incubator-impala git commit: IMPALA-3398: Add docs to main Impala branch.

2016-11-17 Thread jbapple
http://git-wip-us.apache.org/repos/asf/incubator-impala/blob/3be0f122/docs/topics/impala_authorization.xml -- diff --git a/docs/topics/impala_authorization.xml b/docs/topics/impala_authorization.xml new file mode 100644 index

[37/51] [partial] incubator-impala git commit: IMPALA-3398: Add docs to main Impala branch.

2016-11-17 Thread jbapple
http://git-wip-us.apache.org/repos/asf/incubator-impala/blob/3be0f122/docs/topics/impala_create_function.xml -- diff --git a/docs/topics/impala_create_function.xml b/docs/topics/impala_create_function.xml new file mode 100644 inde

[22/51] [partial] incubator-impala git commit: IMPALA-3398: Add docs to main Impala branch.

2016-11-17 Thread jbapple
http://git-wip-us.apache.org/repos/asf/incubator-impala/blob/3be0f122/docs/topics/impala_known_issues.xml -- diff --git a/docs/topics/impala_known_issues.xml b/docs/topics/impala_known_issues.xml new file mode 100644 index 000

[20/51] [partial] incubator-impala git commit: IMPALA-3398: Add docs to main Impala branch.

2016-11-17 Thread jbapple
http://git-wip-us.apache.org/repos/asf/incubator-impala/blob/3be0f122/docs/topics/impala_logging.xml -- diff --git a/docs/topics/impala_logging.xml b/docs/topics/impala_logging.xml new file mode 100644 index 000..960f1e6 --- /d

[17/51] [partial] incubator-impala git commit: IMPALA-3398: Add docs to main Impala branch.

2016-11-17 Thread jbapple
http://git-wip-us.apache.org/repos/asf/incubator-impala/blob/3be0f122/docs/topics/impala_noncm_installation.xml -- diff --git a/docs/topics/impala_noncm_installation.xml b/docs/topics/impala_noncm_installation.xml new file mode 10

[08/51] [partial] incubator-impala git commit: IMPALA-3398: Add docs to main Impala branch.

2016-11-17 Thread jbapple
http://git-wip-us.apache.org/repos/asf/incubator-impala/blob/3be0f122/docs/topics/impala_schedule_random_replica.xml -- diff --git a/docs/topics/impala_schedule_random_replica.xml b/docs/topics/impala_schedule_random_replica.xml n

[11/51] [partial] incubator-impala git commit: IMPALA-3398: Add docs to main Impala branch.

2016-11-17 Thread jbapple
http://git-wip-us.apache.org/repos/asf/incubator-impala/blob/3be0f122/docs/topics/impala_proxy.xml -- diff --git a/docs/topics/impala_proxy.xml b/docs/topics/impala_proxy.xml new file mode 100644 index 000..fc2e27c --- /dev/nul

[21/51] [partial] incubator-impala git commit: IMPALA-3398: Add docs to main Impala branch.

2016-11-17 Thread jbapple
http://git-wip-us.apache.org/repos/asf/incubator-impala/blob/3be0f122/docs/topics/impala_ldap.xml -- diff --git a/docs/topics/impala_ldap.xml b/docs/topics/impala_ldap.xml new file mode 100644 index 000..f2ef523 --- /dev/null +

[06/51] [partial] incubator-impala git commit: IMPALA-3398: Add docs to main Impala branch.

2016-11-17 Thread jbapple
http://git-wip-us.apache.org/repos/asf/incubator-impala/blob/3be0f122/docs/topics/impala_show.xml -- diff --git a/docs/topics/impala_show.xml b/docs/topics/impala_show.xml new file mode 100644 index 000..fbee88a --- /dev/null +

[25/51] [partial] incubator-impala git commit: IMPALA-3398: Add docs to main Impala branch.

2016-11-17 Thread jbapple
http://git-wip-us.apache.org/repos/asf/incubator-impala/blob/3be0f122/docs/topics/impala_identifiers.xml -- diff --git a/docs/topics/impala_identifiers.xml b/docs/topics/impala_identifiers.xml new file mode 100644 index 000..7

[24/51] [partial] incubator-impala git commit: IMPALA-3398: Add docs to main Impala branch.

2016-11-17 Thread jbapple
http://git-wip-us.apache.org/repos/asf/incubator-impala/blob/3be0f122/docs/topics/impala_insert.xml -- diff --git a/docs/topics/impala_insert.xml b/docs/topics/impala_insert.xml new file mode 100644 index 000..02ad8c6 --- /dev/

[27/51] [partial] incubator-impala git commit: IMPALA-3398: Add docs to main Impala branch.

2016-11-17 Thread jbapple
http://git-wip-us.apache.org/repos/asf/incubator-impala/blob/3be0f122/docs/topics/impala_float.xml -- diff --git a/docs/topics/impala_float.xml b/docs/topics/impala_float.xml new file mode 100644 index 000..8ef1144 --- /dev/nul

[16/51] [partial] incubator-impala git commit: IMPALA-3398: Add docs to main Impala branch.

2016-11-17 Thread jbapple
http://git-wip-us.apache.org/repos/asf/incubator-impala/blob/3be0f122/docs/topics/impala_optimize_partition_key_scans.xml -- diff --git a/docs/topics/impala_optimize_partition_key_scans.xml b/docs/topics/impala_optimize_partition_

[09/51] [partial] incubator-impala git commit: IMPALA-3398: Add docs to main Impala branch.

2016-11-17 Thread jbapple
http://git-wip-us.apache.org/repos/asf/incubator-impala/blob/3be0f122/docs/topics/impala_s3.xml -- diff --git a/docs/topics/impala_s3.xml b/docs/topics/impala_s3.xml new file mode 100644 index 000..e61bb7c --- /dev/null +++ b/d

[34/51] [partial] incubator-impala git commit: IMPALA-3398: Add docs to main Impala branch.

2016-11-17 Thread jbapple
http://git-wip-us.apache.org/repos/asf/incubator-impala/blob/3be0f122/docs/topics/impala_describe.xml -- diff --git a/docs/topics/impala_describe.xml b/docs/topics/impala_describe.xml new file mode 100644 index 000..c4070c3 ---

[15/51] [partial] incubator-impala git commit: IMPALA-3398: Add docs to main Impala branch.

2016-11-17 Thread jbapple
http://git-wip-us.apache.org/repos/asf/incubator-impala/blob/3be0f122/docs/topics/impala_partitioning.xml -- diff --git a/docs/topics/impala_partitioning.xml b/docs/topics/impala_partitioning.xml new file mode 100644 index 000

[39/51] [partial] incubator-impala git commit: IMPALA-3398: Add docs to main Impala branch.

2016-11-17 Thread jbapple
http://git-wip-us.apache.org/repos/asf/incubator-impala/blob/3be0f122/docs/topics/impala_components.xml -- diff --git a/docs/topics/impala_components.xml b/docs/topics/impala_components.xml new file mode 100644 index 000..44e5

[50/51] [partial] incubator-impala git commit: IMPALA-3398: Add docs to main Impala branch.

2016-11-17 Thread jbapple
http://git-wip-us.apache.org/repos/asf/incubator-impala/blob/3be0f122/docs/impala.ditamap -- diff --git a/docs/impala.ditamap b/docs/impala.ditamap new file mode 100644 index 000..2ddd310 --- /dev/null +++ b/docs/impala.ditamap

[32/51] [partial] incubator-impala git commit: IMPALA-3398: Add docs to main Impala branch.

2016-11-17 Thread jbapple
http://git-wip-us.apache.org/repos/asf/incubator-impala/blob/3be0f122/docs/topics/impala_errata.xml -- diff --git a/docs/topics/impala_errata.xml b/docs/topics/impala_errata.xml new file mode 100644 index 000..c7ad9c0 --- /dev/

[40/51] [partial] incubator-impala git commit: IMPALA-3398: Add docs to main Impala branch.

2016-11-17 Thread jbapple
http://git-wip-us.apache.org/repos/asf/incubator-impala/blob/3be0f122/docs/topics/impala_complex_types.xml -- diff --git a/docs/topics/impala_complex_types.xml b/docs/topics/impala_complex_types.xml new file mode 100644 index

[04/51] [partial] incubator-impala git commit: IMPALA-3398: Add docs to main Impala branch.

2016-11-17 Thread jbapple
http://git-wip-us.apache.org/repos/asf/incubator-impala/blob/3be0f122/docs/topics/impala_sync_ddl.xml -- diff --git a/docs/topics/impala_sync_ddl.xml b/docs/topics/impala_sync_ddl.xml new file mode 100644 index 000..7453e94 ---

[12/51] [partial] incubator-impala git commit: IMPALA-3398: Add docs to main Impala branch.

2016-11-17 Thread jbapple
http://git-wip-us.apache.org/repos/asf/incubator-impala/blob/3be0f122/docs/topics/impala_porting.xml -- diff --git a/docs/topics/impala_porting.xml b/docs/topics/impala_porting.xml new file mode 100644 index 000..3800713 --- /d

[45/51] [partial] incubator-impala git commit: IMPALA-3398: Add docs to main Impala branch.

2016-11-17 Thread jbapple
http://git-wip-us.apache.org/repos/asf/incubator-impala/blob/3be0f122/docs/topics/impala_analytic_functions.xml -- diff --git a/docs/topics/impala_analytic_functions.xml b/docs/topics/impala_analytic_functions.xml new file mode 10

[28/51] [partial] incubator-impala git commit: IMPALA-3398: Add docs to main Impala branch.

2016-11-17 Thread jbapple
http://git-wip-us.apache.org/repos/asf/incubator-impala/blob/3be0f122/docs/topics/impala_fixed_issues.xml -- diff --git a/docs/topics/impala_fixed_issues.xml b/docs/topics/impala_fixed_issues.xml new file mode 100644 index 000

[31/51] [partial] incubator-impala git commit: IMPALA-3398: Add docs to main Impala branch.

2016-11-17 Thread jbapple
http://git-wip-us.apache.org/repos/asf/incubator-impala/blob/3be0f122/docs/topics/impala_explain_level.xml -- diff --git a/docs/topics/impala_explain_level.xml b/docs/topics/impala_explain_level.xml new file mode 100644 index

[30/51] [partial] incubator-impala git commit: IMPALA-3398: Add docs to main Impala branch.

2016-11-17 Thread jbapple
http://git-wip-us.apache.org/repos/asf/incubator-impala/blob/3be0f122/docs/topics/impala_faq.xml -- diff --git a/docs/topics/impala_faq.xml b/docs/topics/impala_faq.xml new file mode 100644 index 000..852beaf --- /dev/null +++

[42/51] [partial] incubator-impala git commit: IMPALA-3398: Add docs to main Impala branch.

2016-11-17 Thread jbapple
http://git-wip-us.apache.org/repos/asf/incubator-impala/blob/3be0f122/docs/topics/impala_avro.xml -- diff --git a/docs/topics/impala_avro.xml b/docs/topics/impala_avro.xml new file mode 100644 index 000..04e84aa --- /dev/null +

[48/51] [partial] incubator-impala git commit: IMPALA-3398: Add docs to main Impala branch.

2016-11-17 Thread jbapple
http://git-wip-us.apache.org/repos/asf/incubator-impala/blob/3be0f122/docs/shared/impala_common.xml -- diff --git a/docs/shared/impala_common.xml b/docs/shared/impala_common.xml new file mode 100644 index 000..b0c9ee5 --- /dev/

[incubator-impala] Git Push Summary

2016-11-28 Thread jbapple
Repository: incubator-impala Updated Branches: refs/heads/doc_prototype [deleted] fb1318929

[1/3] incubator-impala git commit: IMPALA-4542: Fix use-after-free in some BE tests

2016-11-29 Thread jbapple
Repository: incubator-impala Updated Branches: refs/heads/master e2cde13a2 -> 26805809f IMPALA-4542: Fix use-after-free in some BE tests Change RuntimeState::ReleaseResources() to use cached ExecEnv pointer, rather than singleton. Change-Id: I5302d665756183289edf227588da1c094e197584 Testing:

[3/3] incubator-impala git commit: IMPALA-4512: Add a script that builds Impala on stock Ubuntu 14.04.

2016-11-29 Thread jbapple
IMPALA-4512: Add a script that builds Impala on stock Ubuntu 14.04. This is a simpler alternative to bootstrap_development.sh - it acquires enough dependencies to build, but does not attempt to load the test data or even build the tests. This is sometimes a lightweight testing method used by Apach

[2/3] incubator-impala git commit: IMPALA-4000: Restricted Sentry authorization for Kudu Tables

2016-11-29 Thread jbapple
IMPALA-4000: Restricted Sentry authorization for Kudu Tables At this time, there is no comprehensive way of enforcing a Sentry authorization policy against tables stored in Kudu. The following behavior was implemented in this patch: - Only the ALL privilege level can be granted to Kudu tables. F

incubator-impala git commit: IMPALA-4543: Properly escape ignored tests subdirectories.

2016-11-30 Thread jbapple
Repository: incubator-impala Updated Branches: refs/heads/master d21728c0a -> 5a158dbcd IMPALA-4543: Properly escape ignored tests subdirectories. In the shell, double-quoted strings are not very close to "raw" strings; double quotes end the string, but parameter expansion is also performed fo

incubator-impala git commit: Start a docs build system.

2016-12-01 Thread jbapple
Repository: incubator-impala Updated Branches: refs/heads/master b1edca2a5 -> 83f777da7 Start a docs build system. The docs can be built by running "make" from the docs directory. This does not hook into buildall.sh for now, as users who run buildall.sh do not usually edit docs/. Change-Id: I

[2/6] incubator-impala git commit: Add Apache license header to files in doc directory

2016-12-02 Thread jbapple
http://git-wip-us.apache.org/repos/asf/incubator-impala/blob/d484d2f6/docs/topics/impala_v_cpu_cores.xml -- diff --git a/docs/topics/impala_v_cpu_cores.xml b/docs/topics/impala_v_cpu_cores.xml index 8091f3a..612cd64 100644 --- a/d

[5/6] incubator-impala git commit: Add Apache license header to files in doc directory

2016-12-02 Thread jbapple
http://git-wip-us.apache.org/repos/asf/incubator-impala/blob/d484d2f6/docs/topics/impala_create_database.xml -- diff --git a/docs/topics/impala_create_database.xml b/docs/topics/impala_create_database.xml index de556bc..1fc9d45 10

[6/6] incubator-impala git commit: Add Apache license header to files in doc directory

2016-12-02 Thread jbapple
Add Apache license header to files in doc directory This now gives a clean RAT check with bin/check-rat-report.py, which is one way for the Impala community to check compliance with ASF rules on intellectual property. Change-Id: I2ad06435f84a65ba126759e42a18fdaf52cd7036 Reviewed-on: http://gerrit

[3/6] incubator-impala git commit: Add Apache license header to files in doc directory

2016-12-02 Thread jbapple
http://git-wip-us.apache.org/repos/asf/incubator-impala/blob/d484d2f6/docs/topics/impala_refresh.xml -- diff --git a/docs/topics/impala_refresh.xml b/docs/topics/impala_refresh.xml index 4b038ff..d0e3d22 100644 --- a/docs/topics/im

[1/6] incubator-impala git commit: IMPALA-4357: Fix DROP TABLE to pass analysis if the table fails to load

2016-12-02 Thread jbapple
Repository: incubator-impala Updated Branches: refs/heads/master 8d4f8d8d9 -> d484d2f68 IMPALA-4357: Fix DROP TABLE to pass analysis if the table fails to load If a table fails to load, eg. because it was deleted externally from Kudu, we should still allow 'DROP TABLE' to pass analysis. Otherw

[4/6] incubator-impala git commit: Add Apache license header to files in doc directory

2016-12-02 Thread jbapple
http://git-wip-us.apache.org/repos/asf/incubator-impala/blob/d484d2f6/docs/topics/impala_isilon.xml -- diff --git a/docs/topics/impala_isilon.xml b/docs/topics/impala_isilon.xml index f631268..9bc426d 100644 --- a/docs/topics/impal

incubator-impala git commit: Bump Kudu server version to latest master (a70c905006)

2016-12-09 Thread jbapple
Repository: incubator-impala Updated Branches: refs/heads/master 1a558be5f -> e1a6db760 Bump Kudu server version to latest master (a70c905006) This also re-enabled kudu_alter.test, which was disabled in IMPALA-4628. Change-Id: Ie5acdeffea7ed9a68ce0f48d1f68c6c922044704 Reviewed-on: http://gerr

incubator-impala git commit: Change git links from GitHub to the official Apache repo.

2016-12-20 Thread jbapple
Repository: incubator-impala Updated Branches: refs/heads/asf-site cac548670 -> 1c4be4e6b Change git links from GitHub to the official Apache repo. In the discussion on general@incubator around graduating Eagle, their prominent GitHub links were a concern with some IPMC members. Change-Id: If

[incubator-impala] Git Push Summary

2017-01-05 Thread jbapple
Repository: incubator-impala Updated Branches: refs/heads/branch-2.8.0 [created] 4fa9270e6

incubator-impala git commit: Update VERSION string for this release branch

2017-01-05 Thread jbapple
Repository: incubator-impala Updated Branches: refs/heads/branch-2.8.0 4fa9270e6 -> 7b0c13585 Update VERSION string for this release branch Change-Id: Ifd705d23bee5cc2d69725c70760557c15ba7c0a1 Project: http://git-wip-us.apache.org/repos/asf/incubator-impala/repo Commit: http://git-wip-us.apa

[incubator-impala] Git Push Summary

2017-01-06 Thread jbapple
Repository: incubator-impala Updated Branches: refs/heads/branch-2.8.0 [deleted] 7b0c13585

  1   2   3   >