Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 66DDE200C10 for ; Fri, 3 Feb 2017 21:34:58 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id 658DD160B43; Fri, 3 Feb 2017 20:34:58 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 812C4160B3F for ; Fri, 3 Feb 2017 21:34:57 +0100 (CET) Received: (qmail 26351 invoked by uid 500); 3 Feb 2017 20:34:55 -0000 Mailing-List: contact common-issues-help@hadoop.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Delivered-To: mailing list common-issues@hadoop.apache.org Received: (qmail 26323 invoked by uid 99); 3 Feb 2017 20:34:55 -0000 Received: from pnap-us-west-generic-nat.apache.org (HELO spamd4-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 03 Feb 2017 20:34:55 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd4-us-west.apache.org (ASF Mail Server at spamd4-us-west.apache.org) with ESMTP id E455DC16CC for ; Fri, 3 Feb 2017 20:34:54 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd4-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: -1.199 X-Spam-Level: X-Spam-Status: No, score=-1.199 tagged_above=-999 required=6.31 tests=[KAM_ASCII_DIVIDERS=0.8, KAM_LAZY_DOMAIN_SECURITY=1, RP_MATCHES_RCVD=-2.999] autolearn=disabled Received: from mx1-lw-us.apache.org ([10.40.0.8]) by localhost (spamd4-us-west.apache.org [10.40.0.11]) (amavisd-new, port 10024) with ESMTP id LDSPo_VtdaUQ for ; Fri, 3 Feb 2017 20:34:53 +0000 (UTC) Received: from mailrelay1-us-west.apache.org (mailrelay1-us-west.apache.org [209.188.14.139]) by mx1-lw-us.apache.org (ASF Mail Server at mx1-lw-us.apache.org) with ESMTP id 955795FBB2 for ; Fri, 3 Feb 2017 20:34:53 +0000 (UTC) Received: from jira-lw-us.apache.org (unknown [207.244.88.139]) by mailrelay1-us-west.apache.org (ASF Mail Server at mailrelay1-us-west.apache.org) with ESMTP id 6688CE059C for ; Fri, 3 Feb 2017 20:34:52 +0000 (UTC) Received: from jira-lw-us.apache.org (localhost [127.0.0.1]) by jira-lw-us.apache.org (ASF Mail Server at jira-lw-us.apache.org) with ESMTP id B3B122528E for ; Fri, 3 Feb 2017 20:34:51 +0000 (UTC) Date: Fri, 3 Feb 2017 20:34:51 +0000 (UTC) From: "Gopal V (JIRA)" To: common-issues@hadoop.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Resolved] (HADOOP-14054) NativeAzureFileSystem has multiple synchronized BufferedStream:read() calls in it MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 archived-at: Fri, 03 Feb 2017 20:34:58 -0000 [ https://issues.apache.org/jira/browse/HADOOP-14054?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Gopal V resolved HADOOP-14054. ------------------------------ Resolution: Won't Fix Closing as WONTFIX - will file issues on Azure github > NativeAzureFileSystem has multiple synchronized BufferedStream:read() calls in it > --------------------------------------------------------------------------------- > > Key: HADOOP-14054 > URL: https://issues.apache.org/jira/browse/HADOOP-14054 > Project: Hadoop Common > Issue Type: Bug > Components: fs/azure > Reporter: Gopal V > > See the lock around the multiple buffered input streams with the read1 > java.io.BufferedInputStream.read() calls are all synchronized blocks. > {code} > IO-Elevator-Thread-9" #288 daemon prio=5 os_prio=0 tid=0x00007fbf9c0aa000 nid=0xa07d runnable [0x00007faf3b4b4000] > java.lang.Thread.State: RUNNABLE > sun.security.provider.DigestBase.implCompressMultiBlock(DigestBase.java:140) > at sun.security.provider.DigestBase.engineUpdate(DigestBase.java:127) > at java.security.MessageDigest$Delegate.engineUpdate(MessageDigest.java:584) > at java.security.MessageDigest.update(MessageDigest.java:325) > at com.microsoft.azure.storage.core.Utility.writeToOutputStream(Utility.java:1329) > at com.microsoft.azure.storage.blob.CloudBlob$9.postProcessResponse(CloudBlob.java:1410) > at com.microsoft.azure.storage.blob.CloudBlob$9.postProcessResponse(CloudBlob.java:1310) > at com.microsoft.azure.storage.core.ExecutionEngine.executeWithRetry(ExecutionEngine.java:146) > at com.microsoft.azure.storage.blob.CloudBlob.downloadRangeInternal(CloudBlob.java:1499) > at com.microsoft.azure.storage.blob.BlobInputStream.dispatchRead(BlobInputStream.java:255) > - eliminated <0x00007fbdd5475b68> (a com.microsoft.azure.storage.blob.BlobInputStream) > at com.microsoft.azure.storage.blob.BlobInputStream.readInternal(BlobInputStream.java:448) > - locked <0x00007fbdd5475b68> (a com.microsoft.azure.storage.blob.BlobInputStream) > at com.microsoft.azure.storage.blob.BlobInputStream.read(BlobInputStream.java:420) > at java.io.BufferedInputStream.read1(BufferedInputStream.java:284) > at java.io.BufferedInputStream.read(BufferedInputStream.java:345) > - locked <0x00007fbdd5475b38> (a java.io.BufferedInputStream) > at java.io.DataInputStream.read(DataInputStream.java:149) > at org.apache.hadoop.fs.azure.NativeAzureFileSystem$NativeAzureFsInputStream.read(NativeAzureFileSystem.java:820) > - locked <0x00007fbdd5475ac0> (a org.apache.hadoop.fs.azure.NativeAzureFileSystem$NativeAzureFsInputStream) > at java.io.BufferedInputStream.read1(BufferedInputStream.java:284) > at java.io.BufferedInputStream.read(BufferedInputStream.java:345) > - locked <0x00007fbdd5475a90> (a org.apache.hadoop.fs.BufferedFSInputStream) > at java.io.DataInputStream.read(DataInputStream.java:149) > at org.apache.hadoop.mapreduce.lib.input.UncompressedSplitLineReader.fillBuffer(UncompressedSplitLineReader.java:62) > at org.apache.hadoop.util.LineReader.readDefaultLine(LineReader.java:216) > at org.apache.hadoop.util.LineReader.readLine(LineReader.java:174) > at org.apache.hadoop.mapreduce.lib.input.UncompressedSplitLineReader.readLine(UncompressedSplitLineReader.java:94) > {code} -- This message was sent by Atlassian JIRA (v6.3.15#6346) --------------------------------------------------------------------- To unsubscribe, e-mail: common-issues-unsubscribe@hadoop.apache.org For additional commands, e-mail: common-issues-help@hadoop.apache.org