Re: HTableDescriptor class is deprecated

2017-11-06 Thread beeshma r
Thanks Ted ,Got it :) On Mon, Nov 6, 2017 at 8:33 PM, Ted Yu <yuzhih...@gmail.com> wrote: > Please take a look > at hbase-client/src/main/java/org/apache/hadoop/hbase/client/ > TableDescriptorBuilder.java > > On Mon, Nov 6, 2017 at 7:29 PM, beeshma r <beeshm...@gm

HTableDescriptor class is deprecated

2017-11-06 Thread beeshma r
Hi folks HTableDescriptor class got deprecated in Latest client API .So any alternative way to create a HTable for testing ? cheers Beeshma --

Re: org.apache.hadoop.util.NativeCrc32.nativeComputeChunkedSumsByteArray error in nelwy build Hbase

2016-04-03 Thread beeshma r
HI Ted, Any modification need in configuration to solve this issue? or i need to upgrade hadoop version? Please advise this:) Thanks Beeshma On Sat, Apr 2, 2016 at 4:05 PM, beeshma r <beeshm...@gmail.com> wrote: > HI Ted/jeremy > > My Hbase verion is HBase 2.0.0-SNAPSHOT &

Re: org.apache.hadoop.util.NativeCrc32.nativeComputeChunkedSumsByteArray error in nelwy build Hbase

2016-04-02 Thread beeshma r
re.checksum.algorithm > > Change to CRC32 instead of CRC32C > > On Mon, Mar 28, 2016 at 10:30 AM, beeshma r <beeshm...@gmail.com> wrote: > > > Hi > > i am testing with newly build Hbase .Initially table has been created > and > > am able to insert data'

org.apache.hadoop.util.NativeCrc32.nativeComputeChunkedSumsByteArray error in nelwy build Hbase

2016-03-28 Thread beeshma r
Hi i am testing with newly build Hbase .Initially table has been created and am able to insert data's in standalone mode.But suddenly i am getting error like this below log http://pastebin.com/e6HW0zbu This is my Hbase-site.xml hbase.rootdir

Getting Htable first key and last key

2016-02-16 Thread beeshma r
Hi , I wanna get Regions first key and last key for Htable.i did code like this. please suggest am i doing right way // people is table name //con is Hbase configration HTable ht=new HTable(con,"people"); NavigableMap np=ht.getRegionLocations();

Getting Htable first key and last key

2016-02-15 Thread beeshma r
Hi I wanna get Regions first key and last key for Htable i did code like this. please suggest am i doing right way // people is table name HTable ht=new HTable(con,"people"); NavigableMap np=ht.getRegionLocations(); Set setinfo=np.keySet();

RE: Type of Scan to be used for real time analysis

2015-12-18 Thread beeshma r
Hi Rajesh, Why you can't index all rows using Solr. Check this out Hbase indexer(NG data) Regards Beeshma Ramakrishnan -Original Message- From: Rajeshkumar J Sent: 18-12-2015 PM 05:59 To: user@hbase.apache.org Subject: Re: Type of Scan to be used for real time analysis Hi Anil, I

Re: Hbase Row Key Scan

2015-11-23 Thread beeshma r
HI You can use prefixfilter class while scan On Thu, Nov 19, 2015 at 10:25 AM, dheeraj kavalur < dheerajkavalu...@gmail.com> wrote: > Hi, > > Can someone help how to query on partial rowkey. > > *Table Name :* URLdata > > > *Column Family:* BaseID > > > *Columns:*1. userId > > 2.

Re: Hbase Row Key Scan

2015-11-23 Thread beeshma r
Thanks Beeshma On Tue, Nov 24, 2015 at 9:34 AM, beeshma r <beeshm...@gmail.com> wrote: > HI > > You can use prefixfilter class while scan > > > > > On Thu, Nov 19, 2015 at 10:25 AM, dheeraj kavalur < > dheerajkavalu...@gmail.com> wrote: > >>

Re: Start hbase with replication mode

2015-10-23 Thread beeshma r
HI Ted , Can you please advice what changes that i need in Hbase? because hbase starts with own zookeeper. I need hbase should run with external zookeeper Thanks Beeshma On Wed, Oct 21, 2015 at 9:51 AM, beeshma r <beeshm...@gmail.com> wrote: > Hi > > i just want to hbase a

Re: org.apache.hadoop.hbase.exceptions.DeserializationException: Missing pb magic PBUF prefix

2015-10-23 Thread beeshma r
Hi Pankil, Are you sure your hbase is running with external zookeeper ensemble ? As per documentation on Hbase Replication http://www.cloudera.com/content/www/en-us/documentation/archive/cdh/4-x/4-2-0/CDH4-Installation-Guide/cdh4ig_topic_20_11.html zookeeper must not be managed by HBase,.But i

Re: HRegionServer failed due to replication

2015-10-11 Thread beeshma r
f hbase are you using ? > > Consider posting the question on ngdata forum. > > Cheers > > > On Oct 10, 2015, at 3:24 AM, beeshma r <beeshm...@gmail.com> wrote: > > > > Hi > > > > i created Solr index using *HBase-indexer(NGDATA/hbase-indexer*) >

Re: Hbase Master error

