Return-Path: X-Original-To: apmail-accumulo-notifications-archive@minotaur.apache.org Delivered-To: apmail-accumulo-notifications-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id E536A18BF8 for ; Tue, 9 Jun 2015 19:13:00 +0000 (UTC) Received: (qmail 22863 invoked by uid 500); 9 Jun 2015 19:13:00 -0000 Delivered-To: apmail-accumulo-notifications-archive@accumulo.apache.org Received: (qmail 22818 invoked by uid 500); 9 Jun 2015 19:13:00 -0000 Mailing-List: contact notifications-help@accumulo.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: jira@apache.org Delivered-To: mailing list notifications@accumulo.apache.org Received: (qmail 22807 invoked by uid 99); 9 Jun 2015 19:13:00 -0000 Received: from arcas.apache.org (HELO arcas.apache.org) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 09 Jun 2015 19:13:00 +0000 Date: Tue, 9 Jun 2015 19:13:00 +0000 (UTC) From: "Christopher Tubbs (JIRA)" To: notifications@accumulo.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Commented] (ACCUMULO-3773) ClientConfiguration create repeatedly in server processes 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/ACCUMULO-3773?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14579422#comment-14579422 ] Christopher Tubbs commented on ACCUMULO-3773: --------------------------------------------- Dropping 1.6.3 from the fixVersion on this. I'm not sure this affects 1.6 at all. The log message described above doesn't exist in 1.6, and the only places I saw it constructed repeatedly that might cause this was in tests and mapreduce, where it would kind of make sense. > ClientConfiguration create repeatedly in server processes > --------------------------------------------------------- > > Key: ACCUMULO-3773 > URL: https://issues.apache.org/jira/browse/ACCUMULO-3773 > Project: Accumulo > Issue Type: Bug > Components: gc, master, tserver > Reporter: Josh Elser > Priority: Critical > Fix For: 1.6.3, 1.7.1, 1.8.0 > > > In looking at ACCUMULO-3772, I'm seeing loads of the following: > {noformat} > 2015-05-04 08:30:15,703 [client.ClientConfiguration] WARN : Client configuration constructed with a Configuration that did not have list delimiter disabled or overridden, multi-valued config properties may be unavailable > 2015-05-04 08:30:15,764 [client.ClientConfiguration] WARN : Client configuration constructed with a Configuration that did not have list delimiter disabled or overridden, multi-valued config properties may be unavailable > 2015-05-04 08:30:16,136 [client.ClientConfiguration] WARN : Client configuration constructed with a Configuration that did not have list delimiter disabled or overridden, multi-valued config properties may be unavailable > 2015-05-04 08:30:16,185 [client.ClientConfiguration] WARN : Client configuration constructed with a Configuration that did not have list delimiter disabled or overridden, multi-valued config properties may be unavailable > 2015-05-04 08:30:16,272 [client.ClientConfiguration] WARN : Client configuration constructed with a Configuration that did not have list delimiter disabled or overridden, multi-valued config properties may be unavailable > 2015-05-04 08:30:17,621 [client.ClientConfiguration] WARN : Client configuration constructed with a Configuration that did not have list delimiter disabled or overridden, multi-valued config properties may be unavailable > 2015-05-04 08:30:17,706 [client.ClientConfiguration] WARN : Client configuration constructed with a Configuration that did not have list delimiter disabled or overridden, multi-valued config properties may be unavailable > 2015-05-04 08:30:17,717 [client.ClientConfiguration] WARN : Client configuration constructed with a Configuration that did not have list delimiter disabled or overridden, multi-valued config properties may be unavailable > 2015-05-04 08:30:17,842 [client.ClientConfiguration] WARN : Client configuration constructed with a Configuration that did not have list delimiter disabled or overridden, multi-valued config properties may be unavailable > 2015-05-04 08:30:17,857 [client.ClientConfiguration] WARN : Client configuration constructed with a Configuration that did not have list delimiter disabled or overridden, multi-valued config properties may be unavailable > 2015-05-04 08:30:17,885 [client.ClientConfiguration] WARN : Client configuration constructed with a Configuration that did not have list delimiter disabled or overridden, multi-valued config properties may be unavailable > 2015-05-04 08:30:18,071 [client.ClientConfiguration] WARN : Client configuration constructed with a Configuration that did not have list delimiter disabled or overridden, multi-valued config properties may be unavailable > {noformat} > The log message spam is annoying, but I think it's also indicative of a large problem where we are repeatedly re-creating the same ClientConfiguration object over and over again. This is wasteful and unnecessary as the contents of the ClientConfiguration can be static for the lifetime of the server process. > Need to identify if ClientConfiguration objects are being repeatedly created in the server processes (potentially via AccumuloServerContext) and fix the calling code to avoid the annoying log message over and over. -- This message was sent by Atlassian JIRA (v6.3.4#6332)