0
votes
1answer
38 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 …
0
votes
3answers
49 views
Assign 10-digit char user ids to 1 of 1000 servers.
Hi -- Looking to shard a database and to assign different users to different home servers based on their user id. User IDs are 10 character strings, e.g., "f4gKUKkj91" ... each server has an ID of 1 …
0
votes
2answers
65 views
What does Sharding means from Database Design Perspective ?
What is the concept of Sharding from Database Design perspecitve ?
1
vote
1answer
82 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 Gogole'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 …
3
votes
3answers
225 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 …
0
votes
3answers
113 views
Distributed Key-Value Data Store with Offline Access (Static Partitioning)
Need to be able to set server(s) that replicate all information, as a master data store that has all the data.
Also need servers that specifically store/replicate certain data, available in local …
2
votes
2answers
124 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 …
0
votes
0answers
238 views
can someone show how to setup pgpool 2 in parallel *query* mode ie horizontal partitioning
i did read both extensively, but finishing all the steps parallel mode or horizontal partitioning mode doesnot work!
but this is my conf file
backend_hostname, backend_port, backend_weight
here are …
0
votes
0answers
184 views
How do we do horizontal sharding/partitioning in Postgresql using pgpool-II?
Grid sql and pgpool-ii are partitioning tools for postgresql. gridsql is designed for reporting business applications.
PGPool-II for transactional systems.
Can some one show me how to do a …
0
votes
1answer
35 views
Have any good links/articles on job queuing & db sharding?
Does anyone have good links on how/when/why to use job queuing to scale web apps? Also, articles on db sharding would be useful too :)
2
votes
2answers
262 views
what is a good way to horizontal shard in postgresql
Hey guys
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 …
2
votes
1answer
210 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 …
0
votes
3answers
310 views
MySQL Proxy Alternatives for Database Sharding
Are there any alternatives for MySQL Proxy. I don't want to use it since it's still in alpha.
I will have 10 MySQL servers with table_1 table_2 table_3 table_4 ... table_10 spread across the 10 …
2
votes
3answers
177 views
How to create unique row ID in sharded databases?
In a non-sharded DB, I could just use auto-increment to generate a unique ID to reference a specific row.
I want to shard my DB, say into 12 shards. Now when I insert into a specific shard, the …
1
vote
2answers
157 views
Database Sharding Support in Propel
Just wonder how good is Propel's support for database sharding? I am thinking about creating my application in PHP, using MySQL as the database server and Propel as the ORM.
I figure out that it may …
