Query « hbase « Java Database Q&A





1. Hbase / Hadoop Query Help    stackoverflow.com

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 ...

2. fast querying on hbase    stackoverflow.com

I am running a little test/poc here. I need to load a few million rows every day into a database. And it's not log file data, I have comma delimited rows (of ...

3. Is HBase right for storing and querying log data?    stackoverflow.com


I'm thinking of using HBase to store logs (web log data), each log would have about 20 different values (let's say columns), I want to run queries that filter results based ...

4. Hbase API,queries in Java, Help needed    stackoverflow.com

I have using HBase to store file locations. For example: I have 8 Rows, the followings are the keys in HBase. Each folder location is a key.

/usr/
/usr/folder1/
/usr/folder1/folder1_1/
/usr2/
/usr2/folder2/
/usr2/folder2/folder2_1/
/usr3/
/usr3/folder3/
How can I use HBase ...

5. Storing JSON in HBase and query by Id    stackoverflow.com

Am I correct of storing JSON data in HBase?

 put 'messages', 123, 'cf:json', '{"foo":"bar"}'
Basically, I need to query it by ID, which is 123 in my example. And JSON is variable ...

6. How to scan for a particular column value in hbase?    stackoverflow.com

I am new to using hbase. I have multiple columns which have attributes How do I search for a particular attribute. how do I use the scan command in this case? scan 'table_name' gives ...