Search Discussions
-
We have very frequent cluster wide pauses that stop all reads and writes for seconds. We are constantly loading data to this cluster of 10 nodes. These pauses can happen as frequently as every minute ...
Wayne
Jan 11, 2011 at 10:34 pm
Jan 27, 2011 at 2:54 pm -
Hi, I am using hbase 0.20.6. Is it possible for the loadtable.rb script to create the table from compressed output? I have a MR job where the reducer outputs Gzip compressed HFiles. When I ran ...
Nanheng Wu
Jan 28, 2011 at 4:54 am
Jan 31, 2011 at 4:45 pm -
Does HTable.put(List<Put puts) method perform a batch insert with a single RPC call? I am going to insert a lot of values into a column family and would like to increase the write speed. Thank you.
Weishung Chung
Jan 10, 2011 at 4:59 pm
Feb 1, 2011 at 8:03 am -
In our HBase test for YCSB benchmark, we want to create table and drop table with script automatically. But I fount that in our script. /bin/Hbase shell; disable 'usertable'; drop 'usertable'. ...
祝海通
Jan 3, 2011 at 9:57 am
Jan 12, 2011 at 4:50 am -
Hi Guys, is there a maven repository containing 0.89 SNAPSHOT? I have tried tons of repositories, but to no avail. I also tried building the hbase-0.89.20100924 locally using maven, but then I get a ...
Peter Veentjer
Jan 3, 2011 at 1:33 pm
Feb 1, 2011 at 7:52 pm -
I am using 0.90.0 (8 RS + 1Master) and the HDFS is CDH3b3 During the first hours of running, I puts many (tens of millions entites, each about 200 bytes), it worked well. But then, the client cannot ...
Schubert Zhang
Jan 26, 2011 at 3:59 pm
Feb 24, 2011 at 6:05 pm -
Hello I have problem with running HBase performance tests from org.apache.hadoop.hbase.PerformanceEvaluation package. I'm using version from CDH3, Tests are ok when argument nclients is 1, but in ...
Wojciech Langiewicz
Jan 21, 2011 at 4:13 pm
Jan 28, 2011 at 1:13 am -
Is there a way to issue a delete using the server's current timestamp? I see methods using HConstants.LATEST_TIMESTAMP which is extremely expensive since it triggers a Get call. There are also ...
Matt Corgan
Jan 21, 2011 at 8:31 pm
Jan 24, 2011 at 5:29 pm -
Hello all, I have a scanner question, we have this table: hbase(main):002:0 scan 'mattest' ROW COLUMN+CELL 1 column=generic:, timestamp=1294454057618, value=1 1 column=photo:, ...
Jack Levin
Jan 8, 2011 at 4:01 am
Jan 10, 2011 at 10:47 pm -
We have got .90 up and running well, but again after 24 hours of loading a node went down. Under it all I assume it is a GC issue, but the GC logging rolls every < 60 minutes so I can never see logs ...
Wayne
Jan 27, 2011 at 2:49 pm
Jan 28, 2011 at 12:53 am -
Hi - I am using 0.89 for bulk loading. In my reducer: ImmutableBytesWritable ibw = new ImmutableBytesWritable(key.copyBytes()); KeyValue kv = new KeyValue(key.copyBytes(), ...
Geoff Hendrey
Jan 17, 2011 at 5:31 pm
Jan 26, 2011 at 5:06 am -
After doing many tests (10k serialized scans) we see that on average opening the scanner takes 2/3 of the read time if the read is fresh (scannerOpenWithStop=~35ms, scannerGetList=~10ms). The second ...
Wayne
Jan 31, 2011 at 9:38 pm
Mar 30, 2011 at 10:32 am -
We tried to upgrade to .90 and got 2x the nodes listed and saw none of our old regions showing up in the counts. We assumed the upgrade was not "easy" so we just re-formated the HDFS thinking it ...
Wayne
Jan 24, 2011 at 8:18 pm
Jan 25, 2011 at 12:45 am -
Hi I am not sure whether this was observed before but I have been running into issues with a hung master. This is on a 700 node cluster with Hbase 0.90.0 and Hadoop 0.20.x. Every now and then, the ...
Vidhyashankar Venkataraman
Jan 28, 2011 at 7:56 am
Jan 31, 2011 at 7:08 pm -
Hello, Region servers are dying printing the following exception, under heavy write load. Let me know, if you need any more details. Your help is greatly appreciated. Environment: HBase (0.20.6) ...
Charan kumar
Jan 12, 2011 at 8:18 pm
Jan 26, 2011 at 2:20 am -
Hi, I am new to hbase and to hadoop as well so forgive me if the following is naive. I am trying to bulk upload large amounts of data (billions of rows with 15-20 columns) into an empty hbase table ...
Ashish Shinde
Jan 19, 2011 at 4:46 am
Jan 26, 2011 at 1:37 am -
Hi Consider the following scenario. Row Key Format = DATETIME_VAR1_VAR2 (where var1 and var2 have fixed lengths) and example data could be 20100809041500_abc_xyz 20100809041500_abc_xyw ...
Shuja Rehman
Jan 20, 2011 at 8:22 am
Jan 23, 2011 at 7:17 pm -
What is the good way to randomize the primary key which is a timestamp in HBase to avoid hotspotting? Thank you so much :)
Weishung Chung
Jan 10, 2011 at 3:34 pm
Jan 11, 2011 at 12:19 am -
final Scan scan = new Scan(); scan.setCaching(scannerCaching); scan.addColumn(family); table.getScanner(scan); For improving the speed of scan . How to adjust the parameters ? Is there any more ...
陈加俊
Jan 25, 2011 at 10:36 am
Jan 29, 2011 at 8:23 am -
I need to delete some tables and I am not sure the best way to do it. The shell does not work. The disable command says it runs ok but every time I run drop or truncate I get an exception that says ...
Wayne
Jan 21, 2011 at 2:02 am
Jan 21, 2011 at 8:04 pm -
Does it seem reasonable that I could get Stargate 20.6 to work with Hbase 20.2? I need some of the improvements made in 20.6, but would rather not have to upgrade my entire cluster if I don't have ...
Mike anderson
Jan 20, 2011 at 5:57 pm
Jan 20, 2011 at 10:47 pm -
I'm trying to use GZIP compression but running into a logging problem. It appears that every time a block is compressed it logs the following: 2011-01-10 12:40:48,407 INFO ...
Matt Corgan
Jan 10, 2011 at 5:46 pm
Jan 19, 2011 at 4:47 am -
Hi, Running a throughput test with various sample sizes but getting "KeyValue size too large" for 10MB files. Could not remember any setting related to cell max size. Thanks + Srini Sadasivam ...
Sadasivam, Srinivasan
Jan 14, 2011 at 6:37 pm
Jan 18, 2011 at 6:04 am -
Is load_table.rb deprecated in 0.90? I was trying to use load_table.rb to create a new table and bulk load files into it. It worked partly in the sense that the META table got populated, the files ...
Vidhyashankar Venkataraman
Jan 13, 2011 at 12:42 am
Jan 13, 2011 at 7:11 pm -
Is zookeeper responsible for the backup/replication of -ROOT- and .META. files? It looks like I need multiple HBase masters setup to achieve high availability. In the multiple masters setup, would ...
Weishung Chung
Jan 28, 2011 at 4:11 pm
Jan 28, 2011 at 11:30 pm -
Hi, I have been importing data to hbase 0.90.0 using the code from the bulk uploader (ImportTsv.java). The table has LZO compression set, however unless major compaction is run the table it does not ...
Ashish Shinde
Jan 24, 2011 at 5:39 am
Jan 27, 2011 at 1:10 pm -
Hello, I just upgraded to hbase 0.90.0. I have configured 30 region servers. After initial restart Master page shows 38 region servers, and some of them are duplicate ofcourse. Problem is HBase ...
Charan kumar
Jan 22, 2011 at 1:45 am
Jan 26, 2011 at 11:56 pm -
Dear All, We are using the hbase 0.20.4 on a project, and met the following errors while insert/update some data to the table today: org.apache.hadoop.hbase.client.RetriesExhaustedException: Trying ...
Stanley Xu
Jan 12, 2011 at 11:13 am
Jan 13, 2011 at 2:27 am -
Hi everyone! How to rename the table's family name. I created the table and it's families , and insert many data into it, but I want to rename one family name now premise is not lost data .
陈加俊
Jan 7, 2011 at 12:30 pm
Jan 10, 2011 at 11:59 pm -
After heavily loading a 10 node cluster for 3-4 days I got a concurrent mode failure of 53 seconds followed by a NodeIsDeadException which caused the node to be shut down. Is there is a timeout that ...
Wayne
Jan 3, 2011 at 1:13 pm
Jan 3, 2011 at 10:44 pm -
Hi, Currently I am calling table.getScanner each time to reset the cursor to initial row. My code is something like this: while (1) { /* * I need a cursor to first row each time. * Also, I tried ...
Dani Rayan
Jan 25, 2011 at 3:27 am
Jan 28, 2011 at 2:45 am -
One programme scan from regions[0].startKey and stop at regions[0].endKey ,and another programme scan from scan from regions[1].startKey and stop at regions[1].endKey. Every programme get the row by ...
陈加俊
Jan 25, 2011 at 11:51 am
Jan 27, 2011 at 7:09 am -
Hi, I found this construct on the blog here, http://allaboutdata.net/blog/?p=38, and I have no idea what it means. But the documentation supports this and says getMap public ...
Mark Kerzner
Jan 27, 2011 at 5:10 am
Jan 27, 2011 at 6:18 am -
What is the recommended max node size in terms of data (using lzo compression), region counts, and region sizes? I know there is no hard limit and it should depend on the required load in terms of ...
Wayne
Jan 12, 2011 at 4:27 pm
Jan 15, 2011 at 2:16 pm -
Hi, I am new to HBase and Hadoop and I am trying to find the best way to bulk load a table from HDFS to HBase. I don't mind creating a new table for each batch and what I understand using ...
Nanheng Wu
Jan 5, 2011 at 11:55 pm
Jan 7, 2011 at 6:17 pm -
Hi, What do people think about running HBase / HDFS off of EBS on EC2? That is, having HBase/HDFS keep the data on EBS. I was surprised not to find a lot of discussion around that: ...
Otis Gospodnetic
Jan 4, 2011 at 5:43 pm
Jan 5, 2011 at 4:32 pm -
Hi Guys, I'm currently writing a POC based on hbase and I spend more time on writing a ui than on writing the hbase functionality. So I'm very excited about exploring HBase further and doing some ...
Peter Veentjer
Jan 5, 2011 at 1:42 pm
Jan 5, 2011 at 4:23 pm -
Are there any good tutorials on cluster setup on AWS I'd prefer not to use third-party scripts/frameworks, just a simple sequence of steps/one-liner commands, using the original hadoop/hbase tarballs
H
Jan 3, 2011 at 2:26 pm
Jan 5, 2011 at 10:55 am -
Hi everyone, In my company we are experimenting with HBase and I'd like to know the best way to persist a semi-structured complex (3 levels) entity represented as JSON to HBase. I've already done ...
Pablo Molnar
Jan 31, 2011 at 7:31 pm
Feb 3, 2011 at 8:48 am -
Apologies for my dumbness. I know it's some property that I am not setting correctly. But every time I stop & start HBase & Hadoop I either lose all my tables or loose rows on tables in HBase. Here's ...
Something Something
Jan 29, 2011 at 1:37 am
Feb 2, 2011 at 7:58 pm -
Hi, HBase users, I followed the instruction from hbase.apache.org, I could not launch "start-hbase.sh" from cygwin shell. I gave the descriptions for each step in detail below. Any help is welcome. ...
Jim X
Jan 26, 2011 at 4:04 am
Jan 27, 2011 at 5:13 am -
Hi folks - is there a recommended way of estimating HBase HDFS usage for a new environment? We have a DEV HBase cluster in place, and from this, I'm trying to estimate the specs of our not-yet-built ...
Norbert Burger
Jan 24, 2011 at 5:37 pm
Jan 26, 2011 at 5:00 pm -
We are migrating from hbase 0.89.20100621+17 (20.4?) to 20.6 and have encountered some type of compatibility problem. To test the migration, we deployed 20.6 on a small cluster and copied a table ...
Robert Gonzalez
Jan 21, 2011 at 9:30 pm
Jan 21, 2011 at 9:47 pm -
Thanks in advance for any help. I've been quite pleased with Hbase for this current project and until this problem it has worked quite well. Test cluster setup is CDH3b3 on a 7 nodes: 5 data nodes ...
Chris Tarnas
Jan 8, 2011 at 7:07 am
Jan 12, 2011 at 11:47 pm -
He Guys, although it isn't completely related to HBase. Is there support for scheduling map reduce jobs? E.g. I want to do a map reduce job that automatically removes certain elements from hbase and ...
Peter Veentjer
Jan 5, 2011 at 5:35 pm
Jan 6, 2011 at 5:38 pm -
5
ClientProtocol version mismatch. (client = 42, server = 41) error after upgrading from 0.89 to 0.90
Getting exception after upgrading to 0.90. (from hbase-0.89.20100924) . Did I miss corresponding HDFS upgrade if any? What currently I have DFS version: 0.20.2, r911707 Thanks. 2011-01-21 ...Sadasivam, Srinivasan
Jan 21, 2011 at 12:29 am
Aug 2, 2011 at 9:12 am -
I'm wondering what the best way is to store my data in HBase. I'm currently converting everything to a string and then to a bytes array. What are others doing? Plain text to to byte arrays and ...
Eric
Jan 26, 2011 at 9:47 am
Feb 11, 2011 at 9:13 pm -
How is the .oldlogs folder cleaned up? My cluster size kept going up and I looked closely and realized that 91% of the space was going to .oldlogs that do not appear to be archived. This adds up to ...
Wayne
Jan 28, 2011 at 5:41 pm
Feb 3, 2011 at 9:53 pm -
Hi folks, I am seeing some unexpected behavior with HBase 0.20.6 when deleting columns. Our cluster has been running for some time however we recently upgraded from Hbase 0.20.3. The family I am ...
Mike Percy
Jan 29, 2011 at 1:45 am
Feb 2, 2011 at 2:42 am
Group Overview
group | user |
categories | hbase, hadoop |
discussions | 173 |
posts | 1,000 |
users | 133 |
website | hbase.apache.org |
133 users for January 2011
Archives
- June 2016 (130)
- May 2016 (187)
- April 2016 (267)
- March 2016 (237)
- February 2016 (206)
- January 2016 (173)
- December 2015 (189)
- November 2015 (166)
- October 2015 (238)
- September 2015 (226)
- August 2015 (236)
- July 2015 (259)
- June 2015 (262)
- May 2015 (435)
- April 2015 (391)
- March 2015 (360)
- February 2015 (353)
- January 2015 (313)
- December 2014 (217)
- November 2014 (436)
- October 2014 (434)
- September 2014 (467)
- August 2014 (605)
- July 2014 (504)
- June 2014 (356)
- May 2014 (390)
- April 2014 (509)
- March 2014 (551)
- February 2014 (483)
- January 2014 (554)
- December 2013 (483)
- November 2013 (488)
- October 2013 (534)
- September 2013 (620)
- August 2013 (753)
- July 2013 (694)
- June 2013 (579)
- May 2013 (633)
- April 2013 (722)
- March 2013 (677)
- February 2013 (772)
- January 2013 (761)
- December 2012 (742)
- November 2012 (798)
- October 2012 (785)
- September 2012 (681)
- August 2012 (802)
- July 2012 (803)
- June 2012 (586)
- May 2012 (768)
- April 2012 (522)
- March 2012 (643)
- February 2012 (636)
- January 2012 (655)
- December 2011 (563)
- November 2011 (556)
- October 2011 (540)
- September 2011 (680)
- August 2011 (756)
- July 2011 (778)
- June 2011 (830)
- May 2011 (828)
- April 2011 (1,051)
- March 2011 (1,095)
- February 2011 (753)
- January 2011 (1,000)
- December 2010 (755)
- November 2010 (561)
- October 2010 (529)
- September 2010 (770)
- August 2010 (461)
- July 2010 (634)
- June 2010 (506)
- May 2010 (458)
- April 2010 (518)
- March 2010 (843)
- February 2010 (363)
- January 2010 (578)
- December 2009 (414)
- November 2009 (542)
- October 2009 (578)
- September 2009 (428)
- August 2009 (493)
- July 2009 (610)
- June 2009 (459)
- May 2009 (351)
- April 2009 (357)
- March 2009 (328)
- February 2009 (302)
- January 2009 (341)
- December 2008 (342)
- November 2008 (274)
- October 2008 (362)
- September 2008 (311)
- August 2008 (298)
- July 2008 (326)
- June 2008 (158)
- May 2008 (190)
- April 2008 (168)
- March 2008 (150)
- February 2008 (136)