Return-Path: X-Original-To: apmail-hadoop-common-issues-archive@minotaur.apache.org Delivered-To: apmail-hadoop-common-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 2116A10130 for ; Thu, 5 Mar 2015 07:43:40 +0000 (UTC) Received: (qmail 81572 invoked by uid 500); 5 Mar 2015 07:43:39 -0000 Delivered-To: apmail-hadoop-common-issues-archive@hadoop.apache.org Received: (qmail 81520 invoked by uid 500); 5 Mar 2015 07:43:39 -0000 Mailing-List: contact common-issues-help@hadoop.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: common-issues@hadoop.apache.org Delivered-To: mailing list common-issues@hadoop.apache.org Received: (qmail 81507 invoked by uid 99); 5 Mar 2015 07:43:39 -0000 Received: from arcas.apache.org (HELO arcas.apache.org) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 05 Mar 2015 07:43:39 +0000 Date: Thu, 5 Mar 2015 07:43:39 +0000 (UTC) From: "Hudson (JIRA)" To: common-issues@hadoop.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Commented] (HADOOP-11674) oneByteBuf in CryptoInputStream and CryptoOutputStream should be non static 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/HADOOP-11674?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14348325#comment-14348325 ] Hudson commented on HADOOP-11674: --------------------------------- FAILURE: Integrated in Hadoop-trunk-Commit #7266 (See [https://builds.apache.org/job/Hadoop-trunk-Commit/7266/]) HADOOP-11674. oneByteBuf in CryptoInputStream and CryptoOutputStream should be non static. (Sean Busbey via yliu) (yliu: rev 5e9b8144d54f586803212a0bdd8b1c25bdbb1e97) * hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/crypto/CryptoInputStream.java * hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/crypto/CryptoOutputStream.java * hadoop-common-project/hadoop-common/CHANGES.txt > oneByteBuf in CryptoInputStream and CryptoOutputStream should be non static > --------------------------------------------------------------------------- > > Key: HADOOP-11674 > URL: https://issues.apache.org/jira/browse/HADOOP-11674 > Project: Hadoop Common > Issue Type: Bug > Components: io > Affects Versions: 2.6.0 > Reporter: Sean Busbey > Assignee: Sean Busbey > Priority: Critical > Fix For: 2.7.0 > > Attachments: HADOOP-11674.1.patch > > > A common optimization in the io classes for Input/Output Streams is to save a single length-1 byte array to use in single byte read/write calls. > CryptoInputStream and CryptoOutputStream both attempt to follow this practice but mistakenly mark the array as static. That means that only a single instance of each can be present in a JVM safely. -- This message was sent by Atlassian JIRA (v6.3.4#6332)