Return-Path: X-Original-To: apmail-tomcat-users-archive@www.apache.org Delivered-To: apmail-tomcat-users-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 4F9F510EF4 for ; Mon, 25 Nov 2013 00:15:47 +0000 (UTC) Received: (qmail 41975 invoked by uid 500); 25 Nov 2013 00:15:43 -0000 Delivered-To: apmail-tomcat-users-archive@tomcat.apache.org Received: (qmail 41924 invoked by uid 500); 25 Nov 2013 00:15:43 -0000 Mailing-List: contact users-help@tomcat.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: "Tomcat Users List" Delivered-To: mailing list users@tomcat.apache.org Received: (qmail 41915 invoked by uid 99); 25 Nov 2013 00:15:43 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 25 Nov 2013 00:15:43 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=5.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of aw@ice-sa.com designates 212.85.38.228 as permitted sender) Received: from [212.85.38.228] (HELO tor.combios.es) (212.85.38.228) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 25 Nov 2013 00:15:36 +0000 Received: from [192.168.245.216] (p549E0539.dip0.t-ipconnect.de [84.158.5.57]) (Authenticated sender: andre.warnier@ice-sa.com) by tor.combios.es (Postfix) with ESMTPA id 32FA63C0606 for ; Mon, 25 Nov 2013 01:15:41 +0100 (CET) Message-ID: <5292969F.1070607@ice-sa.com> Date: Mon, 25 Nov 2013 01:15:27 +0100 From: =?ISO-8859-1?Q?Andr=E9_Warnier?= Reply-To: Tomcat Users List User-Agent: Thunderbird 2.0.0.24 (Windows/20100228) MIME-Version: 1.0 To: Tomcat Users List Subject: Re: Java +GC question References: <5291F146.5050303@ice-sa.com> <99C8B2929B39C24493377AC7A121E21FC5CEFFC67D@USEA-EXCH8.na.uis.unisys.com> In-Reply-To: <99C8B2929B39C24493377AC7A121E21FC5CEFFC67D@USEA-EXCH8.na.uis.unisys.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 8bit X-Virus-Checked: Checked by ClamAV on apache.org First of all, thanks for the analysis. Caldarale, Charles R wrote: >> From: Andr� Warnier [mailto:aw@ice-sa.com] >> Subject: Java +GC question > >> java version "1.6.0_26" > > Do we need to tell you to upgrade? Whatever happened to the "Never change a running system" ? Seriously, that system is not giving us any real concern, and it serves many customers on different timezones. Upgrading Java would mean having to plan long in advance with all of them some simultaneous downtime, finding a Java 1.7 package that fits the OS level, and so on.. (pre-packaged things are sweet from a sysadmin point-of-view). Rather than changing that one, we are setting up a new up-to-date machine, and migrating customers one by one to the new one. > >> to a Java expert eye, does the following GC trace look "normal" , or >> "pathological", or in-between ? > > It's a little odd in that there are very few minor GCs occurring. This would imply that whatever objects the application creates are either quite large (and do not fit in the Eden space) or do not escape the methods that use them and are thus allocated on the stack rather than the heap. (I'll not even pretend to understand that) Since the full GCs are 15 minutes apart, take little time, and the heap usage isn't growing, I don't think there's anything to be concerned about. > Basically, my question was aimed at finding out if the way it was doing GC's implied that we could gain some performance by increasing the Heap, or re-allocating/distributing some parts of it. I gather from your response : "better leave it alone". Is that a correct interpretation in light of what I was mentioning earlier ? >> how does one interpret the leading timestamp ? seconds.milliseconds >> since JVM start ? > > Yes. Any known (built-in) way of changing this to be real date/time timestamps, or add such ? --------------------------------------------------------------------- To unsubscribe, e-mail: users-unsubscribe@tomcat.apache.org For additional commands, e-mail: users-help@tomcat.apache.org