Re: Access request to dev and users slack channel

2019-07-21 Thread Néstor Boscán
On Sun, Jul 21, 2019 at 10:33 AM luoc wrote: > Hello, > > > I am interested to start to make contributions and I want to request access > to the Hbase slack channels for the email address > luocoo...@qq.com > > > Thank you.

Re: Is it good choice to access hbase via DAO?

2016-07-20 Thread Néstor Boscán
Yes, any database operation. You can have multiple Dao classes with different purposes. Regards, Nestor On Wednesday, July 20, 2016, Yu Wei wrote: > Could it also support batch processing? > > > > From: N?stor Bosc?n

Re: Is it good choice to access hbase via DAO?

2016-07-20 Thread Néstor Boscán
The idea of the DAO class is to encapsulate your data interactions in one class so that all HBase specific classes go on that DAO class. To me it makes perfect sense. The advantage is that in the future if you want to change Hbase for something else you will probable only change that DAO class.

Re: Java API vs Hbase Thrift

2016-01-12 Thread Néstor Boscán
Hi In my experience ... faster ... and from what I remember there was functionality in Java that thrift was missing. What I understand is that the Thrift client uses the Java API. Regards, Néstor On Tue, Jan 12, 2016 at 7:59 AM, Rajeshkumar J wrote: > Hi, > > I

HBase Java Client API hangs

2014-11-30 Thread Néstor Boscán
Hi I'm using HBase Java API 0.98.7-hadoop2 to try to connect to my HBase 0.98.7 installation in my laptop. My hbase-site.xml in the HBase software and CLASSPATH file are this: configuration property namehbase.rootdir/name valuefile:///C:/Desarrollo/hbase-0.98.7-hadoop2/data/hbase/value

Re: Is Thrift Java API Hbase.Client thread safe?

2014-11-30 Thread Néstor Boscán
instances. Use one table instance per thread. Be sure to close tables and connections when you're finished with them. On Friday, November 28, 2014, Néstor Boscán nesto...@gmail.com wrote: Hi So if I use the HBase Java API is it Thread Safe? Regards, Néstor On Fri, Nov 28, 2014

Re: Is Thrift Java API Hbase.Client thread safe?

2014-11-30 Thread Néstor Boscán
-- how did you start HBase? Can you paste the last 100 log lines from the client and from the server? Can you connect to the zookeeper port, 2181? You can try with a simple network tool like telnet. On Sun, Nov 30, 2014 at 6:36 AM, Néstor Boscán nesto...@gmail.com wrote: Hi Nick I've changed

Re: Is Thrift Java API Hbase.Client thread safe?

2014-11-30 Thread Néstor Boscán
to close tables and connections when you're finished with them. On Friday, November 28, 2014, Néstor Boscán nesto...@gmail.com wrote: Hi So if I use the HBase Java API is it Thread Safe? Regards, Néstor On Fri, Nov 28, 2014 at 7:00 PM, Néstor Boscán nesto...@gmail.com

Re: Using HBase Thrift API to move a number of rows

2014-11-30 Thread Néstor Boscán
/PageFilter.html On Thursday, November 27, 2014, Néstor Boscán nesto...@gmail.com wrote: Hi Is there a way to use the HBase Thrift Scanner to just jump a number of rows instead of reading them one by one. This is very useful for paging. Regards, Néstor

Is Thrift Java API Hbase.Client thread safe?

2014-11-28 Thread Néstor Boscán
Hi I'm using the Thrift Java API on a web application. Is the Hbase.Client thread safe? Regards, Néstor

Re: Is Thrift Java API Hbase.Client thread safe?

2014-11-28 Thread Néstor Boscán
thread safe. There are some shared data members and there are no synchronizes in the class. St.Ack On Fri, Nov 28, 2014 at 12:57 PM, Néstor Boscán nesto...@gmail.com wrote: Hi I'm using the Thrift Java API on a web application. Is the Hbase.Client thread safe? Regards, Néstor

Re: Is Thrift Java API Hbase.Client thread safe?

2014-11-28 Thread Néstor Boscán
Hi So if I use the HBase Java API is it Thread Safe? Regards, Néstor On Fri, Nov 28, 2014 at 7:00 PM, Néstor Boscán nesto...@gmail.com wrote: Hi Stack Thanks for the quick response. I tried using the Hbase Java API from my laptop connecting to my HBase installation in a server

Re: Invalid Comparater or Expected 4 or 6 but got: N using filter with Java Thrift API

