[ 
https://issues.apache.org/jira/browse/NIFI-817?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14950368#comment-14950368
 ] 

Bryan Bende commented on NIFI-817:
----------------------------------

[~ndimiduk] Not to change topics, but was wondering if you could help on a 
couple of HBase questions...

1) I've been working against HBase 1.1.1 and ran into an issue where the client 
was brining in guava 18.0 which caused a problem with a StopWatch. I forced a 
downgrade to guava 16.0 and everything works. Is this a known issue? 

2) Is there any Java code that can parse an HBase filter expression into a 
Filter instance in order to call scan.setFilter(Filter filter) ?

3) What settings control connection timeouts on the client side? I'm asking 
because one time I ran one of the processors when it couldn't reach ZooKeeper, 
and the processor seemed get completely stuck trying to make a connection, and 
required me to force kill NiFi. Right now we do this to create a connection...

{code}
final Configuration hbaseConfig = HBaseConfiguration.create();
        for (final String configFile : 
context.getProperty(HADOOP_CONF_FILES).getValue().split(",")) {
            hbaseConfig.addResource(new Path(configFile.trim()));
        }
        return ConnectionFactory.createConnection(hbaseConfig);
{code} 

> Create Processors to interact with HBase
> ----------------------------------------
>
>                 Key: NIFI-817
>                 URL: https://issues.apache.org/jira/browse/NIFI-817
>             Project: Apache NiFi
>          Issue Type: New Feature
>          Components: Extensions
>            Reporter: Mark Payne
>            Assignee: Bryan Bende
>             Fix For: 0.4.0
>
>         Attachments: 
> 0001-NIFI-817-Initial-implementation-of-HBase-processors.patch
>
>




--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

Reply via email to