1
vote
1answer
146 views
Looking for a good HBase tutorial
I'm looking for a good and tested HBase tutorial, where I can find one?
0
votes
1answer
62 views
Hadoop mapreduce streaming from HBase
I'm building a Hadoop (0.20.1) mapreduce job that uses HBase (0.20.1) as both the data source and data sink. I would like to write the job in Python which has required me to use …
1
vote
2answers
70 views
Caching of Map applications in Hadoop MapReduce?
Looking at the combination of MapReduce and HBase from a data-flow perspective, my problem seems to fit. I have a large set of documents which I want to Map, Combine and Reduce. My previous SQL …
2
votes
1answer
59 views
Is this a suitable (or possible) use of HBase?
I want to use HBase as a store where I can push in a few million entries of the format {document => {term => weight}} e.g. "Insert term X into document Y with weight Z" and then issue a command …
4
votes
2answers
118 views
Is HBase meaningful if it’s not running in a distributed environment?
I'm building an index of data, which will entail storing lots of triplets in the form (document, term, weight). I will be storing up to a few million such rows. Currently I'm doing this in MySQL as a …
1
vote
2answers
162 views
storing massive ordered time series data in bigtable derivatives
I am trying to figure out exactly what these new fangled data stores such as bigtable, hbase and cassandra really are.
I work with massive amounts of stock market data, billions of rows of …
0
votes
2answers
230 views
Advanced queries in HBase
Given the following HBase schema scenario (from the official FAQ)...
How would you design an Hbase table
for many-to-many association between
two entities, for example Student and
Course?
…
6
votes
1answer
212 views
Can OLAP be done in BigTable?
In the past I used to build WebAnalytics using OLAP cubes running on MySQL.
Now an OLAP cube the way I used it is simply a large table (ok, it was stored a bit smarter than that) where each row is …
0
votes
1answer
127 views
Feed aggregator using hbase. How to design the schema?
I am working on a project involving monitoring a large number of rss/atom feeds. I want to use hbase for data storage and I have some problems designing the schema. For the first iteration I want to …
0
votes
0answers
151 views
Thrift C# getRows
I'm having trouble implementing the Thrift API in my c# program. The lib's are built and it seems to run like it should, but one function is giving me trouble. As I understand it, getRows() is …
0
votes
1answer
154 views
Writing an ActiveRecord adapter
I'd like to write my own ActiveRecord adapter for the HBase database since none currently exist. However, I've been searching for a while online and can't find any good resources on how to write an …
1
vote
2answers
100 views
secondary index on column store dbs
Hi,
Is there any column store database that supports secondary index ?
I know HBase does, but it's not there yet.
Haggai.
3
votes
0answers
132 views
HBase distributed scanner
In the "API usage example" on "Getting started" page in HBase documentation there is an example of scanner usage:
Scanner scanner = table.getScanner(new
…
0
votes
0answers
95 views
help needed with hbase schema design
Hi,
I am trying to design a high scale key value storage system. The hbase schema for the same is outlined below:
{
"userid1" : {
"update" : {
t3 : "some update1",
t2 : "some …
3
votes
1answer
359 views
Is HBase stable and production-ready?
For folks who have deployed HBase on their own clusters, do you feel that it's sufficiently stable for production use? What types of troubles or issues have you run into?
I do see a bunch of …