2014-11-27 Thread Néstor Boscán
The error was that in 'value' I have to specify the comparator binary:, binaryprefix:, etc. I was confusing comparator with the compare operator. Regards, Néstor On Wed, Nov 26, 2014 at 6:42 AM, Néstor Boscán nesto...@gmail.com wrote: Hi I've tried to apply the filters using the Java Thrift

Using HBase Thrift API to move a number of rows

2014-11-27 Thread Néstor Boscán
Hi Is there a way to use the HBase Thrift Scanner to just jump a number of rows instead of reading them one by one. This is very useful for paging. Regards, Néstor

Invalid Comparater or Expected 4 or 6 but got: N using filter with Java Thrift API

2014-11-26 Thread Néstor Boscán
Hi I've tried to apply the filters using the Java Thrift API but I get in the Thrift server log screen: SingleColumnValueFilter('familycolumn', 'column', =, 'value') = IllegalArgumentException: Invalid comparator SingleColumnValueFilter('familycolumn', 'column', EQUAL, 'value') =

Re: Can I use the Thrift API to scan with filters?

2014-11-25 Thread Néstor Boscán
://hbase.apache.org/book.html#thrift St.Ack On Tue, Nov 25, 2014 at 6:49 AM, Néstor Boscán nesto...@gmail.com wrote: Hi I've been searching for Thrift Java API examples with filters but can't find any. Does the current Thrift API supports it? Regards, Néstor

Using Thrift Java API to get last row

2014-11-24 Thread Néstor Boscán
Hi How do I use the Thrift Java API to get the last row in the table? Regards, Néstor

How do I configure my Java IDE Hbase Connection

2014-11-14 Thread Néstor Boscán
Hi I'm very new to hbase. I have a HDP virtual machine running in my laptop and I'm programming using a Java IDE in my laptop. I use Maven to get the library and dependencies for hbase-client.jar version 0.99.0. How do I configure my project so that I can connect with the hbase running in the

Re: How do I configure my Java IDE Hbase Connection

2014-11-14 Thread Néstor Boscán
be able to communicate with the cluster. Cheers On Fri, Nov 14, 2014 at 4:27 AM, Néstor Boscán nesto...@gmail.com wrote: Hi I'm very new to hbase. I have a HDP virtual machine running in my laptop and I'm programming using a Java IDE in my laptop. I use Maven to get the library

Re: Trying to connect HBase Java Client I get: Failed to locate the winutils binary in the hadoop binary path

2014-11-13 Thread Néstor Boscán
. -Dima On Wed, Nov 12, 2014 at 4:47 PM, Néstor Boscán nesto...@gmail.com wrote: Yes I already applied that. I just wanted to understand that if I have a web application then I'll have to have the hadoop distribution installed to use the hbase client. Regards, Néstor On Wed, Nov

Re: Trying to connect HBase Java Client I get: Failed to locate the winutils binary in the hadoop binary path

2014-11-13 Thread Néstor Boscán
are you running it (i.e. are you sure the dependencies are actually made available to the client after it's built)? -Dima On Thu, Nov 13, 2014 at 3:37 AM, Néstor Boscán nesto...@gmail.com wrote: Hi Dima I've added the dependencies to hbase-client using maven. So, in theory, all dependecies

Re: Trying to connect HBase Java Client I get: Failed to locate the winutils binary in the hadoop binary path

2014-11-13 Thread Néstor Boscán
: Have you tried using the Maven exec plugin outside the IDE? If all the right dependencies are available, it simply shouldn't complain about dependencies. :) -Dima On Thursday, November 13, 2014, Néstor Boscán nesto...@gmail.com wrote: Hi Dima Thanks for your quick answers. I'm running

Trying to connect HBase Java Client I get: Failed to locate the winutils binary in the hadoop binary path

2014-11-12 Thread Néstor Boscán
Hi I'm creating my first HBase application and I'm trying to connect from the Java application in my Java IDE to my HBase server on a Horton Workds 2.1 Virtual Machine. When I run I get: Failed to locate the winutils binary in the hadoop binary path Does this mean that I have to have hadoop

Re: Trying to connect HBase Java Client I get: Failed to locate the winutils binary in the hadoop binary path

2014-11-12 Thread Néstor Boscán
/m/DHED4y3J2B On Wed, Nov 12, 2014 at 3:27 PM, Néstor Boscán nesto...@gmail.com wrote: Hi I'm creating my first HBase application and I'm trying to connect from the Java application in my Java IDE to my HBase server on a Horton Workds 2.1 Virtual Machine. When I run I get: Failed