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 35044200CD0 for ; Tue, 25 Jul 2017 19:35:05 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 2FFAB1672D0; Tue, 25 Jul 2017 17:35:05 +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 7645E1672CA for ; Tue, 25 Jul 2017 19:35:04 +0200 (CEST) Received: (qmail 61945 invoked by uid 500); 25 Jul 2017 17:35:03 -0000 Mailing-List: contact issues-help@impala.incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@impala.incubator.apache.org Delivered-To: mailing list issues@impala.incubator.apache.org Received: (qmail 61936 invoked by uid 99); 25 Jul 2017 17:35:03 -0000 Received: from pnap-us-west-generic-nat.apache.org (HELO spamd2-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 25 Jul 2017 17:35:03 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd2-us-west.apache.org (ASF Mail Server at spamd2-us-west.apache.org) with ESMTP id 24FD31A08CD for ; Tue, 25 Jul 2017 17:35:03 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd2-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: -100.002 X-Spam-Level: X-Spam-Status: No, score=-100.002 tagged_above=-999 required=6.31 tests=[RP_MATCHES_RCVD=-0.001, SPF_PASS=-0.001, USER_IN_WHITELIST=-100] autolearn=disabled Received: from mx1-lw-eu.apache.org ([10.40.0.8]) by localhost (spamd2-us-west.apache.org [10.40.0.9]) (amavisd-new, port 10024) with ESMTP id c3-Go2RYbKqG for ; Tue, 25 Jul 2017 17:35:02 +0000 (UTC) Received: from mailrelay1-us-west.apache.org (mailrelay1-us-west.apache.org [209.188.14.139]) by mx1-lw-eu.apache.org (ASF Mail Server at mx1-lw-eu.apache.org) with ESMTP id 29E315FBEA for ; Tue, 25 Jul 2017 17:35:01 +0000 (UTC) Received: from jira-lw-us.apache.org (unknown [207.244.88.139]) by mailrelay1-us-west.apache.org (ASF Mail Server at mailrelay1-us-west.apache.org) with ESMTP id 5782CE00A2 for ; Tue, 25 Jul 2017 17:35:00 +0000 (UTC) Received: from jira-lw-us.apache.org (localhost [127.0.0.1]) by jira-lw-us.apache.org (ASF Mail Server at jira-lw-us.apache.org) with ESMTP id 0D87B21EE3 for ; Tue, 25 Jul 2017 17:35:00 +0000 (UTC) Date: Tue, 25 Jul 2017 17:35:00 +0000 (UTC) From: "Michael Brown (JIRA)" To: issues@impala.incubator.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Resolved] (IMPALA-3487) stress test didn't fail on hash mismatch errors MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 archived-at: Tue, 25 Jul 2017 17:35:05 -0000 [ https://issues.apache.org/jira/browse/IMPALA-3487?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Michael Brown resolved IMPALA-3487. ----------------------------------- Resolution: Fixed Fix Version/s: Impala 2.10.0 Bug scrub: dupe. > stress test didn't fail on hash mismatch errors > ----------------------------------------------- > > Key: IMPALA-3487 > URL: https://issues.apache.org/jira/browse/IMPALA-3487 > Project: IMPALA > Issue Type: Bug > Components: Infrastructure > Affects Versions: Impala 2.6.0 > Reporter: Michael Brown > Priority: Minor > Fix For: Impala 2.10.0 > > > http://sandbox.jenkins.cloudera.com/job/Impala-Stress-Test-Physical/484/ > That's a green build, but there are messages like these in the console log: > {noformat} > 01:09:27 Process Process-80: > 01:09:27 Traceback (most recent call last): > 01:09:27 File "/usr/lib/python2.7/multiprocessing/process.py", line 258, in _bootstrap > 01:09:27 self.run() > 01:09:27 File "/usr/lib/python2.7/multiprocessing/process.py", line 114, in run > 01:09:27 self._target(*self._args, **self._kwargs) > 01:09:27 File "tests/stress/concurrent_select.py", line 625, in _start_single_runner > 01:09:27 % (query.result_hash, report.result_hash, query.sql)) > 01:09:27 Exception: Result hash mismatch; expected 3440873535184108466, got 3440873535183908922 > 01:09:27 Query: select > 01:09:27 p_brand, > 01:09:27 p_type, > 01:09:27 p_size, > 01:09:27 count(distinct ps_suppkey) as supplier_cnt > 01:09:27 from > 01:09:27 partsupp, > 01:09:27 part > 01:09:27 where > 01:09:27 p_partkey = ps_partkey > 01:09:27 and p_brand <> 'Brand#45' > 01:09:27 and p_type not like 'MEDIUM POLISHED%' > 01:09:27 and p_size in (49, 14, 23, 45, 19, 3, 36, 9) > 01:09:27 and ps_suppkey not in ( > 01:09:27 select > 01:09:27 s_suppkey > 01:09:27 from > 01:09:27 supplier > 01:09:27 where > 01:09:27 s_comment like '%Customer%Complaints%' > 01:09:27 ) > 01:09:27 group by > 01:09:27 p_brand, > 01:09:27 p_type, > 01:09:27 p_size > 01:09:27 order by > 01:09:27 supplier_cnt desc, > 01:09:27 p_brand, > 01:09:27 p_type, > 01:09:27 p_size > 01:09:27 01:09:27 24510 139687650531072 INFO:concurrent_select[374]:Checking for crashes > 01:09:27 01:09:27 24510 139687650531072 INFO:concurrent_select[377]:No crashes detected > 01:09:28 1284 | 100 | 292 | 0 | 136 | 0 | 623 | 212499 | 73720 | 61890 > 01:09:33 1288 | 104 | 292 | 0 | 136 | 0 | 470 | 212463 | 73790 | 62473 > 01:09:39 1293 | 106 | 292 | 0 | 138 | 0 | 613 | 212331 | 74650 | 63492 > 01:09:44 1296 | 108 | 292 | 0 | 139 | 0 | 6656 | 211910 | 74870 | 64185 > {noformat} > In this particular run there were 10 such. > A quick glance suggests we need to have 10 so-called "successive" errors to fail a build if this happens. -- This message was sent by Atlassian JIRA (v6.4.14#64029)