Databases contain the long-term memory of your app server. They can be tricky, but don't have to be scary! Out-of-the-box, Django gets you started with a SQLite database, which works great for local development and small web apps in production. However, when it's time to scale up your app, you may find yourself wondering whether it's time to move to something more sophisticated, such as AWS RDS.
How do you know when it's time to move to RDS? Well, for one thing, if your website is receiving more than 5-10 simultaneous visitors, your single EC2 machine may struggle to handle all the traffic. In that case, you should consider enabling EC2 auto-scaling, which allows AWS to automatically spin up and down additional EC2 instances to keep up with demand. But in order to enable EC2 auto-scaling, you'll need to have a centralized database for all the EC2 instances to talk to. When this happens, it's time to move to RDS.
The purpose of this blog post is to guide you through a migration from your SQLite database to a PostgreSQL database hosted in AWS RDS. If that sounds like what you need, read on!
Part 1: Launching an RDS Instance
- Navigate to https://us-west-1.console.aws.amazon.com/rds/.
- Scroll down to "Create database" and click "Create database."
-
Select:
- Engine options:
PostgreSQL
- Master username:
postgres
- Templates:
Free tier
- DB instance identifier:
my-database-name
- Master username:
postgres
- Master password:
some_secure_password
- Connectivity:
Don't connect to an EC2 compute resource
- Public access:
Yes
- Database authentication:
Password authentication
- Additional configuration: Initial database name:
tutorial_db
- Engine options:
- Select 'Create database.'
-
Once created, copy the endpoint hostname (ends in
.us-west-1.rds.amazonaws.com
) and port number from the console and store them as environment variables in your terminal:
Next, we need to edit the security rules for this database to allow incoming connections from our EC2 machine.
- From the RDS console, select the security group corresponding to your RDS instance.
- Select 'Edit inbound rules'.
- Add a rule that allows connections of type
PostgreSQL
from the security group of your EC2 instance. - Add another rule that allows connections of type
SS
from the security group of your EC2 instance. - Select 'Save'
Part 2: Connecting the RDS Instance to EC2
Ideally, we want to continue testing our app locally using
SQLite while allowing the production EC2 server to communicate
with RDS. We can enable this in our settings.py
file by replacing the default values for DATABASES
with:
This code reads values from our environment variables and uses them to connect to our RDS machine during production. Next, run:
We can test the connection is working by using:
If everything worked, we should get a PostgreSQL prompt allowing us to query the newly created SQL database. But hang on, there's no tables yet!
Part 3: Loading Tables and Data into RDS
Now that everything's connected, the final step is initializing our database with the tables it needs to get started. If we want to start fresh with an empty database, simply run:
Otherwise, if we want to bring data over from our old SQLite database, run these commands:
-
For this step, temporarily point the terminal to the old SQLite database (e.g. by fudging the
if
statement we made insettings.py
). Then, run: - Now, point the server back to the new RDS machine. Then, run:
- We also need to manually delete some default data in our newly created RDS instance. Run:
-
Finally, we can load the data from our
data.json
file into our new database. From the terminal, run:
To confirm our data has made it into the database, we can run:
If all is well, we should get a list of all our tables. Feel free to query them using SQL statements to confirm all your data is there, such as: select * from django_migrations;
If everything looks good, you're done with your database migration! Congratulations, and happy coding.