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 AF15EC3C2 for ; Thu, 13 Nov 2014 13:31:34 +0000 (UTC) Received: (qmail 19120 invoked by uid 500); 13 Nov 2014 13:31:34 -0000 Delivered-To: apmail-ambari-dev-archive@ambari.apache.org Received: (qmail 19091 invoked by uid 500); 13 Nov 2014 13:31:34 -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 19071 invoked by uid 99); 13 Nov 2014 13:31:34 -0000 Received: from arcas.apache.org (HELO arcas.apache.org) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 13 Nov 2014 13:31:34 +0000 Date: Thu, 13 Nov 2014 13:31:34 +0000 (UTC) From: "Hudson (JIRA)" To: dev@ambari.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Commented] (AMBARI-8305) Jobs View UI link directs to last Tez Job seen instead of the one clicked 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-8305?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14209746#comment-14209746 ] Hudson commented on AMBARI-8305: -------------------------------- FAILURE: Integrated in Ambari-trunk-Commit #932 (See [https://builds.apache.org/job/Ambari-trunk-Commit/932/]) AMBARI-8305. Jobs View UI link directs to last Tez Job seen instead of the one clicked. (onechiporenko) (onechiporenko: http://git-wip-us.apache.org/repos/asf?p=ambari.git&a=commit&h=eaa54b33a643424a7c0df740d685c3ae5bcda018) * contrib/views/jobs/src/main/resources/ui/app/scripts/views/job/hive_job_details_view.js > Jobs View UI link directs to last Tez Job seen instead of the one clicked > ------------------------------------------------------------------------- > > Key: AMBARI-8305 > URL: https://issues.apache.org/jira/browse/AMBARI-8305 > Project: Ambari > Issue Type: Bug > Components: contrib > Affects Versions: 1.7.0 > Reporter: Oleg Nechiporenko > Assignee: Oleg Nechiporenko > Priority: Blocker > Fix For: 1.7.0 > > Attachments: AMBARI-8305.patch, AMBARI-8305_branch-1.7.0.patch > > > There's a javascript bug where the Jobs View links will go to the wrong job. > Setup: > 1. Add the Jobs View (note that the URL properties must begin with "http://") > 2. Change hive.execution.engine to tez > 3. Run some sample jobs. > {code} > su - hive > cd /tmp > wget http://seanlahman.com/files/database/lahman591-csv.zip > unzip lahman591-csv.zip > hdfs dfs -copyFromLocal Schools.csv /tmp > hive > CREATE TABLE school (id STRING, name STRING, city STRING, state STRING, nick STRING) ROW FORMAT DELIMITED FIELDS TERMINATED BY '\054' STORED AS TEXTFILE; > LOAD DATA LOCAL INPATH '/tmp/Schools.csv' INTO TABLE school; > select state, count(id) as counts from school group by state sort by counts desc limit 10; > select name FROM school order by name asc limit 10; > {code} > Then visit the Jobs View, click on Job 1, then go back on the browser and click on Job 2 (and it will still show data from Job 1), then go back on the browser and click on Job 1 (and it will show data from Job 2). > I repro'ed this on Chrome and Firefox. -- This message was sent by Atlassian JIRA (v6.3.4#6332)