Tagged Questions

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.

learn more… | top users | synonyms

18
votes
4answers
13k views

How does Hive compare to HBase?

I'm interested in finding out how the recently-released (http://mirror.facebook.com/facebook/hive/hadoop-0.17/) Hive compares to HBase in terms of performance. The SQL-like interface used by Hive is ...
14
votes
9answers
6k views

Scalable Image Storage

I'm currently designing an architecture for a web-based application that should also provide some kind of image storage. Users will be able to upload photos as one of the key feature of the service. ...
13
votes
3answers
4k 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 ...
12
votes
3answers
2k views

Large scale data processing Hbase vs Cassandra

I am nearly landed at Cassandra after my research on large scale data storage solutions. But its generally said that Hbase is better solution for large scale data processing and analysis. While both ...
12
votes
4answers
10k views

Looking for a good HBase tutorial

I'm looking for a good and tested HBase tutorial, where I can find one?
12
votes
1answer
3k 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 ...
12
votes
6answers
9k views

Hbase / Hadoop Query Help

I'm working on a project with a friend that will utilize Hbase to store it's data. Are there any good query examples? I seem to be writing a ton of Java code to iterate through lists of RowResult's ...
9
votes
1answer
408 views

HBase & Mahout - Using HBase as a Datastore/source for Mahout - Classification

I'm working on a large text classification project and we have our text data (simple messages) stored in HBase. We have two problems, first we would like to use HBase as the source for Mahout ...
8
votes
5answers
373 views

Are RDBMS that bad as described in Hadoop: The definitive guide?

I'm reading Hadoop: The definitive guide by Tom White. In chapter 13.6 "HBase vs RDMS" he said that if you have a lot of data, even simple queries like getting 10 recent items are extreamly expensive ...
8
votes
4answers
2k views

Any scalable OLAP database (web app scale)?

I have an application that requires analytics for different level of aggregation, and that's the OLAP workload. I want to update my database pretty frequently as well. e.g., here is what my update ...
7
votes
0answers
105 views

Scalable distributed file system for blobs like images and other documents [closed]

Cassandra & HBase both do not efficiently support storage of blobs like images. Storing directly on HDFS stresses the Namenode. Facebook's Haystack is not open source. So is Lustre a good choice ...
7
votes
3answers
4k views

HBase cassandra couchdb mongodb..any fundamental difference?

I just wanted to know if there is a fundamental difference between hbase, cassandra, couchdb and monogodb ? In other words, are they all competing in the exact same market and trying to solve the ...
7
votes
1answer
2k 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 ...
7
votes
1answer
6k views

how to design Hbase schema?

Hi all suppose that I have this RDBM table (Entity-attribute-value_model): col1: entityID col2: attributeName col3: value and I want to use HBase due to scaling issues. I know that the only way to ...
6
votes
2answers
396 views

Large Data Sets - NoSQL, NewSQL, SQL..? Brain Fried

I'm in need of some advice. I working on a new start-up in the data mining field. This is basically the spin off of a research project. Any way we have a large about of data that is unstructured, we ...
6
votes
3answers
1k views

Installing Hbase / Hadoop on EC2 cluster

I know that I can spin off a EC2 cluster with Hadoop installed (unless I am wrong about that). How about Hbase? Can I have the Hadoop and Hbase premade, ready to go? Or do I need to get my hands ...
6
votes
3answers
385 views

HBase ORM for Ruby

What HBase ORM/adapters for Ruby exists? Which are the best? WHY?
6
votes
4answers
3k 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? ...
5
votes
2answers
116 views

Difference between String.getBytes() and Bytes.toBytes(String data)

I'm writing a Hadoop/HBase job. I needed to transform a Java String into a byte array. Is there any differences between Java's String.getBytes() and Hadoop's Bytes.toBytes()?
5
votes
2answers
179 views

Should I rebuild my PHP website with a document database in order to improve performance?

We have a website developed in PHP with MySQL and sometimes facing problems when traffic increases. We have almost optimized the site in all ways to handle more requests but still facing problems at ...
5
votes
5answers
2k views

What resources exist for learning HBase?

What are recommended resources for learning HBase? The only one I can think of is HBase wiki and one chapter in book "Hadoop: The Definitive Guide", are there any other good resources? I'm looking for ...
5
votes
7answers
2k views

Java ORM for Hbase

Anyone knows a good Java ORM implementation for HBase. This one looks really nice for Ruby http://www.stanford.edu/~sqs/rhino/doc/ But could not find one for Java. Thanks.
5
votes
3answers
2k views

Is there a good library for accessing HBase from Python?

I spent some time looking around, and all I could find is Jython. It's an option, but is there something that could be used in a more pythonesque (simpler) way?
5
votes
1answer
1k 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 ...
4
votes
6answers
523 views

Best NoSQL approach to handle 100+ million records

