Bigtable is a distributed storage system (built by Google) for managing structured data that is designed to scale to a very large size: petabytes of data across thousands of commodity servers.
4
votes
1answer
62 views
Is Cassandra a good candidate database for that must sustain over 100 read/write operations per second?
Currently our system uses PostgreSQL, however we seem to have pushed the limit of its capabilities. Some of our tables need to handle over 100 read/write operations per second so it is probably time ...
0
votes
1answer
30 views
Big O for zigzag merge join?
What is the Big O for the zig-zag merge join algorithm?
GAE's Big Table uses it, they go into it in these videos:
http://www.youtube.com/watch?v=AgaL6NGpkB8
...
4
votes
1answer
47 views
At what rate do indexes “explode” in GAE's big table?
At what rate do indexes "explode" in GAE's big table?
The excerpt from their documentation below explains that for collection values, indexes can "explode" exponentially.
Does this mean that for an ...
4
votes
2answers
30 views
Does HBase support indexing on list properties and non-equality operators?
Have a background in GAE's Big Table. From what I have read, HBase is the open source version of Big Table and should be very comparable in its features.
Using Big Table, this object could be indexed ...
0
votes
2answers
32 views
NDB .order returns an empty result
I have two entities in my database which are connected. We'll call them A and B. I have an instance of A in memory (we'll call him a), and the following query currently works:
B.query(B.parent == ...
1
vote
3answers
71 views
does leveldb/Cassandra's bloom filter help in range query?
As I knonw, leveldb/cassandra stores their records in SSTable, and use bloom filter to select SSTable on performing exact key query, does their bloom filter help in key range query?
Thanks!
0
votes
4answers
78 views
how to convert a relational database to one Bigtable
I want to create one big table contains all the data from all table in database then export this table into csv file then import this file into Hbase ?
My issue is first step which is how to create ...
0
votes
1answer
48 views
Is modeling infinite-scale relationships in NoSQL / BigTable (GAE) possible?
My team is writing an application with GAE (Java) that has led me to question the scalability of entity relationship modeling (specifically many-to-many) in object oriented databases like BigTable.
...
0
votes
0answers
20 views
Loading Pipe Delimited text file with varying structure on each line
I've pipe delimited text file that contains various events of a user. Each event will have different number of attributes. What is the best way to load this file in BIG Table, what is the best ...
1
vote
1answer
118 views
NoSQL (BigTable…) and TimeSeries Data
I work in an organization that collects/stores a lot of time series data (time=value,time=value...). Today we use a historian to collect and process this data. The main advantage of using a ...
0
votes
1answer
23 views
About the relationship in two entities
I'm thinking to create a property which store the key or the ID of the other entity as a reference to the entity.
I want to know two things.
1. Which data should the property store, the key or the ...
1
vote
1answer
31 views
What is the data type of ID? long?
ID of the entity which is generated automatically when you create an entity.
What is the data type of it?
I want to know the maximum actually.
2
votes
1answer
99 views
HBase, Big Table supports single row transaction support
What does it mean that HBase, Google's BigTable supports single row transaction support but not multi row?-- Currently i am using HBase on top of my local file system how can i see this practically.
2
votes
3answers
147 views
ndb.query.count() failed with 60s query deadline on large entities
For 100k+ entities in google datastore, ndb.query().count() is going to cancelled by deadline , even with index. I've tried with produce_cursors options but only iter() or fetch_page() will returns ...
0
votes
1answer
52 views
Initializing Bigtable with test data
My app has a Google App engine back end which uses BigTable for it's persistence. I have some functional tests I want to run which are dependent on existing Test data being preloaded in the database. ...
0
votes
0answers
40 views
How to design a simple model with “persons / events / places”?
I am currently starting to learn how to use NoSQL, Objectify (and Bigtable).
Here is the "model" (3 entites: person/event/place) I would like to design in the BigTable (or Objectify) way:
relation ...
0
votes
0answers
21 views
Data referential integrity with BigTable
It seems from reading this blog that you the developer must implement referential integrity in your data access layer when using BigTable? Is this true? here is the blog
...
0
votes
0answers
48 views
SSTable and how rows are inserted or modified
Hi I am a little confused about the SSTable in BigTable.
It says SSTable is immutable and has key value pairs. What exactly is the key and value here w.r.t the row/column/time data ?
Also I presume ...
0
votes
1answer
61 views
How to store indexable list/collection in an appengine entity?
After creating an entity:
DatastoreService datastore = DatastoreServiceFactory.getDatastoreService();
Entity employee = new Entity("Employee");
How to set an index-able list property? like say:
...
6
votes
2answers
242 views
What is the benefit of a Key-Value Store over Bigtable?
What is the point of using a dedicated Key-Value Store over Bigtable? My understanding of Bigtable is that it is implemented under the hood with SSTables which are key value based. Given that, then ...
-1
votes
1answer
226 views
How is F1 different from Megastore? [closed]
Google uses its F1 RDBMS for its Ad Business. Google also has Megastore. My understanding is that they are both built on top of Bigtable. What is the technical justification for having both exist?
...
1
vote
1answer
89 views
Join query between two big tables in mysql
i have to run a join query between Tow big table in mysql every table's size is 300MB , the problem the execution time in mysql , can some one help me ?
2
votes
1answer
211 views
Using Search API Python - Google App Engine Big Table
I would like to use Search API with an application that is already using a defined model (db.Model).
For example, suppose that my model looks like this:
class Greeting(db.Model):
author = ...
0
votes
1answer
125 views
NoSql vs BigTable (comparison of client API's)
This might sound like a dumb question but I am recently learning about a Big Table.
Would someone please tell me the advantage of using Big Table over NoSql databases. I eventually see both of them ...
0
votes
1answer
75 views
How to use Queries efficiently in GoogleAppEngine with Python?
Let's say I have an entity of kind Dog in my datastore. I want to perform a simple operation on all Dogs, but I have a lot of dogs.
all_dogs = Dog.all(keys_only=True)
print dogs.count(100000) ...
1
vote
0answers
94 views
About memtable in cassandra: hashtable or sorted array
I've read some article and the original paper about cassandra. Now I'm confused about the memtable:
Some article says that the rows in memtable are ordered by row key, but some article says that ...
3
votes
1answer
243 views
Column-family database sharding and replication [NoSQL Distilled]
In section 4.5 Combining Sharding and Replication of the NoSQL Distilled book, the following assertion is made:
"Using peer-to-peer replication and sharding is a common strategy for column-family ...
1
vote
1answer
901 views
Redis versus Cassandra(Bigtable data model)
Suppose I need to do the following operations intensively:
put(key, value)
where value is a map of <column name, column value>.
I havn’t known NoSQL for long, what I know is that both Cassandra ...
0
votes
1answer
63 views
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!
0
votes
2answers
158 views
big mysql database count distinct performance
helo
i have a big problem i have a table with around 50M of rows. And in this table i have 3 columns: location, code of a person, and date. it looks something like this:
date person ...
1
vote
2answers
207 views
Are there any samples for appengine Java report generation?
We are using AppEngine and the datastore for our application where we have a moderately large table of information containing a list with entries.
I would like to summarize the list of entries in a ...
1
vote
1answer
110 views
What is the best practice to store multi valued/repeated data in google datastore?
I have a simple scenario where I have 4 entities.
Destination : name, location, tags (multi valued), created, last modified, created by, last modified by
Trip : contains multiple Destinations, name, ...
0
votes
1answer
110 views
How to search Entities effectively in google datastore
I am using Datastore low level APIs for an application (Internal job portal).
I have an entity called Candidate with following properties
Entity cadidate=new Entity("Candidate",getEmpNum());
...
0
votes
1answer
242 views
Delete all fields in huge mysql table
I have a lot amount of db, now i need to delete some table, where is many data, about millions, but if i delete using sql syntaxis, phpmyadmin interface, or delete table, i still have some data after ...
0
votes
1answer
111 views
portable GAE bigtable abstraction for python?
I am designing a new GAE python application and would like to design it in a way to allow self-hosting.
A lot of web frameworks are platform neutral, but when it comes to database, I have a very ...
1
vote
1answer
195 views
Mysql big table multiple dates in where clause query performance
I have following table with 2 million rows in it.
CREATE TABLE `gen_fmt_lookup` (
`episode_id` varchar(30) DEFAULT NULL,
`media_type` enum('Audio','Video') NOT NULL DEFAULT 'Video',
...
1
vote
1answer
133 views
List of unique values for a property in Google App Engine
I'm currently rewriting a python GAE app in Java, and am question my entity design. I have entities like the following so that I could query the datastore and easily get back a unique list of ...
0
votes
1answer
68 views
App-engine query
I am new to app-engine Datastore and to NoSQL world in common. I am developing a simple application where a user can declare his/her expenses everyday. Every user(Account) has its own declared ...
0
votes
0answers
44 views
Need an option for BigTable implementation which allows paging of the data
I've been playing around with a couple of BigTable implementations, I need to create some data which has dynamic column names and I need to be able to select this data and do sorting and paging by ...
1
vote
1answer
269 views
Lists in NoSQL/BigTable Data Modeling & Super Columns (with Cassandra)
I'm new to NoSQL and BigTable, and I'm trying to learn how I can (and if should) use super columns to create a BigTable friendly schema.
Based on this article about NoSQL data modeling, it sounds ...
0
votes
2answers
220 views
BigTable with C# Library
Is there any sort of LinqToBigTable library out there or anything that makes it link up with C#? I am looking to integrate with App Engine BigTable.
0
votes
1answer
286 views
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 : ...
1
vote
3answers
80 views
Some concern about putting a payment/transactional app on GAE
I'm trying to build a shopping-cart-like webapp on GAE. So far, I haven't deployed anything on GAE still and just keep doing some POC locally... then, I read this:
...
0
votes
1answer
1k views
HBase schema row key design - increment counter?
I am struggling to find any documents about increment counter in HBase. Any one knows any?
I am designing a Hbase table schema for my application. My row_key can't guarantee 100% uniqueness. So the ...
3
votes
2answers
335 views
how to handle very large data?
I'm about to start a new project which is basically a reporting tool which should have a rather very large database.
The number of tables will not be large (<200), majority of data (80%) will be ...
0
votes
1answer
207 views
Questions for the cloud experts - OpenStack Hypertable?
Just trying to wrap my brain around open source cloud.
1) Is OpenStack running on OS like Ubuntu or is Ubuntu running on OpenStack?
2) Running OpenStack - do you get something like ...
1
vote
2answers
124 views
Threading-type solution with google app engine
I have a "queue" of about a million entities on google app engine. I have to "pop" items off of the queue by using a query.
There are a bunch of client processes running all over the place that are ...
4
votes
2answers
1k views
GAE Cloud SQL and High Replication Datastore
With HRD and BigTable, you are forced to deal with eventual consistency for all queries that are not ancestor queries. Your code has to be robust enough to cope with the fact that the results may be ...
2
votes
3answers
464 views
Does app engine automatically cache frequent queries?
I seem to remember reading somewhere that google app engine automatically caches the results of very frequent queries into memory so that they are retrieved faster.
Is this correct?
If so, is ...
0
votes
2answers
276 views
Modeling data in App Engine. Child entities vs. Document-style
Trying to model some highly connected, but also hierarchical data in app engine.
Here is an example:
Person:
Phone Numbers:
Number: 555-555-5555, Ext: 123, Notes: Work
Number: ...


