Tagged Questions
The hypertable tag has no wiki summary.
66
votes
5answers
8k views
Non-Relational Database Design
I'm interested in hearing about design strategies you have used with non-relational "nosql" databases - that is, the (mostly new) class of data stores that don't use traditional relational design or ...
15
votes
2answers
10k views
bigtable vs cassandra vs simpledb vs dynamo vs couchdb vs hypertable vs riak vs hbase, what do they have in common?
Sorry if this question is somewhat subjective. I am new to 'could store', 'distributed store' or some concepts like this. I really wonder what do they have in common and want to get an overview on all ...
2
votes
0answers
105 views
How to insert 'n' values in hypertable using hadoop python?
how to insert multiple values in hypertable using hadoop python streaming? i can able to insert values for single column, but not more than one column. Following exception i get while i'm trying
...
2
votes
1answer
583 views
MongoDB Sharding vs HBase/HyperTable DFS
As far as I have understand MongoDB Sharding and HBase/HyperTable DFS are ways to scale-out but how do they compare and when should I use each of them?
2
votes
0answers
213 views
Hadoop Hypercube
Hey,
i am starting a hadoop based hypercube with a flexible number of dimensions.
Does anybody know any existing approaches for this?
I just found PigOLAPSketch, but there is no code to use it.
...
2
votes
2answers
331 views
why we need hadoop for hypertable
i have written an crawler in c++ and i am looking for an distributed data store i found 2
1) hbase
2) hypertable
both are the implementation of Big table and i just reviewed hypertable.. because it ...
2
votes
4answers
516 views
Adding a time dimension to MySQL cells
Is there a way to keep a timestamped record of every change to every column of every row in a MySQL table? This way I would never lose any data and keep a history of the transitions. Row deletion ...
1
vote
1answer
277 views
Memory Requirement/Utilization for MongoDB, Riak and HyperTable (or HBase)
I've evaluated most of the NoSQL solutions and it seems that using a combination of MongoDB, Riak and HyperTable (or HBase) is the way to go.
What is the minimum requirement for these databases to ...
1
vote
1answer
90 views
Hypertable migration causing problem with rails 2.3.8
I am using Hypertable db with the front end of HyperRecord. There were some bugs that i fixed in it. But now migrations get stuck me. When ever i do migrate it shows the error:
rake aborted!
...
1
vote
2answers
155 views
Permission denied while accessing Hypertable in CGI program
I'm trying to develop a Web app in Perl using Hypertable. Sample code:
#!/usr/bin/perl -w
use strict;
use warnings;
use CGI;
use CGI::Carp qw/fatalsToBrowser warningsToBrowser/;
use CGI::Session ...
1
vote
1answer
551 views
Hypertable v. HBase and BigTable v. SQL
As Hypertable and HBase seem to be the two major open source BigTable implementations, what are the major pros and cons between these two databases?
In addition, what are the major pros and cons ...
1
vote
1answer
190 views
Google Go datastore interfaces
What are your thoughts on go-pgsql and thrift4go?
I'd like to use Go with either Postgres or Hypertable for a project, but I'm curious as to how mature and complete these interfaces are.
1
vote
2answers
92 views
suggestion needed for storage system for an crawler
I am planning to write a web crawler in c++ which crawls N number of pages daily. The main problem is that I am getting confusing with storage system . So I need a distributed db which efficient to ...
0
votes
0answers
193 views
How to compile hypertable c++ example [closed]
I'm trying to compile hypertable c++ example ApacheLogLoad in Centos x86 64. I fallowed README file guides to configure make file:
BOOST_INCLUDE_DIR=/usr/local/lib/boost
...
0
votes
1answer
176 views
Fastest nosql option for number crunching?
I had always thought that Mongo had excellent performance with it's mapreduce functionality, but am now reading that it is a slow implementation of it. So if I had to pick an alternative to benchmark ...
0
votes
0answers
31 views
fetch some qualifier value from hypertable
How to fetch value from hypertable table and write into a different table.
I am getting cells as arrays as value, but i want some particular qualifier value. How to retreive it.
For eg
Table1
ROW
...
0
votes
1answer
147 views
Select statement in Hypertable in Java
I am using hypertable in java program (I know it should be used in C++).
I want to use SELECT sql query in java program. But I am unable to select. The Result is coming as null.
Please advice ...
0
votes
0answers
68 views
Aggregation queries in hypertable
I have a table named demotable in hypertable.
The headers of the table are
"Query date RecordCoun"
I want to excecute queries like give me the the total recordcount from demotable where ...
0
votes
1answer
126 views
hypertable library linking problem
i have installed hypertable in /opt/hypertable/current/ and i run an example program from hypertable...
#include <Common/Compat.h>
#include <iostream>
#include <fstream>
#include ...
0
votes
1answer
162 views
how to build c++ thrift library for hypertable
i am new to hypertable and i need to know how can i build an c++ client library to integrate hypertable in my cpp program
0
votes
1answer
128 views
c++ hello world program in hypertable
i couldn't find an simple hello world program that inserts data into hypertable database ... and for retrieving too....can any one explain with an simple example??
0
votes
2answers
150 views
How to connect Drupal 7 with Hypertable?
According to http://drupal.org/node/443540:
Field storage modules could be written
to store field data in a variety of
ways including HyperTable, Amazon S3
or CouchDB
but I have no idea ...
0
votes
2answers
258 views
hypertable example in c++
where i can find an sample code for hypertable or else can any one post an sample for hypertable with c++
0
votes
5answers
844 views
HBase vs Hyptertable vs Lucene
I am using an search system in lucene. By default it is not distributed, so I am thinking of moving to something like HBase or Hadoop.
Do solutions like HBase or Hypertable have a built-in search ...
0
votes
1answer
199 views
Remote access to Hypertable from C++
I have sucessfully installed Hypertable on top of Hadoop on a small cluster of Ubunto servers. At this point the only way to access the Hypertable is via the 'ht shell' command on one of the HT ...
0
votes
1answer
880 views
Cache systems - Hypertable vs Memcached
I'm pretty sure this is not Serverfault material, so bear with me.
Wanting to implement a cache system for our application, we've started integrating with Memcached. Recently I started hearing of ...
-1
votes
3answers
150 views
High Performance Database Opinion
I'm developing software using a MySql database and Hibernate to access it.
The problem I am having is when I look for 1 keyword I am using 40 000 queries already and
the application that I am ...