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 C4D20200BAE for ; Fri, 14 Oct 2016 00:54:22 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id C3570160AF6; Thu, 13 Oct 2016 22:54:22 +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 1AF89160AF9 for ; Fri, 14 Oct 2016 00:54:21 +0200 (CEST) Received: (qmail 93907 invoked by uid 500); 13 Oct 2016 22:54:21 -0000 Mailing-List: contact dev-help@hbase.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@hbase.apache.org Delivered-To: mailing list dev@hbase.apache.org Received: (qmail 93749 invoked by uid 99); 13 Oct 2016 22:54:20 -0000 Received: from arcas.apache.org (HELO arcas) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 13 Oct 2016 22:54:20 +0000 Received: from arcas.apache.org (localhost [127.0.0.1]) by arcas (Postfix) with ESMTP id A2EC52C4C75 for ; Thu, 13 Oct 2016 22:54:20 +0000 (UTC) Date: Thu, 13 Oct 2016 22:54:20 +0000 (UTC) From: "Ted Yu (JIRA)" To: dev@hbase.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Created] (HBASE-16830) RSRpcServices#openRegion() should handle the case where table descriptor is null MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 archived-at: Thu, 13 Oct 2016 22:54:23 -0000 Ted Yu created HBASE-16830: ------------------------------ Summary: RSRpcServices#openRegion() should handle the case where table descriptor is null Key: HBASE-16830 URL: https://issues.apache.org/jira/browse/HBASE-16830 Project: HBase Issue Type: Bug Affects Versions: 1.3.0 Reporter: Ted Yu Assignee: Ted Yu [~mantonov] pointed me to the failed TestClusterId in Jenkins 1.3 build. I ran the test locally with Java 8 and consistently stumbled over timeout in starting the mini cluster: {code} 2016-10-13 15:41:05,276 INFO [RpcServer.FifoWFPBQ.priority.handler=5,queue=1,port=59233] regionserver.RSRpcServices(1620): Open hbase:namespace,,1476398463993. 7ab1d0b3b7be8b9a7ce9af61c29d5342. 2016-10-13 15:41:05,277 ERROR [RpcServer.FifoWFPBQ.priority.handler=5,queue=1,port=59233] ipc.RpcServer(2320): Unexpected throwable object java.lang.NullPointerException at org.apache.hadoop.hbase.regionserver.RSRpcServices.openRegion(RSRpcServices.java:1679) at org.apache.hadoop.hbase.protobuf.generated.AdminProtos$AdminService$2.callBlockingMethod(AdminProtos.java:22737) at org.apache.hadoop.hbase.ipc.RpcServer.call(RpcServer.java:2270) at org.apache.hadoop.hbase.ipc.CallRunner.run(CallRunner.java:123) at org.apache.hadoop.hbase.ipc.RpcExecutor$Handler.run(RpcExecutor.java:188) at org.apache.hadoop.hbase.ipc.RpcExecutor$Handler.run(RpcExecutor.java:168) {code} It turned out that htd for hbase:namespace table was null. Once the NPE is fixed, the test passes. -- This message was sent by Atlassian JIRA (v6.3.4#6332)