Re: Loading of coprocessors on a region multiple times

2017-09-12 Thread Steen Manniche
, rsServices, > conf); > > Meaning RegionCoprocessorHost is instantiated per region. > This can explain why you saw the log multiple times. > > On Tue, Sep 12, 2017 at 2:34 AM, Steen Manniche wrote: > >> Hi list. >> >> I have a coprocessor which has been load

Loading of coprocessors on a region multiple times

2017-09-12 Thread Steen Manniche
Hi list. I have a coprocessor which has been loaded on a table 'plot'. The table has 2697 regions across 8 nodes. Recently, I have observed some strangeness in the log-files: 2017-09-12 11:00:28,461 INFO [RS_OPEN_REGION-sild03:16020-16] regionserver.RegionCoprocessorHost: Loaded coprocessor net.

Re: Thrift server kerberos ticket refresh

2017-06-21 Thread Steen Manniche
et renewal logic either. >> > >> > I think we can use facility similar to AuthUtil#getAuthChore(). >> > >> > Mind logging a JIRA ? >> > >> > On Tue, Jun 20, 2017 at 4:17 AM, Steen Manniche >> wrote: >> > >> >> Hi all, >> >>

Re: Thrift server kerberos ticket refresh

2017-06-21 Thread Steen Manniche
the Thrift module. > > Did you encounter any problem, e.g. the Thrift server giving out errors due > to expired Kerberos ticket? > > Thanks, > > Jerry > > On Tue, Jun 20, 2017 at 11:05 AM, Steen Manniche wrote: > >> Hi Ted, >> >> thanks for the feedback.

Re: Thrift server kerberos ticket refresh

2017-06-20 Thread Steen Manniche
Tue, Jun 20, 2017 at 4:17 AM, Steen Manniche wrote: > >> Hi all, >> >> I have been looking through the hbase-thrift code looking for where >> the server performs renewals of kerberos tickets for the provided >> principal/keytab. I cannot seem to find any trace o

Thrift server kerberos ticket refresh

2017-06-20 Thread Steen Manniche
Hi all, I have been looking through the hbase-thrift code looking for where the server performs renewals of kerberos tickets for the provided principal/keytab. I cannot seem to find any trace of this? As an example, the hadoop-common provides the class UserGroupInformation, which exposes the meth

Re: Hbase indexer for SOLR

2017-06-07 Thread Steen Manniche
It looks like it is trying to connect to a ZooKeeper instance. Have you set up your environment according to the instructions on the lily website? Br, Den 7. jun. 2017 4.54 PM skrev "Dima Spivak" : > The :2181/solr config looks suspect to me, but as Busbey points out, > questions of how to succe

Re: request for review of patch

2017-04-11 Thread Steen Manniche
rocess though...) > > W.r.t. HBASE-17817, I'd suggest to upload the patch onto review board first > to draw more attentions. > > Best Regards, > Yu > > On 6 April 2017 at 15:53, Steen Manniche wrote: > >> Hi list, >> >> I created and attached a

request for review of patch

2017-04-06 Thread Steen Manniche
happen. What should I do from here? Best, Steen Manniche

Re: Re: HBase master dies (1.1.2) often

2017-03-29 Thread Steen Manniche
Have you tried checking the network connections between the hbase servers and the zookeeper instance? when the error happens, you could try checking the status of the zookeeper instance from one of the hbase machines with e.g. `echo ruok | netcat zookeeper-server-adress port-for-zookeeper` br, s

HBase server aborts on coprocessor exceptions even though hbase.coprocessor.abortonerror is set to false

2017-02-01 Thread Steen Manniche
I'm trying to specify some sanity checks in my coprocessor's start() method, throwing exceptions if the checks fail. I have tried throwing IllegalArgumentException and CoprocessorException from the start method, but on the client side (a junit test), all I get is a RuntimeException with no traces o

Re: On signalling clients from coprocessors

2017-02-01 Thread Steen Manniche
my MissingIndexKeyException as its first wrapped exception - retrievable by RetriesExhaustedWithDetailsException#getCause(int) This works and does not cause the HBase RS to abort. On Tue, Jan 31, 2017 at 1:00 PM, Steen Manniche wrote: > Hi Gary, > > I did some further testing of th

Re: On signalling clients from coprocessors

2017-01-31 Thread Steen Manniche
the processing of the Put and just return to the client? Thanks again for your time. Best regards, Steen On Sun, Jan 29, 2017 at 4:42 PM, Steen Manniche wrote: > Hi Gary, > > thanks for taking the time to answer this. Indeed, from my tests, it seems > that throwing a Coprocess

Re: On signalling clients from coprocessors

2017-01-29 Thread Steen Manniche
gt; > Yes, for exceptions outside of this hierarchy, there is no way to know if > the exception is recoverable or not, so the safe route is chosen and either > the regionserver will abort or the coprocessor will be unloaded, depending > on configuration. > > On Fri, Jan 27, 2017 at

On signalling clients from coprocessors

2017-01-27 Thread Steen Manniche
advance and best regards, Steen Manniche