Tagged Questions
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.
98
votes
5answers
56k views
64
votes
14answers
11k views
Hidden limitations of Google App Engine? [closed]
I've been looking into writing a web app that will run on Google App Engine, but before I commit myself to the platform I'd like to know what, if any, limitations there are. I'm aware of the basic ...
42
votes
7answers
2k views
Life without JOINs… understanding, and common practices
Lots of "BAW"s (big ass-websites) are using data storage and retrieval techniques that rely on huge tables with indexes, and using queries that won't/can't use JOINs in their queries (BigTable, HQL, ...
20
votes
4answers
3k views
Is BigTable slow or am I dumb?
I basically have the classic many to many model. A user, an award, and a "many-to-many" table mapping between users and awards.
Each user has on the order of 400 awards and each award is given to ...
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 ...
14
votes
2answers
3k views
How do I define a unique property for a Model in Google App Engine?
I need some properties to be unique. How can I achieve this?
Is there something like unique=True?
I'm using Google App Engine for Python.
13
votes
4answers
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 ...
11
votes
9answers
2k views
Need a distributed key-value lookup system
I need a way to do key-value lookups across (potentially) hundreds of GB of data. Ideally something based on a distributed hashtable, that works nicely with Java. It should be fault-tolerant, and ...
11
votes
4answers
3k views
Pro's of databases like BigTable, SimpleDB
New school datastore paradigms like Google BigTable and Amazon SimpleDB are specifically designed for scalability, among other things. Basically, disallowing joins and denormalization are the ways ...
11
votes
4answers
6k views
How do you design data models for Bigtable/Datastore (GAE)?
Since the Google App Engine Datastore is based on Bigtable and we know that's not a relational database, how do you design a database schema/data model for applications that use this type of database ...
9
votes
2answers
678 views
Denormalization in Google App Engine?
Background::::
I'm working with google app engine (GAE) for Java. I'm struggling to design a data model that plays to big table's strengths and weaknesses, these are two previous related posts:
...
8
votes
4answers
2k views
Data Modelling Advice for Blog Tagging system on Google App Engine
Am wondering if anyone might provide some conceptual advice on an efficient way to build a data model to accomplish the simple system described below. Am somewhat new to thinking in a non-relational ...
7
votes
2answers
600 views
Do a mass db.delete on App Engine, without eating CPU
We've got a reasonably-sized database on Google App Engine - just over 50,000 entities - that we want to clear out stale data from. The plan was to write a deferred task to iterate over the entities ...
7
votes
2answers
870 views
Tree structures in a nosql database
I'm developing an application for Google App Engine which uses BigTable for its datastore.
It's an application about writing a story collaboratively. It's a very simple hobby project that I'm working ...
7
votes
5answers
275 views
Database that consumes less disk space
I'm looking at solutions to store a massive quantity of information consuming the less possible disk space.
The information structure is very simple and the queries will also be very simple.
I've ...
7
votes
3answers
375 views
What aspect of relational databases makes it difficult for them to scale sufficiently on services like Google App Engine?
Apparently the reason for the BigTable architecture has to do with the difficulty scaling relational databases when you're dealing with the massive number of servers that Google has to deal with.
...
7
votes
3answers
2k views
Join operation with NOSQL
I have gone through some articles regarding Bigtable and NOSQL. It is very interesting that they avoid JOIN operations.
As a basic example, let's take Employee and Department table and assume the ...
7
votes
8answers
2k views
30 million records a day, SQL Server can't keep up, other kind of database system needed?
Some time ago I thought an new statistics system over, for our multi-million user website, to log and report user-actions for our customers.
The database-design is quite simple, containing one table, ...
7
votes
2answers
17k views
Google's BigTable vs. A Relational Database [closed]
Duplicates
Why should I use document based database instead of relational database?
Pros/Cons of document based database vs relational database
I don't know much about Google's ...
5
votes
2answers
191 views
Explanation of performance considerations of read/write on Google Datastore (GAE)?
I'm having a very difficult time understanding the mechanics of the Google App Engine Datastore.
I want to understand the mechanics so I can build my database in an optimal way for the database.
...
5
votes
1answer
233 views
Modeling Hierarchical Data - GAE
I'm new in google-app-engine and google datastore (bigtable) and I've some doubts in order of which could be the best approach to design the required data model.
I need to create a hierarchy model, ...
5
votes
2answers
643 views
db.get() vs db.get_by_key_name() performance (GAE BIgtable/Datastore)
How does the performance of db.get() compare with that of db.get_by_key_name()?
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
4answers
3k views
Bigtable database design theory
I am very well versed in the theory and practice of relational database design.
I know what works and what doesn't, what is performant and what is maintainable (almost - there's always place to tweak ...
5
votes
9answers
4k views
What's your approach for optimizing large tables (+1M rows) on SQL Server?
I'm importing Brazilian stock market data to a SQL Server database. Right now I have a table with price information from three kind of assets: stocks, options and forwards. I'm still in 2006 data and ...
4
votes
2answers
820 views
parent->child relationships in appengine python (bigtable)
I'm still learning my lessons about data modeling in bigtable/nosql and would appreciate some feedback. Would it be fair to say that I should avoid parent->child relationships in my data modeling if I ...
4
votes
1answer
166 views
Can materialized views be used as a fast denomalized big table?
Can Oracle Materialized views be used to join multiple related tables having foreign keys to create a larger denormalized big table which is refreshed instantaneously?
On some investigations, it says ...
4
votes
2answers
231 views
GQL query for <missing>
When you change data models on the app engine to add new properties those entries without a certain property are listed with the value <missing> in the online data viewer.
What I'm wondering is ...
4
votes
3answers
1k views
Database design - google app engine
I am working with google app engine and using the low leval java api to access Big Table. I'm building a SAAS application with 4 layers:
Client web browser
RESTful resources layer
Business layer
...
4
votes
1answer
317 views
Google Appengine: Is This a Good set of Entity Groups?
I am trying to wrap my head around Entity Groups in Google AppEngine. I understand them in general, but since it sounds like you can not change the relationships once the object is created AND I have ...
4
votes
2answers
595 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
Bigtable to MySQL?
We're thinking of building some of our infrastructure on to Google AppEngine. But we're worried that if it does not scale, we'll need to export the data and run it on our own servers in future.
Is ...
4
votes
1answer
1k views
Recursive Relationship with Google App Engine and BigTable
In a classic relational database, I have the following table:
CREATE TABLE Person(
Id int IDENTITY(1,1) NOT NULL PRIMARY KEY,
MotherId int NOT NULL REFERENCES Person(Id),
FatherId int NOT ...
4
votes
5answers
728 views
Implementing large scale log file analytics
Can anyone point me to a reference or provide a high level overview of how companies like Facebook, Yahoo, Google, etc al perform the large scale (e.g. multi-TB range) log analysis that they do for ...
4
votes
2answers
491 views
What changes do I need for my tables to work on AppEngine's BigTable?
Let's say I have a booking database consisting of users:
user_id
fname
lname
and their tickets
ticket_id
user_id
flight_no
and associated flights
flight_no
airline
departure_time
arrival_time
...
3
votes
1answer
142 views
Meaning of words used to describe the BigTable data model
I am learning how to use the Google App Engine. My question is on the meaning of words used to describe a BigTable database.
I have read google's paper on big table This paper describes the BigTable ...
3
votes
2answers
230 views
Which database technology for big structured data?
Scenario: Think you have got 90TB of text in 200 tables. This is structured related data. compareable to dbpedia only more data. Any really relational and distributed and performant database would do ...
3
votes
2answers
211 views
Transactional counter with 5+ writes per second in Google App Engine datastore
I'm developing a tournament version of a game where I expect 1000+ simultaneous players. When the tournament begins, players will be eliminated quite fast (possibly more than 5 per second), but the ...
3
votes
1answer
249 views
What is a good resource for database design on Bigtable/S3/Azure style databases?
Coming from a relational database background, I can make the transition to document oriented databases pretty quickly. Many of the most valuable "relations" are maintained by the hierarchy of the ...
3
votes
1answer
274 views
header on each page of big table of xtable?
How do you put on a big table of xtable the table header on each page?, So that is easier to read the table the table between pages.
I use the following in Sweave:
test.big<- ...
3
votes
4answers
130 views
Is there any security concern with displaying the Key value to users in a URL?
I am using the Key value of entities in my datastore as the unique identifier in the URL for pulling up a record:
http://mysite.appspot.com/myaction/1x7s3fgdlbnRlcklkcicLAbcXc2VyQWNjb3VudCIFYW9uZ
...
3
votes
4answers
229 views
How do the newer database models achieve better scalability and performance as compared to a traditional RDBMS implementation?
We have
BigTable from Google,
Hadoop, actively contributed by Yahoo,
Dynamo from Amazon
all aiming towards one common goal - making data management as scalable as possible.
By scalability what I ...
3
votes
2answers
191 views
Querying for a value existing in a model's list property in AppEngine
A sample model:
class Foo(db.Model):
id = db.IntegerProperty()
bar = db.ListProperty(int, required=True)
How can I query using either Query or GqlQuery to return all Foo entities that ...
3
votes
1answer
429 views
App Engine BadValueError On Bulk Data Upload - TextProperty being construed as StringProperty
bulkoader.yaml:
transformers:
- kind: ExampleModel
connector: csv
property_map:
- property: __key__
external_name: key
export_transform: ...
3
votes
2answers
2k views
BigTable vs noSQL
may i know in 'nosql' there is limitation just like bigtable where we should 'denormalized' our table/entity ?
any api wrapper that allow we to write code once and can be used for google app engine ...
3
votes
2answers
179 views
Does having large number of properties in an Entity effect datastore read/write performance?
I have couple of entities with properties numbering in the range of 40 - 50. All these properties are unindexed. These entities are a part of a larger entitygroup tree structure, and are always ...
3
votes
3answers
318 views
Scalability comparison between different DBMSs
By what factor does the performance (read queries/sec) increase when a machine is added to a cluster of machines running either:
a Bigtable-like database
MySQL?
Google's research paper on ...
3
votes
3answers
3k views
3
votes
2answers
896 views
2
votes
1answer
45 views
NoSQL keyword search in huge table
I'm curios how can a NoSQL solution support keyword search in a very very big table distributed accross multiple servers?
By keyword search I mean a DB like the one Google has, with huge amount of ...