2015-09-01 Thread beeshma r
% Cache Remaining%: 0.00% Xceivers: 1 Last contact: Tue Sep 01 10:37:52 PDT 2015 On Tue, Sep 1, 2015 at 10:34 AM, beeshma r <beeshm...@gmail.com> wrote: > Hi Ted, > > in hadoop i couldn't find any issue with logs and i havn't change any > change configuration in hadoop set up

Re: Hbase Master error

2015-09-01 Thread beeshma r
, 2015 at 10:38 AM, Ted Yu <yuzhih...@gmail.com> wrote: > Dropping dev@ > > You can check namenode Web UI, namenode log, etc > > You can also use command line, e.g.: > > hdfs dfs -ls > > On Tue, Sep 1, 2015 at 10:34 AM, beeshma r <beeshm...@gmail.com> w

Re: Hbase Master error

2015-09-01 Thread beeshma r
is working fine? On Tue, Sep 1, 2015 at 9:52 AM, Ted Yu <yuzhih...@gmail.com> wrote: > Have you checked hdfs ? > > Master was waiting for namenode to exit safe mode. > > > > > On Sep 1, 2015, at 9:44 AM, beeshma r <beeshm...@gmail.com> wrote: > > >

Re: Iterate hbase resultscanner

2015-06-10 Thread beeshma r
the Result loop variable within the iteration and collect the extracted data in your list, or alternately to create a new Result instance from the Result loop variable, and add the new instance to your list. On Mon, Jun 8, 2015 at 10:03 AM, beeshma r beeshm...@gmail.com wrote: Hi Ted I

Re: Iterate hbase resultscanner

2015-06-08 Thread beeshma r
, the conversion inside for(Result rs:ListofResult) loop was correct. Since Listclass is custom, probably you need to show us how it is implemented. Which hbase release are you using ? On Mon, Jun 8, 2015 at 9:19 AM, beeshma r beeshm...@gmail.com wrote: HI I have weired issue with Hbase Result

Iterate hbase resultscanner

2015-06-08 Thread beeshma r
HI I have weired issue with Hbase Result Scanner This is my scenario i have a list of Resultscanner(ListofScanner) from this Resultscanner list i want extract all results as list of result(ListofResult) and from result list i want iterate all cell values add to custom class list

to get all column qualifiers

2014-12-09 Thread beeshma r
Hi i want to get all column qualifiers and corresponding cell values for the Rowkey for example below is table structure hbase(main):002:0 scan people ROW COLUMN+CELL ana...@hotmail.com column=colmn_fam:ana...@hotmail.com, timestamp=14160315498 33, value=1

Re: scan column qualifiers in column family

2014-11-20 Thread beeshma r
correspond to result.containsColumn() call ? If so, result was null. On Wed, Nov 19, 2014 at 9:47 AM, beeshma r beeshm...@gmail.com wrote: Hi i need to find whether particular column qualifier present in column family so i did code like this As per document public

scan column qualifiers in column family

2014-11-19 Thread beeshma r
Hi i need to find whether particular column qualifier present in column family so i did code like this As per document public boolean containsColumn(byte[] family, byte[] qualifier) Checks for existence of a value for the specified column (empty or not). Parameters:family

Fwd: error in starting hbase

2014-11-03 Thread beeshma r
-- From: beeshma r beeshm...@gmail.com Date: Sun, Nov 2, 2014 at 7:22 AM Subject: Re: error in starting hbase To: user@hbase.apache.org Hi Ted, Thanks for your reply. Yes i am running standalone mode After changing my zookeeper property its resolved .And now i have another two issues . 2014-11

error in starting hbase

2014-11-02 Thread beeshma r
HI When i start hbase fallowing error is occurred .How to solve this? i haven't add any zokeeper path anywhere? Please suggest this. 2014-11-01 20:01:51,196 INFO [main] server.ZooKeeperServer: Server environment:java.io.tmpdir=/tmp 2014-11-01 20:01:51,196 INFO [main] server.ZooKeeperServer:

Re: error in starting hbase

2014-11-02 Thread beeshma r
:01 AM, Ted Yu yuzhih...@gmail.com wrote: Are you running hbase in standalone mode ? See http://hbase.apache.org/book.html#zookeeper bq. To toggle HBase management of ZooKeeper, use the HBASE_MANAGES_ZK variable in conf/hbase-env.sh. Cheers On Sun, Nov 2, 2014 at 6:41 AM, beeshma r beeshm

Re: error in installing and starting hbase

2014-10-26 Thread beeshma r
in a home directory, but start-hbase.sh is in your path. What manner of installation did you use? -- Sean On Oct 26, 2014 6:45 AM, beeshma r beeshm...@gmail.com wrote: Hi Ted i now trying to install hbase in my ubuntu.i struck here with this problem $start-hbase.sh Error

Re: error in installing and starting hbase

2014-10-26 Thread beeshma r
= {'hbase.hregion.scan.loadColumnFamiliesOnDemand' = 'true'}}You can also keep around a reference to the created table: hbase t1 = create 't1', 'f1'Which gives you a reference to the table named 't1', on which you can thencall methods.* On Sun, Oct 26, 2014 at 6:58 AM, beeshma r beeshm...@gmail.com wrote: hi