Questions tagged [hypertable]

Hypertable is an open source database inspired by publications on the design of Google's BigTable.

Hypertable is an open source database inspired by publications on the design of Google's BigTable.

Hypertable runs on top of a distributed file system such as the Apache Hadoop DFS, GlusterFS, or the Kosmos File System (KFS). It is written almost entirely in C++.

Because Hypertable keeps data physically sorted by a primary key, it is well-suited to a broad set of applications.

Official Website

83 questions
0
votes
0 answers

encode serialization byte array into std::string

Is there a standard way to encode and decode byte arrays into a sequence of characters that can be stored into a std::string? The reason for this question is that HyperTable value type is std::string, so whatever custom type you want to store in the…
lurscher
  • 25,930
  • 29
  • 122
  • 185
0
votes
1 answer

hypertable core data structure

I'm looking for the implementation of the multi-dimensional map (or the LSM Tree), but I'm not able to find out which class correspond to the implementation of it, anyone knows that? Thanks!
realjin
  • 1,485
  • 1
  • 19
  • 38
0
votes
1 answer

Hypertable's Mutator vs Shared Mutator (Java)

What is the difference between Mutator and Shared Mutator? In the specs for Mutator, there is a "flush_interval" (Auto-flush interval in milliseconds; 0 disables it.) parameter. In the specs for Shared Mutator, it states: WARNING: Shared mutators…
ikevin8me
  • 4,253
  • 5
  • 44
  • 84
0
votes
1 answer

How to design an exception logging table using HyperTable and access it via the Java client?

If I have the following table schema to log an exception (in standard SQL schema): Table: ExceptionLog Columns: ID (Long), ExceptionClass (String), ExceptionMessage (String), Host (String), Port…
ikevin8me
  • 4,253
  • 5
  • 44
  • 84
0
votes
1 answer

How to parse Hypertable data using php

I have inserted data's in Hypertable. But i don't know, how to get particular value from result. My PHP thrift code is : $GLOBALS['THRIFT_ROOT'] = "/opt/hypertable/0.9.5.6/lib/php"; require_once…
Sathishkumar
  • 3,394
  • 4
  • 20
  • 23
0
votes
1 answer

Can Hypertable remove multiple rows?

How can I remove multiple rows in one query in hypertable? It seems that delete doesn't do so and I read something about compact command, but it seems that it's not implemented yet.
Sassan
  • 2,187
  • 2
  • 24
  • 43
0
votes
1 answer

how to design a users table in hypertable

i want to design a users table with the following fields in hypertable database: rowkey : (unique Guid) username : (unique in the table) email : (unique in the table) passwordHash : (string field) passwordSalt : (string…
ygaradon
  • 2,198
  • 2
  • 21
  • 27
0
votes
2 answers

for loop performance in huge list or dictionary

I am making a research project on search engines, and i am having problems with a performance of the for loop. I have the following problem: for value in hash_array.keys(): cell=…
badc0re
  • 3,333
  • 6
  • 30
  • 46
1 2 3 4 5
6