Return-Path: X-Original-To: apmail-cxf-issues-archive@www.apache.org Delivered-To: apmail-cxf-issues-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 50008184F2 for ; Thu, 15 Oct 2015 16:35:15 +0000 (UTC) Received: (qmail 13984 invoked by uid 500); 15 Oct 2015 16:35:05 -0000 Delivered-To: apmail-cxf-issues-archive@cxf.apache.org Received: (qmail 13947 invoked by uid 500); 15 Oct 2015 16:35:05 -0000 Mailing-List: contact issues-help@cxf.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@cxf.apache.org Delivered-To: mailing list issues@cxf.apache.org Received: (qmail 13934 invoked by uid 99); 15 Oct 2015 16:35:05 -0000 Received: from arcas.apache.org (HELO arcas.apache.org) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 15 Oct 2015 16:35:05 +0000 Date: Thu, 15 Oct 2015 16:35:05 +0000 (UTC) From: "Sergey Beryozkin (JIRA)" To: issues@cxf.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Commented] (CXF-6642) Memory Leak in ResponseImpl.readEntity() 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/CXF-6642?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14959181#comment-14959181 ] Sergey Beryozkin commented on CXF-6642: --------------------------------------- client.get(Book.class) should be safe right now. > Memory Leak in ResponseImpl.readEntity() > ---------------------------------------- > > Key: CXF-6642 > URL: https://issues.apache.org/jira/browse/CXF-6642 > Project: CXF > Issue Type: Bug > Components: JAX-RS > Affects Versions: 3.1.2, 3.1.3 > Environment: Mac OS X 10.10.5, Spring 4.2.0 > Reporter: Chester Kim > Assignee: Sergey Beryozkin > Priority: Critical > Labels: client, cxf > Fix For: 3.0.7, 3.1.4 > > > Massive number of ResponseImpl instances are not garbage collected after calling readEntity. By looking at VisualVM, it seems like those are indirectly referred by something stored in ThreadLocal which is used by context resolving and never been removed after all. Our production instance actually caused OutOfMemory errors after this. It might be related to https://issues.apache.org/jira/browse/CXF-6458 and looks simiar to https://java.net/jira/browse/JERSEY-2463 but not sure. Note this only happens when I used thread pool. > My workaround was bypassing readEntity() and deal with inputstream directly like following which is not quite desirable but works for now. > {code} > private static Response copy(Response response) { > return Optional.ofNullable(response) > .map(r -> r.getEntity()) > .filter(e -> e instanceof InputStream) > .map(is -> newResponse(response.getStatus(), (InputStream)is)) > .orElse(response); > } > private static Response newResponse(int status, InputStream is) { > Response response = Response.serverError().build(); > try { > String payload = IOUtils.toString(is); > response = Response.status(status).entity(payload).build(); > } catch (IOException e) { > log.error("Failed to read entity from response", e); > } finally { > try { > is.close(); > } catch (IOException e) { > log.error("Failed to close InputStream after reading entity from response", e); > } > } > return response; > } > {code} -- This message was sent by Atlassian JIRA (v6.3.4#6332)