kudu git commit: Remove namespace hack in hms_client.h

2018-03-07 Thread danburkert
Repository: kudu Updated Branches: refs/heads/master debcb8ea2 -> b525378c5 Remove namespace hack in hms_client.h To avoid having to use the very long Apache.Hadoop.Hive namespace for all of the Thrift-generated HMS types, we aliased the namespace in hms_client.h to 'hive'. This doesn't

[1/2] kudu git commit: env: generalize resource limits and add RLIMIT_NPROC support

2018-03-07 Thread adar
Repository: kudu Updated Branches: refs/heads/master 954d9f71b -> debcb8ea2 env: generalize resource limits and add RLIMIT_NPROC support A follow-on patch will use this to cap the max number of threads in some process-wide thread pools (see KUDU-1913). Change-Id:

[2/2] kudu git commit: KUDU-1913: cap number of threads on server-wide pools

2018-03-07 Thread adar
KUDU-1913: cap number of threads on server-wide pools The last piece of work is to establish an upper bound on the number of threads that may be started in the Raft and Prepare server-wide threadpools. Such caps will make it easier for admins to reason about appropriate values for the

kudu git commit: Add CatalogManager::master_consensus() accessor

2018-03-07 Thread danburkert
Repository: kudu Updated Branches: refs/heads/master 74dc5da86 -> 954d9f71b Add CatalogManager::master_consensus() accessor A patch I'm working on is going to start calling Master::GetMasterHostPorts from inside of CatalogManager::Init. GetMasterHostPorts calls into the catalog manager, and

kudu git commit: Fix RUN_FLAKY_ONLY build

2018-03-07 Thread todd
Repository: kudu Updated Branches: refs/heads/master e6aedc99d -> 74dc5da86 Fix RUN_FLAKY_ONLY build Now that our tests have shard numbers appended (foo-test.) according to ctest, the RUN_FLAKY_ONLY build regex was no longer applying properly. It was converting the flaky test 'foo-test' to

[2/2] kudu git commit: KUDU-721: [Python] Add DECIMAL column type support

2018-03-07 Thread dralves
KUDU-721: [Python] Add DECIMAL column type support This patch adds basic support to the Python client to create, read, and write tables with DECIMAL columns. Change-Id: I8e0855100ab1ea891f990931ec94d0b98c0dece1 Reviewed-on: http://gerrit.cloudera.org:8080/9496 Tested-by: Kudu Jenkins