Tagged Questions
The sharding tag has no wiki summary.
13
votes
3answers
841 views
MySQL sharding approaches?
What is the best approach for Sharding MySQL tables.
The approaches I can think of are :
Application Level sharding?
Sharding at MySQL proxy layer?
Central lookup server for sharding?
Do you know ...
11
votes
3answers
602 views
When people talk about scaling a website with 'shards', what do they mean?
I have heard the 'shard' technique mentioned several times with regard to solving scaling problems for large websites. What is this 'shard' technique and why is it so good?
10
votes
3answers
5k views
what is a good way to horizontal shard in postgresql
what is a good way to horizontal shard in postgresql
1. pgpool 2
2. gridsql
which is a better way to use sharding
also is it possible to paritition without changing client code
It would be great ...
10
votes
9answers
7k views
MySQL Partitioning / Sharding / Splitting - which way to go?
We have an InnoDB database that is about 70 GB and we expect it to grow to several hundred GB in the next 2 to 3 years. About 60 % of the data belong to a single table. Currently the database is ...
9
votes
3answers
444 views
Recommended practice to deploy MongoDB on EC2 for production?
I would like to deploy mongoDB on EC2 for my production. However, I could not find enough information online to help answer my architectural questions.
In general, what should be the initial cluster ...
8
votes
8answers
3k views
Extreme Sharding: One SQLite Database Per User
I'm working on a web app that is somewhere between an email service and a social network. I feel it has the potential to grow really big in the future, so I'm concerned about scalability.
Instead of ...
7
votes
1answer
1k views
NHibernate with Sql Azure and Sharding
Does anyone have any good sources of information of using NHibernate with Sql Azure with the implications of sharding (because of the 10gb cap)? I know there are posts on the internet that reference a ...
7
votes
4answers
1k views
Resources for Database Sharding and Partitioning
I'm working with a database schema that is running into scalability issues. One of the tables in the schema has grown to around 10 million rows, and I am exploring sharding and partitioning options ...
6
votes
1answer
70 views
what is the difference in indexing and sharding
What is the difference between indexing and sharding. What is the role of both?
6
votes
4answers
768 views
Searching across shards?
Short version
If I split my users into shards, how do I offer a "user search"? Obviously, I don't want every search to hit every shard.
Long version
By shard, I mean have multiple databases where ...
6
votes
6answers
4k views
Database sharding and Rails
What's the best way to deal with a sharded database in Rails? Should the sharding be handled at the application layer, the active record layer, the database driver layer, a proxy layer, or something ...
5
votes
2answers
150 views
How to sort by a counter when using sharded counters
I have an application where the main entity is a Story and users can vote for each story. Each vote increments a vote_count for the story.
I am concerned about write contention on the story so I ...
4
votes
2answers
87 views
Huge number of objects, sharding and java EE
I'm new to java ee and I'm not sure how to implement a particular requirement.
I have need for a large set (millions) of objects that maintain a bunch of rules and state and present an API for ...
4
votes
3answers
266 views
Libraries for hash partitioning/Sharding with JPA
My department has decided move to hash partitioning/sharding for some of our large Oracle databases. We will be splitting our entities across different schemas. I've been tasked to do a spike to ...
4
votes
3answers
1k views
Sharding GridFS on MongoDB
I'm documenting about the GridFS and the possibility to shard it among different machines.
Reading the documentation here, the suggested shard key is chunks.files_id. This key will be linked to the ...
4
votes
1answer
411 views
NHibernate or EF, Shards or manual sharding?
I'd like to know if I'm making the right decision. I'm developing an application that allows the user to mix database entries from a local database (possibly SQL CE or SQLite) and from a remote, ...
4
votes
1answer
271 views
wordpress sharding: which multi-db plugin to use?
I've got a wordpress multisite installation that's hosting enough blogs I need to shard the database. I see there are three plugins available to spread wordpress across multiple databases:
...
4
votes
1answer
746 views
Mongo sharding fails to split large collection between shards
I'm having problems with what seems to be a simple sharding setup in mongo.
I have two shards, a single mongos instance, and a single config server set up like this:
Machine A - 10.0.44.16 - config ...
4
votes
5answers
364 views
Automatically Sharding a Java Map across multiple nodes
I have a problem where I need to assemble a Map whose eventual size is in the GBs (going on past 64GB) and I cannot assume that a user of the program will have this kind of monster machine hanging ...
4
votes
3answers
2k views
How do I speed up deletes from a large database table?
Here's the problem I am trying to solve: I have recently completed a data layer re-design that allows me to load-balance my database across multiple shards. In order to keep shards balanced, I need ...
4
votes
2answers
698 views
Data Sharding
I'm interested in sharding my websites user data across multiple servers.
For example, users will login from the same place. but the login script needs to figure out what server that users data ...
4
votes
1answer
853 views
How to I determine if an object exists for a given key in the Google AppEngine datastore using Java?
I'm trying to port the Sharding Counters example (code.google.com/appengine/articles/sharding_counters.html) to Java. The only problem is that the Java API does not have a call similar to Python's ...
3
votes
2answers
367 views
How does django handle multiple memcached servers?
In the django documentation it says this:
...
One excellent feature of Memcached is its ability to share cache over
multiple servers. This means you can run Memcached daemons on multiple
...
3
votes
1answer
157 views
How to change the shard key
I Know that impossible to change shard key.
But, when I set incorrect shard key, How to change that?
3
votes
2answers
279 views
Sharding at application level
I am designing a multi-tenant system and am considering sharding by tenant at the application layer level instead of database.
Hypothetically, the way this should work is that for incoming request a ...
3
votes
3answers
357 views
MySQL InnoDB big table: to shard or to add more RAM?
Folks, I'm a developer of a social game and there are already 700k players in the game, and about 7k new players are registered every day, about 5k players are constantly online.
The DB server is ...
3
votes
2answers
113 views
3
votes
2answers
268 views
Why does ObjectId make sharding easier in MongoDB?
I keep reading that using an ObjectId as the unique key makes sharding easier, but I haven't seen a relatively detailed explanation as to why that is. Could someone shed some light on this?
The ...
3
votes
1answer
287 views
How do you implement sorting and paging on distributed data?
Here's the problem I'm trying to solve:
I need to be able to display a paged, sorted table of data that is stored across several database shards.
Paging and sorting are well known problems that most ...
3
votes
3answers
768 views
mongoDB replication+sharding on 2 servers reasonable?
Consider the following setup:
There a 2 physical servers which are set up as a regular mongodb replication set (including an arbiter process, so automatic failover will work correctly).
now, as far ...
3
votes
3answers
498 views
How many shards in a Google App Engine sharded counter?
I read today about sharded counters in Google App Engine. The article says that you should expect to max out at about 5/updates per second per entity in the data store. But it seems to me that this ...
3
votes
2answers
382 views
How to design a scalable twitter like service?
Does anyone have any information on the architecture of twitter?
A few specific items I'm especially interested in:
I know that they use message queues. But what exactly do they use queues for?
Do ...
3
votes
1answer
346 views
Where should one place the code to autoincrement a sharded counter on Google App Engine/Django when one creates a new model?
I've a model MyModel (extending Google's db.Model), and I want to keep track of the number of Models that have been created.
I think the code at from Google's I/O talk on Sharding Counters is quite ...
2
votes
2answers
93 views
Map/Reduce on a single server
Does it make sense to do map/reduce on a non sharded architecture ?
Or, in other words, is it effective to do it on a single server.
2
votes
1answer
56 views
Can I shard Mongo base on IP address?
Instead of sharding base on the data, can I shard based on where the request (IP address) coming from?
Hmmm one trick I think of is the data itself contains IP address. Is there another way?
2
votes
2answers
93 views
To shard or not to shard? GAE/java/jdo
I'm currently porting some work from MySQL to Google App Engine/Java. I'm using JDO, as well as the lower level java API where required.
I read through the optimization guide about sharding ...
2
votes
3answers
253 views
Scalable Pub/Sub engine for realtime
I'm looking for a pub/sub engine, with the following requirements:
Very low latency < 0.5 sec
Scalable
Shardable (based on geo localisation)
I'd like to be able to have multiple pub/sub servers ...
2
votes
0answers
24 views
Distributed FS with deterministic multiple masters?
I'm looking for a distributed file (or other storage) system for managing a very large number of mutable documents. Each document can be rather large (1-100MB). Some reads need to be guaranteed to be ...
2
votes
1answer
323 views
What are the benefits of vertical partitioning VS horizontal partitioning?
I simply cannot understand when or in what situation will we ever choose vertical partitioning instead of horizontal partitioning.
What are the benefits of vertical partitioning VS horizontal ...
2
votes
1answer
96 views
Pros/cons of sharding using “app+db nodes” vs. separately sharding the db and load-balancing the app servers
We are preparing to scale the API side of an API-heavy web application. My (technically savvy) client proposes a rather unconventional approach to this: instead of balancing the load to several app ...
2
votes
1answer
150 views
Querying sharded data in MySQL
I'm dealing with a lot of data in a MySQL database and I'd like to use sharding to scale out. I understand the principles of sharding, and I even know how I want to shard my data. When I look up ...
2
votes
2answers
68 views
How to scale writings in your DB without recurring to sharding?
How would you scale writings without recurring to sharding (specially with SQL Server 2008)?
2
votes
1answer
230 views
YCSB - why I can never find a shard configuration anywhere on internet
I see all kinds of reference to MongoDB as a client for the YCSB benchmarks to test NoSQL database server scalability / elasticity.
https://github.com/brianfrankcooper/YCSB
However, it is clear ...
2
votes
1answer
333 views
does multiple shard key helps performance in mongodb?
Since sharding database use shard key to split chunk AND route queries, so I think maybe more shard key can helps to make more queries targeted
I tried to specify multiple keys like this
...
2
votes
1answer
834 views
How does PostgreSQL's scaling compare to MongoDB?
I know a fair about about how amazingly scalable MongoDB is, particularly with its auto-sharding, and the ability to hot-add servers to a cluster.
However, I haven't found much data about ...
2
votes
2answers
369 views
Does any RDBMS do auto scaling, sharding, re-balancing?
I think one of the advantages of no-sql such as MongoDB is that it can scale horizontally automatically: just add a cheap machine and the data can "spread over" to the new machine.
How about for ...
2
votes
0answers
41 views
How do I use a standard active record for some models when i am using the datafabric gem?
I am using the data-fabric gem, sharding between 2 machines.
However, I would like to use the standard activerecord functions for some tables.
Anyone has a similar experience achieving this?
2
votes
4answers
344 views
php: Creating automatic database sharding logic?
I did just come up with the following idea, but I lack the knowledge to say if it is applicable to a production application.
We have a web application, built on PHP/mySQL to make it easy. A table in ...
2
votes
3answers
95 views
Is it OK to re-create many SQL connections (SQL 2008)
When performing many inserts into a database I would usually have code like this:
using (var connection = new SqlConnection(connStr))
{
connection.Open();
foreach (var item in items)
{
var ...
2
votes
3answers
866 views
database sharding strategy
For an online marketplace product under construction, I have a situation which requires implementing a database sharding solution. I am new to sharding and after reading the posts in this forum I feel ...