We shard our databases and keep the metadata information as to what shard is located in what database host in a table. We recently had a database spike where due to thundering herd problem, lots of our clients would come and execute a very costly query concurrently. The only solution is to avoid making this query and change the application architecture but the problem would take 1-2 months to solve. We didn't had the luxury to wait that long. So we were looking for solutions to buy time.
Luckily to buy time we can throw more hardware, we had recently ordered a pair of mysql servers for some other purpose so we repurposed it. Because we had desgined our application to have a layer of indirection on how to look what customer is located on what shard and what shard is located on what database host. We were able to quickly spin off 2 slaves and connect them to the db host having load isues. As soon as replication was done we cut off the db access and wait for replication to be 100% done.
The source database had 8 schemas and 64 shards so we dropped 4 schemas from source and 4 from target and the final picture was 32 shards on one host and 32 on the other. Then all we need to do is change the mappings of shard to host info and restart servers and we were done.
There is still a room to do this without downtime, thats my next goal but still we were able to within 2-3 hours do this in night and the load avg on next day was under control.
Luckily to buy time we can throw more hardware, we had recently ordered a pair of mysql servers for some other purpose so we repurposed it. Because we had desgined our application to have a layer of indirection on how to look what customer is located on what shard and what shard is located on what database host. We were able to quickly spin off 2 slaves and connect them to the db host having load isues. As soon as replication was done we cut off the db access and wait for replication to be 100% done.
The source database had 8 schemas and 64 shards so we dropped 4 schemas from source and 4 from target and the final picture was 32 shards on one host and 32 on the other. Then all we need to do is change the mappings of shard to host info and restart servers and we were done.
There is still a room to do this without downtime, thats my next goal but still we were able to within 2-3 hours do this in night and the load avg on next day was under control.
Comments
Post a Comment