Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

121
votes
11answers
6k views

What scalability problems have you solved using a NoSQL data store?

NoSQL refers to non-relational data stores that break with the history of relational databases and ACID guarantees. Popular open source NoSQL data stores include: Cassandra (tabular, written in ...
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 ...
3
votes
2answers
176 views

Data allocation in the distributed databases

How to optimize a data allocation in the distributed database? Are there any software products for solving this problem? For example: There are some number of connected servers for the distributed ...
2
votes
2answers
186 views

Distributed database synchronization

I am trying to understand at a conceptual level , how are databases synchronized when they are largely distributed. eg a rail/airline reservation system. Do each of the market leaders have their own ...
2
votes
2answers
437 views

Looking for distributed, in-memory Graph DB

Is there a database which will satisfy all (or at least most) of this requirements? Graph oriented - optimized for storing graphs and traversal(e.g HyperGraphDB, Neo4j) Running in memory, but having ...
1
vote
2answers
191 views

Distributed Database Computing - Is it really possible within the RDBMS paradigm?

I am asking this in the context of NoSQL - which achieves scalability and performance without being expensive. So, if I needed to achieve massively parallel distributed computing across databases ... ...
1
vote
3answers
108 views

Which database for a web crawler, and how do I use MySQL in a distributed environment?

Which database engine should I use for a web crawler, InnoDB or MYiSAM? I have two PC's, each with 1TB hard drives. If one fills up, I'd like for it to save to the other PC automatically, but reads ...
0
votes
1answer
36 views

Looking for a lightweight-ish distributed DB/cache

I will store simple plain text, but I'm looking for these features from a (D)DB/cache: Replication across all nodes Adding nodes to a live cluster It's free Persistence to disk (not to another DB) ...
0
votes
1answer
57 views

What kind of database in regards to cap theorem should be used for an mmo?

Let's say an mmo was being created with the features of being first person view, having one world everyone plays in (like eve online), and being a sandbox game. What database would best suit it's ...
0
votes
1answer
185 views

Looking for a mature, scalable GraphDB with .NET or C++ binding

My basic requirements from a GraphDB: Mature (production-ready) Native .NET or C++ language binding Horizontal scalability: both Automated data redundancy and sharding Distributed graph algorithms ...
0
votes
1answer
246 views

Key-Value storage with realtime multimaster replication

Are there any opensource distributed key-value storage which satisfy following conditions. Almost real-time multimaster replication. (tie-breaker will be based on timestamp and not anything more ...
0
votes
1answer
271 views

Distributed C++ game server which use database

My C++ turn-based game server (which uses database) does not stand against current average amount of clients (players), so I want to expand it to multiple (more then one) amount of computers and ...
0
votes
3answers
153 views

What would you recommend to read to a person who is going to write his own DB?

Since there are no answers to my previous question. I'm really thinking to implement a custom DB which will satisfy my requirements. Yes I know, sounds crazy. But what books, articles and etc. ...
0
votes
3answers
450 views

What alternatives do I have if I want a distributed multi-master database?

I will build a system where I want to reduce single-point-of-failures, and I need a database. Is there any (free) relational database systems that can handle multi-master setups good (i.e where it is ...