Re: Unable to read from Kerberised HBase

2018-07-10 Thread Lalit Jadhav
Tried with given snippet, It works when a table placed on single RegionServer. But when Table is distributed across the cluster, I am not able to scan table, Let me know if I am going wrong somewhere. On Tue, Jul 10, 2018 at 2:13 PM, Reid Chan wrote: > Try this way: > > > Connection connection

Region state is PENDING_CLOSE persists.

2018-07-10 Thread Kang Minwoo
Hello. Occasionally, when closing a region, the RS_CLOSE_REGION thread is unable to acquire a lock and is still in the WAITING. (These days, the cluster load increase.) So the Region state is PENDING_CLOSE persists. The thread holding the lock is the RPC handler. If you have any good tips on mov

EMR Read Replica Metadata Table Name

2018-07-10 Thread Austin Heyne
I currently have an EMR cluster that's running a continuous ingest. I'd like to spin up read-only clusters with Spark and Zeppelin to query with. I've gotten the replica up and running with Spark but when an executor tries to query HBase it's throwing NotServingRegionExceptions. """ 18/07/10 2

Re: Bulk Load running files multiple times

2018-07-10 Thread Austin Heyne
Sorry, was out for a week. But yes, I am seeing the renamed files. I'm going to try re-running the bulk load tomorrow with emrfs enabled and see if the consistency layer can help with the master thinking a file didn't get renamed. I'll let you know how it goes or reply with the info from the R

HBase quarterly report Apr - June 2018

2018-07-10 Thread Misty Linville
All, HBase submits a report to the ASF board once a quarter, to inform the board about project health. I'm sending the report to the user@ and dev@ mailing lists because you are the project, and for transparency. If you have any questions about the report or the running of the project, you can pos

Re: Unable to read from Kerberised HBase

2018-07-10 Thread Reid Chan
Try this way: Connection connection = ugi.doAs(new PrivilegedAction() { @Override public Connection run() { return ConnectionFactory.createConnection(configuration); } }); R.C From: Lalit Jadhav Sent: 10 July 2018 16

Re: Unable to read from Kerberised HBase

2018-07-10 Thread Lalit Jadhav
Code Snipper: Configuration configuration = HBaseConfiguration.create(); configuration.set("hbase.zookeeper.quorum", "QUARAM"); configuration.set("hbase.master", "MASTER"); configuration.set("hbase.zookeeper.property.clientPort", "2181"); configuration.set("hadoop.security.authenticat

Re: Unable to read from Kerberised HBase

2018-07-10 Thread Reid Chan
Any more logs about login failure or success or related? And can you show the code snippet of connection creation? From: Lalit Jadhav Sent: 10 July 2018 16:06:32 To: user@hbase.apache.org Subject: Re: Unable to read from Kerberised HBase Table only contains 100 r

Re: Unable to read from Kerberised HBase

2018-07-10 Thread Lalit Jadhav
Table only contains 100 rows. Still not able to scan. On Tue, Jul 10, 2018, 12:21 PM anil gupta wrote: > As per error message, your scan ran for more than 1 minute but the timeout > is set for 1 minute. Hence the error. Try doing smaller scans or increasing > timeout.(PS: HBase is mostly good fo