I am working on a project were we are batch loading and storing huge volume of data in Oracle database which is constantly getting queried via Hibernate against this 100+ million records table (the ...
4
votes
4answers
229 views

I need suggestions for a distributed media storage data store

I want to develop one multimedia system, the system need to save millions videos and images, so I want to select a distributed storage subsystem. who can give me some suggestion ? thanks!
4
votes
4answers
839 views

HBase Error - assignment of -ROOT- failure

I've just installed hadoop and hbase from cloudera (3) but when I try to go to http://localhost:60010 it just sits there continually loading. I can get to the regionserver fine - ...
4
votes
2answers
503 views

how to list all row keys in an hbase table?

Can anybody tell me, how to list all row keys in an hbase table?
4
votes
4answers
3k views

How to decide which NoSQL technology to use?

What is the pros and cons of MongoDB (document-based), HBase (column-based) and Neo4j (objects graph)? I'm particularly interested to know some of the typical use cases for each one. ...
4
votes
0answers
197 views

Adjacency List structure in HBase

I'm trying to implement the following graph reduction algorithm in The graph is an undirected weighted graph I want to strip away all nodes with only two neighbors and update the weights Have a ...
4
votes
3answers
1k views

CouchDB, HDFS, HBase or which is right for my situation?

This question is regarding data storage systems such as CouchDB, HDFS and HBase, specifically, which is right. I am looking at making a simple and customized Document Management System for my ...
4
votes
4answers
749 views

Cassandra/HBase or just MySQL: Potential problems doing the next thing

Say I have "user". It's the key. And I need to keep "user count". I am planning to have record with key "user" and value "0" to "9999+ ;-)" (as many as I'll have). What problems I will drive in if I ...
4
votes
2answers
641 views

How to pick random (small) data samples using Map/Reduce?

I want to write a map/reduce job to select a number of random samples from a large dataset based on a row level condition. I want to minimize the number of intermediate keys. Pseudocode: for each ...
4
votes
2answers
592 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 ...
4
votes
1answer
1k views

Which is the most suitable Key-Value Store for a RDBMS background person?

Is there a distinct winner among all the key-value stores? Cassandra, MongoDB, CouchDB? and do they all follow some central guidelines? or they all have their own say in defining their APIs. I'm ...
4
votes
6answers
1k views

Ruby On Rails/Merb as a frontend for a billions of record app

I am looking for a backend solution for an application written in Ruby on Rails or Merb to handle data with several billions of records. I have a feeling that I suppose to go with a distributed model ...
3
votes
1answer
38 views

Designing HBase schema to best support specific queries

I have an HBase schema-design related question. The problem is fairly simple - I am storing "notifications" in hbase, each of which has a status ("new", "seen", and "read"). Here are the API's I need ...
3
votes
3answers
726 views

Accessing HBase running in VM with a client on host system

I try to write some data to hbase with a client program HBase @ Hadoop runs in a preconfigured VM from Cloudera @ ubuntu. The Client runs on the system hosting the VM and running the client directly ...
3
votes
3answers
2k views

Trouble with HBase / Zookeeper installation

I have a problem with installing hbase on Ubuntu 11.04. I'm new to ubuntu and actually a noob! Recently, I installed hadoop-0.20.2 on my laptop with single cluster configurations, and I ran WordCount ...
3
votes
4answers
498 views

realtime querying/aggregating millions of records - hadoop? hbase? cassandra?

I have a solution that can be parallelized, but I don't (yet) have experience with hadoop/nosql, and I'm not sure which solution is best for my needs. In theory, if I had unlimited CPUs, my results ...
3
votes
2answers
249 views

How to use HBase and Hadoop to serve live traffic AND perform analytics? (Single cluster vs separate clusters?)

Our primary purpose is to use Hadoop for doing analytics. In this use case, we do batch processing, so throughput is more important than latency, meaning that HBase is not necessarily a good fit ...
3
votes
3answers
920 views

Integrate Hbase with PHP

I have installed the Hbase and now I am looking for some PHP library to integrate hbase with PHP I have tried 2 libraries one is I tried to connect with thrift but was unable to do so 2nd is I tried ...
3
votes
3answers
2k views

HBase connection exception

I try to run HBase in a Pseudo-Distributed mode. But it doesn't work after I set hbase-site.xml. Each time I try to run a command inside hbase shell I get this error: ERROR: ...
3
votes
2answers
118 views

Where can I find a HBase cascading module for hbase-0.89.20100924+28?

I am working on a project using map reduce and HBase. We are using Cloudera’s CDH3 distribution which has hbase-0.89.20100924+28 bundled into it. I would like to use cascading as we have some ...
3
votes
1answer
482 views

Datamodel for Property Graph over HBase/Cassandra

I'm willing to store a Property Graph into HBase. A Property Graph is a graph nodes and edges have properties and multiple edges can link the same tuple of nodes as long as the edges belong to ...
3
votes
2answers
248 views

what does 2n + 1 quorum mean?

I've come across this when describing the Zookeeper configuration for HBase, and I'm unfamiliar with the term. Does the 'N' have anything to do with the number of nodes in my HBase cluster? Or the ...
3
votes
2answers
875 views

Difference between a row-oriented and column-oriented databases in dealing information retrieval

Recently, I started working on HBase (one of the column-oriented databases). While going through the source code, one question keeps popping in my head. Thought of asking this. My question is, how ...
3
votes
2answers
638 views

Difference between Document-oriented-DB and Bigtable clones

Can someone give a head-to-head comparison between them? We are looking for a suitable storage engine for our weblog history data. We looked at Bigtable's paper and understand it is suitable to us ...
3
votes
1answer
790 views

i got this exception while i run hbase client

import java.io.IOException; import org.apache.hadoop.hbase.HBaseConfiguration; import org.apache.hadoop.hbase.client.Get; import org.apache.hadoop.hbase.client.HTable; import ...
3
votes
1answer
794 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 ...

1 2 3 4 5 8