Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 29CD7200BCC for ; Mon, 24 Oct 2016 17:07:07 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 2713A160B0A; Mon, 24 Oct 2016 15:07:07 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id D3797160AE1 for ; Mon, 24 Oct 2016 16:44:55 +0200 (CEST) Received: (qmail 41863 invoked by uid 500); 24 Oct 2016 14:44:55 -0000 Mailing-List: contact reviews-help@impala.incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Delivered-To: mailing list reviews@impala.incubator.apache.org Received: (qmail 41850 invoked by uid 99); 24 Oct 2016 14:44:54 -0000 Received: from pnap-us-west-generic-nat.apache.org (HELO spamd4-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 24 Oct 2016 14:44:54 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd4-us-west.apache.org (ASF Mail Server at spamd4-us-west.apache.org) with ESMTP id 3850DC0C69 for ; Mon, 24 Oct 2016 14:44:54 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd4-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: 0.362 X-Spam-Level: X-Spam-Status: No, score=0.362 tagged_above=-999 required=6.31 tests=[RDNS_DYNAMIC=0.363, SPF_PASS=-0.001] autolearn=disabled Received: from mx1-lw-us.apache.org ([10.40.0.8]) by localhost (spamd4-us-west.apache.org [10.40.0.11]) (amavisd-new, port 10024) with ESMTP id in84yT6T7Le4 for ; Mon, 24 Oct 2016 14:44:50 +0000 (UTC) Received: from ip-10-146-233-104.ec2.internal (ec2-75-101-130-251.compute-1.amazonaws.com [75.101.130.251]) by mx1-lw-us.apache.org (ASF Mail Server at mx1-lw-us.apache.org) with ESMTPS id 493AC60DBD for ; Mon, 24 Oct 2016 14:44:50 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by ip-10-146-233-104.ec2.internal (8.14.4/8.14.4) with ESMTP id u9OEilUX023920; Mon, 24 Oct 2016 14:44:47 GMT Message-Id: <201610241444.u9OEilUX023920@ip-10-146-233-104.ec2.internal> Date: Mon, 24 Oct 2016 14:44:47 +0000 From: "David Knupp (Code Review)" To: Martin Grund , impala-cr@cloudera.com, reviews@impala.incubator.apache.org CC: Michael Brown , Harrison Sheinblatt Reply-To: dknupp@cloudera.com X-Gerrit-MessageType: newpatchset Subject: =?UTF-8?Q?=5BImpala-ASF-CR=5D_Enabling_end-to-end_tests_on_a_remote_cluster=0A?= X-Gerrit-Change-Id: I1f443a1728a1d28168090c6f54e82dec2cb073e9 X-Gerrit-ChangeURL: X-Gerrit-Commit: 08f6035eff627a299d7f372b4c423b48c7a26a37 In-Reply-To: References: MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Content-Disposition: inline User-Agent: Gerrit/2.12.2 archived-at: Mon, 24 Oct 2016 15:07:07 -0000 David Knupp has uploaded a new patch set (#4). Change subject: Enabling end-to-end tests on a remote cluster ...................................................................... Enabling end-to-end tests on a remote cluster This patch enables data loading and running end-to-end tests on a remote cluster. The requirements to run the tests on a remote cluster are - CDH cluster that is CM managed - KMS and KeyTrustee installed and available as service - Hive warehouse dir points to /test-warehouse The new remote_load_data.py script takes a CM host as argument and will load the test warehouse snapshot on the first cluster managed by this instance of CM. It will automatically pick the necessary configuration needed to perform the data load process. Usage: remote_data_load.py [options] cm_host Options: -h, --help show this help message and exit --cm-user=CM_USER Cloudera Manager admin user --cm-pass=CM_PASS Cloudera Manager admin user password --gateway=GATEWAY Gateway host to upload the data from. If not set, uses the CM host as gateway. --ssh-user=SSH_USER System user on the remote machine with passwordless SSH configured. --no-load Do not try to load the snapshot --exploration-strategy=EXPLORATION_STRATEGY --test Run end-to-end tests against cluster Change-Id: I1f443a1728a1d28168090c6f54e82dec2cb073e9 --- M bin/load-data.py A bin/remote_data_load.py M testdata/bin/compute-table-stats.sh M testdata/bin/create-load-data.sh M testdata/bin/create-table-many-blocks.sh M testdata/bin/generate-schema-statements.py M testdata/bin/load-test-warehouse-snapshot.sh M testdata/bin/load_nested.py M testdata/bin/run-step.sh M testdata/bin/setup-hdfs-env.sh 10 files changed, 575 insertions(+), 60 deletions(-) git pull ssh://gerrit.cloudera.org:29418/Impala-ASF refs/changes/69/4769/4 -- To view, visit http://gerrit.cloudera.org:8080/4769 To unsubscribe, visit http://gerrit.cloudera.org:8080/settings Gerrit-MessageType: newpatchset Gerrit-Change-Id: I1f443a1728a1d28168090c6f54e82dec2cb073e9 Gerrit-PatchSet: 4 Gerrit-Project: Impala-ASF Gerrit-Branch: master Gerrit-Owner: David Knupp Gerrit-Reviewer: David Knupp Gerrit-Reviewer: Harrison Sheinblatt Gerrit-Reviewer: Martin Grund Gerrit-Reviewer: Michael Brown