Return-Path: X-Original-To: apmail-hbase-issues-archive@www.apache.org Delivered-To: apmail-hbase-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 801EF176E8 for ; Thu, 16 Oct 2014 03:09:35 +0000 (UTC) Received: (qmail 19894 invoked by uid 500); 16 Oct 2014 03:09:35 -0000 Delivered-To: apmail-hbase-issues-archive@hbase.apache.org Received: (qmail 19850 invoked by uid 500); 16 Oct 2014 03:09:35 -0000 Mailing-List: contact issues-help@hbase.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Delivered-To: mailing list issues@hbase.apache.org Received: (qmail 19625 invoked by uid 99); 16 Oct 2014 03:09:35 -0000 Received: from arcas.apache.org (HELO arcas.apache.org) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 16 Oct 2014 03:09:35 +0000 Date: Thu, 16 Oct 2014 03:09:34 +0000 (UTC) From: "Andrew Purtell (JIRA)" To: issues@hbase.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Commented] (HBASE-12274) Race between RegionScannerImpl#nextInternal() and RegionScannerImpl#close() may produce null pointer exception 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/HBASE-12274?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14173282#comment-14173282 ] Andrew Purtell commented on HBASE-12274: ---------------------------------------- The v3 patch looks ok > Race between RegionScannerImpl#nextInternal() and RegionScannerImpl#close() may produce null pointer exception > -------------------------------------------------------------------------------------------------------------- > > Key: HBASE-12274 > URL: https://issues.apache.org/jira/browse/HBASE-12274 > Project: HBase > Issue Type: Bug > Affects Versions: 0.98.6.1 > Reporter: Ted Yu > Assignee: Ted Yu > Fix For: 2.0.0, 0.98.8, 0.99.2 > > Attachments: 12274-v2.txt, 12274-v2.txt, 12274-v3.txt > > > I saw the following in region server log: > {code} > 2014-10-15 03:28:36,976 ERROR [B.DefaultRpcServer.handler=0,queue=0,port=60020] ipc.RpcServer: Unexpected throwable object > java.lang.NullPointerException > at org.apache.hadoop.hbase.regionserver.HRegion$RegionScannerImpl.nextInternal(HRegion.java:5023) > at org.apache.hadoop.hbase.regionserver.HRegion$RegionScannerImpl.nextRaw(HRegion.java:4932) > at org.apache.hadoop.hbase.regionserver.HRegion$RegionScannerImpl.nextRaw(HRegion.java:4923) > at org.apache.hadoop.hbase.regionserver.HRegionServer.scan(HRegionServer.java:3245) > at org.apache.hadoop.hbase.protobuf.generated.ClientProtos$ClientService$2.callBlockingMethod(ClientProtos.java:29994) > at org.apache.hadoop.hbase.ipc.RpcServer.call(RpcServer.java:2078) > at org.apache.hadoop.hbase.ipc.CallRunner.run(CallRunner.java:108) > at org.apache.hadoop.hbase.ipc.RpcExecutor.consumerLoop(RpcExecutor.java:114) > at org.apache.hadoop.hbase.ipc.RpcExecutor$1.run(RpcExecutor.java:94) > at java.lang.Thread.run(Thread.java:745) > {code} > This is where the NPE happened: > {code} > // Let's see what we have in the storeHeap. > KeyValue current = this.storeHeap.peek(); > {code} > The cause was race between nextInternal(called through nextRaw) and close methods. > nextRaw() is not synchronized. -- This message was sent by Atlassian JIRA (v6.3.4#6332)