Return-Path: X-Original-To: apmail-ambari-dev-archive@www.apache.org Delivered-To: apmail-ambari-dev-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 980F418933 for ; Tue, 5 Jan 2016 04:39:40 +0000 (UTC) Received: (qmail 32037 invoked by uid 500); 5 Jan 2016 04:39:40 -0000 Delivered-To: apmail-ambari-dev-archive@ambari.apache.org Received: (qmail 31627 invoked by uid 500); 5 Jan 2016 04:39:40 -0000 Mailing-List: contact dev-help@ambari.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@ambari.apache.org Delivered-To: mailing list dev@ambari.apache.org Received: (qmail 31589 invoked by uid 99); 5 Jan 2016 04:39:40 -0000 Received: from arcas.apache.org (HELO arcas) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 05 Jan 2016 04:39:40 +0000 Received: from arcas.apache.org (localhost [127.0.0.1]) by arcas (Postfix) with ESMTP id E96252C0451 for ; Tue, 5 Jan 2016 04:39:39 +0000 (UTC) Date: Tue, 5 Jan 2016 04:39:39 +0000 (UTC) From: "Hadoop QA (JIRA)" To: dev@ambari.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Commented] (AMBARI-14474) PHD Ambari from trunk fails at HBase install MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 [ https://issues.apache.org/jira/browse/AMBARI-14474?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15082361#comment-15082361 ] Hadoop QA commented on AMBARI-14474: ------------------------------------ {color:red}-1 overall{color}. Here are the results of testing the latest attachment http://issues.apache.org/jira/secure/attachment/12780095/AMBARI-14474.patch against trunk revision . {color:green}+1 @author{color}. The patch does not contain any @author tags. {color:red}-1 tests included{color}. The patch doesn't appear to include any new or modified tests. Please justify why no new tests are needed for this patch. Also please list what manual steps were performed to verify this patch. {color:green}+1 javac{color}. The applied patch does not increase the total number of javac compiler warnings. {color:green}+1 release audit{color}. The applied patch does not increase the total number of release audit warnings. {color:green}+1 core tests{color}. The patch passed unit tests in . Test results: https://builds.apache.org/job/Ambari-trunk-test-patch/4762//testReport/ Console output: https://builds.apache.org/job/Ambari-trunk-test-patch/4762//console This message is automatically generated. > PHD Ambari from trunk fails at HBase install > -------------------------------------------- > > Key: AMBARI-14474 > URL: https://issues.apache.org/jira/browse/AMBARI-14474 > Project: Ambari > Issue Type: Bug > Reporter: jun aoki > Assignee: Jayush Luniya > Attachments: AMBARI-14474.patch > > > We have got an issue where Hbase Installation fails due to yum install error upon deployment with PHD Ambari (from trunk) > Execution of '/usr/bin/yum -d 0 -e 0 -y install 'hbase_3_0_*'' returned 1. Error: Nothing to do > (full log [1]) > We use PHD-3.3.2.0-2950-centos6.tar.gz and it contains a bunch of 3_3 files instead of 3_0. > e.g. hbase_3_3_2_0_2950-1.1.2.3.3.2.0-2950.el6.noarch.rpm > I'm guessing we need to add 3_3 "packages" to pluggable_stack > https://github.com/Pivotal-Hadoop/ambari/blob/trunk/ambari-common/src/main/python/pluggable_stack_definition/configs/PHD.json#L221 > [1] installation log > {code} > stderr: /var/lib/ambari-agent/data/errors-73.txt > Traceback (most recent call last): > File "/var/lib/ambari-agent/cache/common-services/HBASE/0.96.0.2.0/package/scripts/hbase_client.py", line 80, in > HbaseClient().execute() > File "/usr/lib/python2.6/site-packages/resource_management/libraries/script/script.py", line 228, in execute > method(env) > File "/var/lib/ambari-agent/cache/common-services/HBASE/0.96.0.2.0/package/scripts/hbase_client.py", line 34, in install > self.install_packages(env, params.exclude_packages) > File "/usr/lib/python2.6/site-packages/resource_management/libraries/script/script.py", line 444, in install_packages > Package(name) > File "/usr/lib/python2.6/site-packages/resource_management/core/base.py", line 155, in __init__ > self.env.run() > File "/usr/lib/python2.6/site-packages/resource_management/core/environment.py", line 158, in run > self.run_action(resource, action) > File "/usr/lib/python2.6/site-packages/resource_management/core/environment.py", line 121, in run_action > provider_action() > File "/usr/lib/python2.6/site-packages/resource_management/core/providers/package/__init__.py", line 49, in action_install > self.install_package(package_name, self.resource.use_repos, self.resource.skip_repos) > File "/usr/lib/python2.6/site-packages/resource_management/core/providers/package/yumrpm.py", line 49, in install_package > shell.checked_call(cmd, sudo=True, logoutput=self.get_logoutput()) > File "/usr/lib/python2.6/site-packages/resource_management/core/shell.py", line 70, in inner > result = function(command, **kwargs) > File "/usr/lib/python2.6/site-packages/resource_management/core/shell.py", line 92, in checked_call > tries=tries, try_sleep=try_sleep) > File "/usr/lib/python2.6/site-packages/resource_management/core/shell.py", line 140, in _call_wrapper > result = _call(command, **kwargs_copy) > File "/usr/lib/python2.6/site-packages/resource_management/core/shell.py", line 291, in _call > raise Fail(err_msg) > resource_management.core.exceptions.Fail: Execution of '/usr/bin/yum -d 0 -e 0 -y install 'hbase_3_0_*'' returned 1. Error: Nothing to do > {code} -- This message was sent by Atlassian JIRA (v6.3.4#6332)