active questions tagged sharding - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T23:06:50Z http://stackoverflow.com/feeds/tag/sharding http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1785632/assign-10-digit-char-user-ids-to-1-of-1000-servers 0 Assign 10-digit char user ids to 1 of 1000 servers. ensnare 2009-11-23T20:12:14Z 2009-11-23T20:54:50Z <p>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 - 1000. How can I create a hash function in php to uniquely and consistently assign each user id to a specific shard ? If the user id were an integer I could do <code>userid % 1000</code> ... but since they are alphanumeric I'm not sure how to do this with even distribution in php. </p> <p>Thank you!</p> http://stackoverflow.com/questions/1619474/what-does-sharding-means-from-database-design-perspective 0 What does Sharding means from Database Design Perspective ? Rachel 2009-10-24T23:23:22Z 2009-10-24T23:28:29Z <p>What is the concept of Sharding from Database Design perspecitve ?</p> http://stackoverflow.com/questions/902393/how-to-i-determine-if-an-object-exists-for-a-given-key-in-the-google-appengine-da 2 How to I determine if an object exists for a given key in the Google AppEngine datastore using Java? Mark 2009-05-23T20:15:10Z 2009-10-09T14:37:04Z <p>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 'get_by_key_name'. This is the basic idea:</p> <pre><code> Transaction tx = pm.currentTransaction(); Key key = KeyFactory.createKey(CounterShard.class.getSimpleName(), counter + randomIndex); CounterShard shard = pm.getObjectById(CounterShard.class, key); if (shard == null) { // API does not work this way... shard = new CounterShard(key, counter); } shard.increment(); pm.makePersistent(shard); tx.commit(); </code></pre> <p>Unfortunately, this throws a JDOObjectNotFoundException the first time I run it. I could run a query to determine if a counter for a given name exists, but that is not transactional. Another thread could do the same and in the end both would create an object with the same key.</p> <p>From what I understand, the only operations supported within a transaction (for the Java API) are get and put. So how can I lock an object by key that does not exist yet (i.e. no 'get') and make sure that I am the first and only one creating it?</p> http://stackoverflow.com/questions/1384932/where-should-one-place-the-code-to-autoincrement-a-sharded-counter-on-google-app 1 Where should one place the code to autoincrement a sharded counter on Google App Engine/Django when one creates a new model? Brian M. Hunt 2009-09-06T05:26:18Z 2009-09-06T22:25:53Z <p>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.</p> <p>I think the code at from Google's I/O talk on <a href="http://code.google.com/appengine/articles/sharding%5Fcounters.html" rel="nofollow">Sharding Counters</a> is quite good, so I'm using that. But I'm not sure where I ought to be calling the increment when creating a new code. (I'm using Django, and I've kept the familiar models.py, views.py, etc. layout to the project's applications.)</p> <p>There are a couple possibilities that seem to come to mind for where to put the incrementing code:</p> <ol> <li><p>Overload the Model.put() so that it increments the counter when the model is saved for the first time, and similarly overload Model.delete() to decrement the counter</p></li> <li><p>Attach some sort of listener to saves/deletes, and check that the save is of a new model (does GAE have such listeners?)</p></li> <li><p>Put the counter incrementing code in the function in view.py that creates/deletes models</p></li> </ol> <p>I'd be much obliged for suggestions and thoughts as to how to do this best (and pros/cons of each option).</p> <p>Thank you for reading.</p> <p>Best, Brian</p> http://stackoverflow.com/questions/1130501/distributed-key-value-data-store-with-offline-access-static-partitioning 0 Distributed Key-Value Data Store with Offline Access (Static Partitioning) unknown (google) 2009-07-15T10:01:58Z 2009-08-01T11:00:01Z <p>Need to be able to set server(s) that replicate all information, as a master data store that has all the data.</p> <p>Also need servers that specifically store/replicate certain data, available in local LANs, so that when the internet connection goes down, they can still access their local data. Under normal circumstances, the clients will access most of their data from the local LAN, and may use others when the local LAN server goes down.</p> <p>This is wanted alongside the benefits of a distributed data store, such as failure resistance and speed.</p> <p>Which Distributed Key-Value Data Store or other data storage method would be most suited for this?</p> http://stackoverflow.com/questions/999615/have-any-good-links-articles-on-job-queuing-db-sharding 0 Have any good links/articles on job queuing & db sharding? Justin Vincent 2009-06-16T04:50:01Z 2009-07-30T11:12:46Z <p>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 :)</p> http://stackoverflow.com/questions/1158880/how-do-i-speed-up-deletes-from-a-large-database-table 3 How do I speed up deletes from a large database table? Eric Z Beard 2009-07-21T12:26:21Z 2009-07-24T04:29:54Z <p>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 to be able to migrate data from one shard to another, which involves copying from shard A to shard B, and then deleting the records from shard A. But I have several tables that are very big, and have many foreign keys pointed to them, so deleting a single record from the table can take more than one second.</p> <p>In some cases I need to delete millions of records from the tables, and it just takes too long to be practical.</p> <p>Disabling foreign keys is not an option. Deleting large batches of rows is also not an option because this is a production application and large deletes lock too many resources, causing failures. I'm using Sql Server, and I know about partitioned tables, but the restrictions on partitioning (and the license fees for enterprise edition) are so unrealistic that they are not possible.</p> <p>When I began working on this problem I thought the hard part would be writing the algorithm that figures out how to delete rows from the leaf level up to the top of the data model, so that no foreign key constraints get violated along the way. But solving that problem did me no good since it takes weeks to delete records that need to disappear overnight.</p> <p>I already built in a way to mark data as virtually deleted, so as far as the application is concerned, the data is gone, but I'm still dealing with large data files, large backups, and slower queries because of the sheer size of the tables.</p> <p>Any ideas? I have already read older related posts here and found nothing that would help.</p> http://stackoverflow.com/questions/1054479/data-sharding 2 Data Sharding razor 2009-06-28T07:43:55Z 2009-06-28T09:09:27Z <p>I'm interested in sharding my websites user data across multiple servers.</p> <p>For example, users will login from the same place. but the login script needs to figure out what server that users data resides on. So the login script would query the master registry for that user name, and it might return that it's on server B. The login script would then connect to server B and verify the username/password. Does that make sense? Is it normal to have something like a master registry to resolve where data resides?</p> <p>also- I've searched but I haven't had much luck finding tutorials/information/strategies on sharding. If there are any online resources that you are aware of on the topic I would greatly appreciate it if you would share so that I may educate myself. Thanks!</p> http://stackoverflow.com/questions/1052295/can-someone-show-how-to-setup-pgpool-2-in-parallel-query-mode-ie-horizontal-par 0 can someone show how to setup pgpool 2 in parallel *query* mode ie horizontal partitioning pylabs 2009-06-27T07:18:40Z 2009-06-27T07:18:40Z <p>i did read both extensively, but finishing all the steps parallel mode or horizontal partitioning mode doesnot work!</p> <p>but this is my conf file</p> <h1>backend_hostname, backend_port, backend_weight</h1> <h1>here are examples</h1> <p>backend_hostname0 = 'localhost' backend_port0 = 5432 backend_weight0 = 1 backend_data_directory0 = '/mnt/work/database'</p> <p>backend_hostname1 = 'marc.somehost.com' backend_port1 = 5432 backend_weight1 = 1 backend_data_directory1 = '/mnt/work/database'</p> <p>this is the problem pgpool-II-2.2.2]$ createdb -p 9999 createdb: could not connect to database postgres: server closed the connection unexpectedly This probably means the server terminated abnormally</p> <h2> before or while processing the request.</h2> <p>Error in log tail -f /tmp/pgpool.log 2009-06-26 17:24:07 LOG: pid 5561: pgpool successfully started 2009-06-26 18:48:34 ERROR: pid 5563: pool_read_int: data does not match between between master(0) slot[1] (50331648) 2009-06-26 18:48:34 ERROR: pid 5563: pool_do_auth: read auth kind failed</p> <p>tail -f /tmp/pgpool.log 2009-06-26 18:49:37 DEBUG: pid 23506: s_do_auth: backend key data received 2009-06-26 18:49:37 DEBUG: pid 23506: s_do_auth: transaction state: I 2009-06-26 18:49:40 DEBUG: pid 23466: I am 23466 accept fd 7 2009-06-26 18:49:40 DEBUG: pid 23466: Protocol Major: 3 Minor: 0 database: postgres user: mark 2009-06-26 18:49:40 DEBUG: pid 23466: new_connection: connecting 0 backend 2009-06-26 18:49:40 DEBUG: pid 23466: new_connection: connecting 1 backend 2009-06-26 18:49:40 DEBUG: pid 23466: pool_read_message_length: slot: 0 length: 8 2009-06-26 18:49:40 DEBUG: pid 23466: pool_read_message_length: slot: 1 length: 8 2009-06-26 18:49:40 ERROR: pid 23466: pool_read_int: data does not match between between master(0) slot[1] (50331648) 2009-06-26 18:49:40 ERROR: pid 23466: pool_do_auth: read auth kind failed</p> <pre><code> can someone show how to setup pgpool 2 in parallel *query* mode ie horizontal partitioning did you look at http://pgpool.projects.postgresql.org/pgpool-II/doc/tutorial-en.html#parallel ? I'd pay close attention to the restrictions here, too... http://pgpool.projects.postgresql.org/pgpool-II/doc/pgpool-en.html#restriction </code></pre> http://stackoverflow.com/questions/1050034/how-do-we-do-horizontal-sharding-partitioning-in-postgresql-using-pgpool-ii 0 How do we do horizontal sharding/partitioning in Postgresql using pgpool-II? pylabs 2009-06-26T16:24:34Z 2009-06-26T18:19:06Z <p>Grid sql and pgpool-ii are partitioning tools for postgresql. gridsql is designed for reporting business applications. </p> <p>PGPool-II for transactional systems. </p> <p>Can some one show me how to do a horizontal partition on the bigint column uid on table users?</p> <p>thanks</p> http://stackoverflow.com/questions/994882/what-is-a-good-way-to-horizontal-shard-in-postgresql 2 what is a good way to horizontal shard in postgresql pylabs 2009-06-15T07:33:42Z 2009-06-18T07:48:31Z <p>Hey guys</p> <h1>what is a good way to horizontal shard in postgresql</h1> <pre><code>1. pgpool 2 2. gridsql </code></pre> <p>which is a better way to use sharding</p> <p>also is it possible to paritition without changing client code</p> <p>It would be great if some one can share a simple tutorial or cookbook example of how to setup and use sharding</p> http://stackoverflow.com/questions/128919/extreme-sharding-one-sqlite-database-per-user 2 Extreme Sharding: One SQLite Database Per User Seun Osewa 2008-09-24T18:28:36Z 2009-05-24T12:00:51Z <p>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.</p> <p>Instead of using one centralized MySQL/InnoDB database and then partitioning it when that time comes, I've decided to create a separate SQLite database for each active user: one active user per 'shard'.</p> <p>That way backing up the database would be as easy as copying each user's <em>small</em> database file to a remote location once a day.</p> <p>Scaling up will be as easy as adding extra hard disks to store the new files.</p> <p>When the app grows beyond a single server I can link the servers together at the filesystem level using GlusterFS and run the app unchanged, or rig up a simple SQLite proxy system that will allow each server to manipulate sqlite files in adjacent servers.</p> <p>Concurrency issues will be minimal because each HTTP request will only touch one or two database files at a time, out of thousands, and SQLite only blocks on reads anyway.</p> <p>I'm betting that this approach will allow my app to scale gracefully and support lots of cool and <em>unique</em> features. Am I betting wrong? Am I missing anything?</p> <p><strong>UPDATE</strong> I decided to go with a less extreme solution, which is working fine so far. I'm using a fixed number of shards - 256 sqlite databases, to be precise. Each user is assigned and bound to a random shard by a simple hash function. </p> <p>Most features of my app require access to just one or two shards per request, but there is one in particular that requires the execution of a simple query on 10 to 100 different shards out of 256, depending on the user. Tests indicate it would take about 0.02 seconds, or less, if all the data is cached in RAM. I think I can live with that!</p> <p><strong>UPDATE 2.0</strong> I ported the app to MySQL/InnoDB and was able to get about the same performance for regular requests, but for that one request that requires shard walking, innodb is 4-5 times faster. For this reason, and other reason, I'm dropping this architecture, but I hope someone somewhere finds a use for it...thanks.</p> http://stackoverflow.com/questions/91710/when-people-talk-about-scaling-a-website-with-shards-what-do-they-mean 10 When people talk about scaling a website with 'shards', what do they mean? Phil Wright 2008-09-18T11:17:45Z 2009-05-12T19:31:15Z <p>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?</p> http://stackoverflow.com/questions/810085/mysql-proxy-alternatives-for-database-sharding 0 MySQL Proxy Alternatives for Database Sharding The Unknown 2009-05-01T03:38:51Z 2009-05-01T12:58:04Z <p>Are there any alternatives for MySQL Proxy. I don't want to use it since it's still in alpha. </p> <p>I will have 10 MySQL servers with table_1 table_2 table_3 table_4 ... table_10 spread across the 10 servers. Each table is identical in their structure, their just shards with different data sets. </p> <p>Is there a alternative to MySQL Proxy, where I can have my client application connect to a single SQL Server (A proxy), which looks at the query and fetches the data on behalf of it. </p> <p>For example, if the client requests "SELECT * FROM table_5 WHERE user=123" from the Proxy, which connects to the 5th SQL Server that houses table_5 and gets the data? </p> http://stackoverflow.com/questions/788829/how-to-create-unique-row-id-in-sharded-databases 2 How to create unique row ID in sharded databases? Continuation 2009-04-25T12:37:40Z 2009-04-25T12:48:01Z <p>In a non-sharded DB, I could just use auto-increment to generate a unique ID to reference a specific row.</p> <p>I want to shard my DB, say into 12 shards. Now when I insert into a specific shard, the auto-increment ID is no longer unique.</p> <p>Would like to hear anyone's experience in dealing with this problem. </p> http://stackoverflow.com/questions/292039/resources-for-database-sharding-and-partitioning 2 Resources for Database Sharding and Partitioning jordan002 2008-11-15T02:34:15Z 2009-04-05T23:52:39Z <p>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 to allow this schema to scale to much larger datasets (say, 1 billion to 100 billion rows). Our application must also be deployable onto several database products, including but not limited to Oracle, MS SQL Server, and MySQL.</p> <p>This is a large problem in general, and I'd like to read up on what options are available. What resources are out there (books, whitepapers, web sites) for database sharding and partitioning strategies?</p> http://stackoverflow.com/questions/294170/best-way-to-move-a-data-row-to-another-shard 1 Best way to move a data row to another shard? DR 2008-11-16T18:01:28Z 2009-02-28T23:49:32Z <p>The question says it all. </p> <p>Example: I'm planning to shard a database table. The table contains customer orders which are flagged as "active", "done" and "deleted". I also have three shards, one for each flag.</p> <p>As far as I understand a row has to be moved to the right shard, when the flag is changed. </p> <p>Am I right? What's the best way to do this? Can triggers be used?</p> <p>I thought about not moving the row immediately, but only at the end of the day/week/month, but then it is not determined, in which shard a rows with a specific flag resides and searches have to be done always over all shards.</p> <p>EDIT: Some clarification:</p> <p>In general I have to choose on a criterum to decide, in which shard a row resides. In this case I want it to be the flag described above, because it's the most natural way to shard this kind of data. (In my opinion) There is only a limited number of active orders which is accessed very often. There is a large number of finished orders, which are seldom accessed and there's a very huge number of data rows which are almost never accessed.</p> <p>If I want to now where a specific data row resides I dont have to search all shards. If the user wants to load an active order, I know already in which database I have to look.</p> <p>Now the flag, which is my sharding criterium, changes and I want to know the best way to deal with this case. If I'd just keep the record in its original database, eventually all data would accumulate in a single table.</p> http://stackoverflow.com/questions/540629/database-sharding-support-in-propel 1 Database Sharding Support in Propel Ngu Soon Hui 2009-02-12T09:38:23Z 2009-02-20T19:35:12Z <p>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.</p> <p>I figure out that it may be good to keep the architecture scalable right from the start, just in case my application takes off. </p> <p>What's your take?</p> http://stackoverflow.com/questions/494752/sharding-with-asp-nets-sqlmembershipprovider 1 Sharding with ASP.NET's SqlMembershipProvider? Bob 2009-01-30T07:08:20Z 2009-02-19T16:45:06Z <p>I'm considering writing a blog hosting app in ASP.NET MVC. I'm new to .NET, but I'm reasonably competent in the LAMP world. My question concerns horizontal scaling of user data.</p> <p>Each user with a blog would have something like 6 tables in a database. I'd like to plan for horizontal scaling so that 20% of the users could be on one database server, 20% on another, etc. In the LAMP world, I'd have one "dictionary" table which I'd first query to find out what database server a user was on. Then the app would only talk to that particular database server.</p> <p>I don't see how to easily shard the database used by SqlMembershipProvider. Any tips?</p> http://stackoverflow.com/questions/518847/mysql-simple-table-synchronization 0 MySQL Simple Table Synchronization? GateKiller 2009-02-06T02:10:42Z 2009-02-06T03:51:01Z <p>Ok, So I'm developing a website which to begin with will have 3 clear sub sites: Forum, News and a Calendar.</p> <p>Each sub site will have it's own database and common to all of these databases will be a user table which needs to be in each database so that joins can be done.</p> <p>How can I synchronize all the user tables so that it doesn't matter in which database I make an update, all the databases will have the same user table.</p> <p>I'm not worried if there is a short sync delay (less than 1min) and I would prefer that the solution was a simple as possible.</p> <p>Many Thanks</p> http://stackoverflow.com/questions/349773/web-scripting-language-with-parallel-non-blocking-database-access 1 Web scripting language with parallel non blocking database access? eshan 2008-12-08T14:54:32Z 2009-01-02T14:14:16Z <p>My webapp will need to use multiple database shards, and occasionally need to query these shards in parallel. Are there any web scripting languages that have mature, stable support for parallel non blocking database access? If so, can you point me in the right direction? Free open source is preferred, but I mostly want something that will work. </p> <p>Threads are fine with me, but I don't require real multi-threading support. All I want is for five 10-second database queries to five different database servers to take 10 seconds and not 50. It doesn't matter to me how many CPUs it actually used.</p> http://stackoverflow.com/questions/260403/searching-across-shards 4 Searching across shards? Eshan 2008-11-04T00:06:34Z 2008-11-06T21:36:04Z <p><strong>Short version</strong></p> <p>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.</p> <p><strong>Long version</strong></p> <p>By shard, I mean have multiple databases where each contains a fraction of the total data. For (a naive) example, the databases UserA, UserB, etc. might contain users whose names begin with "A", "B", etc. When a new user signs up, I simple examine his name and put him into the correct database. When a returning user signs in, I again look at his name to determine the correct database to pull his information from.</p> <p>The advantage of sharding vs read replication is that read replication does not scale your writes. All the writes that go to the master have to go to each slave. In a sense, they all carry the same write load, even though the read load is distributed.</p> <p>Meanwhile, shards do not care about each other's writes. If Brian signs up on the UserB shard, the UserA shard does not need to hear about it. If Brian sends a message to Alex, I can record that fact on both the UserA and UserB shards. In this way, when either Alex or Brian logs in, he can retrieve all his sent and received messages from his own shard without querying all shards.</p> <p>So far, so good. What about searches? In this example, if Brian searches for "Alex" I can check UserA. But what if he searches for Alex by his last name, "Smith"? There are Smiths in every shard. From here, I see two options:</p> <ol> <li>Have the application search for Smiths on each shard. This can be done slowly (querying each shard in succession) or quickly (querying each shard in parallel), but either way, every shard needs to be involved in every search. In the same way that read replication does not scale writes, having searches hit every shard does not scale your searches. You may reach a time when your search volume is high enough to overwhelm each shard, and adding shards does not help you, since they all get the same volume.</li> <li>Some kind of indexing that itself is tolerant of sharding. For example, let's say I have a constant number of fields by which I want to search: first name and last name. In addition to UserA, UserB, etc. I also have IndexA, IndexB, etc. When a new user registers, I attach him to each index I want him to be found on. So I put Alex Smith into both IndexA and IndexS, and he can be found on either "Alex" or "Smith", but no substrings. In this way, you don't need to query each shard, so search might be scalable.</li> </ol> <p>So can search be scaled? If so, is this indexing approach the right one? Is there any other?</p> http://stackoverflow.com/questions/45879/mysql-partitioning-sharding-splitting-which-way-to-go 4 MySQL Partitioning / Sharding / Splitting - which way to go? sme 2008-09-05T13:59:07Z 2008-09-25T13:58:56Z <p>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 working quite well as we have a server with 64 GB of RAM, so almost the whole database fits into memory, but we’re concerned about the future when the amount of data will be considerably larger. Right now we’re considering some way of splitting up the tables (especially the one that accounts for the biggest part of the data) and I’m now wondering, what would be the best way to do it.</p> <p>The options I’m currently aware of are</p> <ul> <li>Using MySQL Partitioning that comes with version 5.1 </li> <li>Using some kind of third party library that encapsulates the partitioning of the data (like hibernate shards)</li> <li>Implementing it ourselves inside our application</li> </ul> <p>Our application is built on J2EE and EJB 2.1 (hopefully we’re switching to EJB 3 some day).</p> <p>What would you suggest?</p> http://stackoverflow.com/questions/44145/database-sharding-and-rails 6 Database sharding and Rails Teflon Ted 2008-09-04T16:40:10Z 2008-09-23T14:28:58Z <p>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 else altogether? What are the pros and cons of each?</p>