Introduction
Having written an application to work with an unsharded MySQL
setup, how do we migrate the application to a sharded setup
?
The above problem can be divided into two parts
- Migrating the MySQL Store (with minimum disruption to ongoing transactions)
- Migrating the Application.
This blog deals with the first problem of migrating the MySQL
Store. The second problem of migrating the application will be
handled in a separate blog post, and we shall assume for now that
we just replace the old unsharded non-Fabric aware application
with the new Fabric aware application.
Most enterprises start with a single server setup to
develop a prototype and later realize that they need to scale.
This …