Return-Path: X-Original-To: apmail-hive-issues-archive@minotaur.apache.org Delivered-To: apmail-hive-issues-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 8053218D7C for ; Fri, 7 Aug 2015 21:01:46 +0000 (UTC) Received: (qmail 14095 invoked by uid 500); 7 Aug 2015 21:01:46 -0000 Delivered-To: apmail-hive-issues-archive@hive.apache.org Received: (qmail 14070 invoked by uid 500); 7 Aug 2015 21:01:46 -0000 Mailing-List: contact issues-help@hive.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@hive.apache.org Delivered-To: mailing list issues@hive.apache.org Received: (qmail 14055 invoked by uid 99); 7 Aug 2015 21:01:46 -0000 Received: from arcas.apache.org (HELO arcas.apache.org) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 07 Aug 2015 21:01:46 +0000 Date: Fri, 7 Aug 2015 21:01:45 +0000 (UTC) From: "Jason Dere (JIRA)" To: issues@hive.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Commented] (HIVE-11466) HIVE-10166 generates more data on hive.log causing Jenkins to fill all the disk. MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 [ https://issues.apache.org/jira/browse/HIVE-11466?page=3Dcom.atlassian= .jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D1466= 2448#comment-14662448 ]=20 Jason Dere commented on HIVE-11466: ----------------------------------- Looks like there was a bad merge of ThriftBinaryCLIService.java, and server= .serve() is called twice. I commented out the first invocation and it looks= like the log size isn't huge anymore. {noformat} // TCP Server server =3D new TThreadPoolServer(sargs); + server.setServerEventHandler(serverEventHandler); + server.serve(); - String msg =3D "Started " + ThriftBinaryCLIService.class.getSimpleN= ame() + " on port " + String msg =3D "Starting " + ThriftBinaryCLIService.class.getSimple= Name() + " on port " + portNum + " with " + minWorkerThreads + "..." + maxWorkerThre= ads + " worker threads"; LOG.info(msg); + server.serve(); } catch (Throwable t) { {noformat} > HIVE-10166 generates more data on hive.log causing Jenkins to fill all th= e disk. > -------------------------------------------------------------------------= ------- > > Key: HIVE-11466 > URL: https://issues.apache.org/jira/browse/HIVE-11466 > Project: Hive > Issue Type: Bug > Reporter: Sergio Pe=C3=B1a > Assignee: Xuefu Zhang > Attachments: HIVE-11466.patch > > > An issue with HIVE-10166 patch is increasing the size of hive.log and ca= using jenkins to fail because it does not have more space. > Here's a test I run when running TestJdbcWithMiniHS2 before the patch, wi= th the patch, and after other commits. > {noformat} > BEFORE HIVE-10166 > 13M Aug 5 11:57 ./hive-unit/target/tmp/log/hive.log > WITH HIVE-10166 > 2.4G Aug 5 12:07 ./hive-unit/target/tmp/log/hive.log > CURRENT HEAD > 3.2G Aug 5 12:36 ./hive-unit/target/tmp/log/hive.log > {noformat} > This is just a single test, but on Jenkins, hive.log is more than 13G of = size. -- This message was sent by Atlassian JIRA (v6.3.4#6332)