HBase is the Hadoop database. Use it when you need random, realtime read/write access to your Big Data. This project's goal is the hosting of very large tables -- billions of rows X millions of columns -- atop clusters of commodity hardware.
0
votes
1answer
8 views
How to create multiple column families in an HBase table using the shell
Is the process to have multiple "create" commands against the same table? What is the syntax for it?
0
votes
0answers
21 views
Different hadoop MapReduce job configuration on client and on cluster
I need somewhat strange behaviour from my MapReduce job.
I'd like part of code that configures and submits MapReduce job (Tool interface and so on, let's call it 'client') know only about HDFS / ...
0
votes
0answers
14 views
YCSB Execution Error
When i am running YCSB, i am getting the following error. I followed all the steps specified in YCSB git hub link, but still i am getting this error
Exception in thread "Thread-3" ...
0
votes
1answer
24 views
error when writing a ResultScanner to a file in java (serialization issue)
When i want to write a ResultScanner object to disk, i face this error:
Exception in thread "main" java.io.WriteAbortedException: writing aborted; java.io.NotSerializableException: ...
0
votes
2answers
13 views
how can I export hbase table using starttime endtime?
I am trying to perform incremental backup , I have already checked Export option but couldn't figure out start time option.Also please suggest on CopyTable , how can I restore.
0
votes
0answers
13 views
how to dynamically allocate region in hbase?
I am new to Hbase
I am using java API for Hbase , i want to dynamically allocate regions based on rowid , am using HbaseAdmin.assign(Byte[] regionname, Boolean force) function but its not working
...
0
votes
0answers
16 views
Developing a Semantic cache program for HBase by java
I need to develop a program for caching hbase retrieved data on disk. i want to use semantic model (i.e. joining existing hitting data with retrieving missing data to make the response).
i have two ...
0
votes
1answer
26 views
Client able to connect to Hbase DB without including hbase-site.xml in classpath
I am using java client to connect to Hbase DB configured in standalone mode.Its hbase-site.xml is :
<configuration>
<property>
<name>hbase.rootdir</name>
...
-1
votes
4answers
30 views
Read Data from HBase
I'm new to HBase, what's the best way to retrieve results from a table, row by row? I would like to read the entire data in the table. My table has two column families say col1 and col2.
1
vote
1answer
23 views
Hbase MasterNotRunningException though Hmaster, regionserver, and Zookeeper are up
I have started hbase and all of the daemons are running.
$ jps
8482 HQuorumPeer
25105 RemoteMavenServer
9133 SecondaryNameNode
11883 HRegionServer
13793 Jps
8545 NameNode
8572 HMaster
11519 Main
...
0
votes
1answer
19 views
hbase dns connection error or could be ipv6
I have been trying to run MapReduce job that involves using Hbase as source and sink. However, when I try to use HBase client package 0.92.1, things seem to work. But when I use version 0.94.2 and ...
0
votes
0answers
5 views
Extract Hadoop cluster metrics from HBase
We have IBM BigInsight (hadoop) and they store the metrics like CPU utilization, memory, IO, etc in HBase table (actually I can see 4 tables in hbase). I want to extract those data on an hourly ...
1
vote
1answer
14 views
What happens if you change the replication factor on existing hbase install
I have a cluster with 12 nodes that currently have ~2.5 TB of data saved in HBase tables. The current replication factor is 3 and I don't actually need that level of integrity and would like to drop ...
0
votes
0answers
7 views
combining single value and qualifier filter in filter list in hbase
using hbase 0.94.2 I have a table, hugo, containing two column families (CF), cf1 and cf2.
the result of my scan shall return all Results that contain a value in cf1 but also fit a specific ...
0
votes
1answer
19 views
Hbase wildcard support
I want to do something like
select * from table where name like '%name%'
is there anyway to do this in Hbase ? and if there is a way so how to do that
ps. I use HappyBase to communicate with Hbase
...
0
votes
1answer
23 views
OpenTSDB/HBase fails while uploading large amounts of data
I am new in Big Data and HBase, in participle.
Now I am trying to use OpenTSDB to store data from sensors.
Configuration is: Cloudera vmware image with the last stable OpenTSDB installed on it.
...
0
votes
2answers
64 views
Can Hbase use local file system instead of DFS for distributed mode?
I have working hbase instance in Standalone mode.
I am planning to migrate it to Distributed mode ( cluster of 3 machines).
My question can i migrate from stand alone mode to distributed without ...
-2
votes
1answer
23 views
Accessing Hadoop Cluster remotely with Rest services and API's
Can you please provide me the tutorial or documentation on rest services and API's or anything related for developing applications and accessing hadoop cluster remotely for mr/pig/hive/hbase? Thanks!
-2
votes
0answers
17 views
Mapreduce development environment and developing udfs, lookups [closed]
Can you please provide me a documentation or tutorial to setup development environment for developing Mapreduce jobs using Java? Also environment for developing udf for pig/hive, hbase and lookups ...
-2
votes
0answers
15 views
Client programs and Mapreduce jobs and queries [closed]
Can you please tell me how to write client programs for hadoop ecosystem and also how the pig/hive queries, hbase and MR jobs are automated in enterprise, any documentation or tutorial? Thanks!
0
votes
0answers
44 views
Hadoop/Hbase NullPointer Error returned from Client Connection (after a long time-out)
Trying to make connection to my hbase/hadoop local single user server and I get this error after doing a "HBaseAdmin.tableExists":
13/05/15 11:37:19 INFO zookeeper.ZooKeeper: Session: ...
0
votes
1answer
30 views
What is the syntax to create an external table partitioned on an hbase column?
I have a table in HBase that I'd like to represent as an EXTERNAL TABLE in hive
So far I've been using:
CREATE EXTERNAL TABLE events(key STRING, day INT, source STRING, ip STRING)
STORED BY ...
0
votes
2answers
47 views
Hadoop and Hbase configuration in Eclipse
I am using windows 7 and cygwin. I am successfully configure Hadoop 1.0.3 and Hbase 0.94.16 and also create table and insert data in table.
Now I want to configure Hadoop and Hbase in ...
0
votes
0answers
9 views
Mocking happybase for HBase unitesting
To unitesting HBase python code, has anyone been trying to mock happybase?
so far I 've found this one: http://www.dzone.com/articles/clouds-government-perils
This one covers basic HBase scan, It ...
0
votes
1answer
53 views
HBase or Mongo for an Analytics DB if already using Hadoop?
I currently have a Hadoop cluster where I store tons of logs over which I run pig scripts for calculating aggregated analytics. I also have a Mongo cluster where I store production data.
I've ...
0
votes
1answer
23 views
Load HBase records from PIG conditionally
Is there a way to load records from HBase into a pig relation based on the value of a particular column in HBase? Thank You
0
votes
0answers
44 views
Hbase: Migration from standalone mode to Fully distributed mode
I want to if its possible to migrate from standalone mode to fully distributed mode in Hbase.I have some data in standalone mode which i would like to persist during migration.
Please help.
0
votes
1answer
17 views
Scan Hbase for particular rowkey's
I want to get all columns from Hbase table within particular Rowkey.
eg:
Rowkey starts from 123456
Rowkey ends with 123466
so i want to fetch programatically (In java) all columns within this ...
4
votes
1answer
64 views
Is Cassandra a good candidate database for that must sustain over 100 read/write operations per second?
Currently our system uses PostgreSQL, however we seem to have pushed the limit of its capabilities. Some of our tables need to handle over 100 read/write operations per second so it is probably time ...
1
vote
1answer
57 views
Error when connecting to local HBase
I'm trying to connect to HBase installed in the local system (using Hortonworks 1.1.1.16), by a small program in Java, which executes the next command:
HBaseAdmin.checkHBaseAvailable(conf);
It is ...
0
votes
0answers
76 views
Azure Table Storage, Cassandra or HBase for caching
Have a nice day!
I am developing site with a large number of users and contents, so I need to cache some data about their (in format like string key and serialized array or columns - millions rows). ...
0
votes
0answers
53 views
Hadoop and Geoserver
I'am intending to develop a new datastore based on Hadoop/HBase for Geotools to use it in Geoserver just to visualise Raster data (tiled satellite image). Has anyone done something similar or even ...
0
votes
0answers
45 views
Hmaster is not running
I am new to Hadoop and Hbase.I am running hbase on my local file system and tried creating some table through hbase but came to know that hmaster is not getting started.I changed the h base-site.xml ...
0
votes
0answers
21 views
HBase ERROR: hbase-default.xml file seems to be for and old version of HBase (null)
I am trying to write a program to connect to HBase. However when I execute following command
HBaseConfiguration.create(); I get following error: .
"hbase-default.xml file seems to be for and old ...
0
votes
0answers
18 views
Hbase processing latest replication data
Master-Master hbase replication is set up between several clusters. Each region server has WalObserver installed:
public class LogObserver implements WALObserver {
...
@Override
public void ...
0
votes
1answer
45 views
Stand alone HBASE server
I have installed hbase and set the property hbase.zookeeper.property.clientPort to 2222
<property>
<name>hbase.zookeeper.property.clientPort</name>
...
0
votes
1answer
31 views
How to get all the rows given a part of the row key in Hbase
I have the following table structure in Hbase:
Row column+cell
Mary_Ann_05/10/2013 column=cf:verified, timestamp=234454454,value=2,2013-02-12
Mary_Ann_06/10/2013 column=cf:verified, ...
0
votes
1answer
44 views
data format changed when importing data from Mysql to Hbase
I am using sqoop to import data from Mysql into Hbase.
It works fine but there is one issue.
As i read from Sqoop documentation , sqoop converts mysql data into String and then store it in Hbase.
...
0
votes
1answer
19 views
Using generic Object type in hbase using Kundera
I am using kundera to define my data model which will be stored in hbase. There is a class called "Task" which should have a generic type of submission like so:
public class Task {
...
Object ...
-1
votes
0answers
16 views
HDInsight Connecting HBase to Qlikview
is there a possibility to connect HBase to Qlikview? (via Qlikview JDBC Connector)
If yes, what are the needed config.
Thanks
0
votes
0answers
34 views
Reducer takes more time after 92%
I have a bulk load job using HFileOutputFormat to load a HBase table. My mapper completes within 2-3 mins and then the reducer(PutSortReducer invoked by HFileOutputFomat) completes till 92% in the ...
0
votes
1answer
36 views
Can hashcode of a String be used as row id in hbase?
I have a table in hbase, whose row ids are of length 25 characters. I observed that if the row id length is less (around 10), then the reduce phase runs a little faster than having row id of 25 ...
0
votes
0answers
22 views
Apache mod_proxy performance tweaks
I have a pretty basic setup
mod_proxy
apache ---------> HBaseRestAPI(Not sure what this uses under the hood, maybe embedded jetty)
This is not to be used in production, it will be used by ...
1
vote
1answer
64 views
Error while importing data from Mysql to Hbase using sqoop
I am trying to import data from Mysql to Hbase using sqoop.
I am running following command.
sqoop import --connect jdbc:mysql://localhost/database --table users --columns "loginid,email" --username ...
-1
votes
0answers
16 views
Best way to load LZO compressed text data into HBase table
I am trying to write JAVA program to load LZO compressed text file into HBase, but didn't find much info about how to read lzo data and do bulk load in HBase. Would appreciate any example program or ...
4
votes
2answers
31 views
Does HBase support indexing on list properties and non-equality operators?
Have a background in GAE's Big Table. From what I have read, HBase is the open source version of Big Table and should be very comparable in its features.
Using Big Table, this object could be indexed ...
0
votes
1answer
54 views
hive hbase integration timestamp
I would like to store table into HBase using Hive (hive hbase integration )
My table contains a field typed TIMESTAMP (like DATE)
I've done some research and i discovered that TIMESTAMP is not ...
0
votes
0answers
41 views
Exception In SQOOP while import table from RDBMS to HBASE
I try to import a table from SQL into HBASE using following command
bin/sqoop import --hbase-create-table --hbase-table userdetails --column-family details --hbase-row-key loginname --connect ...
0
votes
0answers
20 views
Does HDFS support Positional Write in C/CPP? [duplicate]
Is there any function that supports positional write? Usually in C we can set the offset position through seek function...where as in HDFS seek will be applicable only with O_RDONLY...
Thanx ...
0
votes
0answers
48 views
Hbase scan with regular expression
I have the following structure for my hbase rowkey:
"language:1,3,4,5-location:1-hometown:3-musics:2,7-proffession:4-zodiac:8-userID:33886"
this rowkey represents a user who can speak languages with ...





