In this assignment, you will make your data loading into postgres significantly faster using batch loading and parallel loading. Notice that many of the test cases above are already passing; you will have to ensure that they remain passing as you complete the tasks below.
- Fork this repo
- Enable github action on your fork
- Clone the fork onto the lambda server
- Modify the
README.mdfile so that all the test case images point to your repo - Modify the
docker-compose.ymlto specify valid ports for each of the postgres services- recall that ports must be >1024 and not in use by any other user on the system
- verify that you have modified the file correctly by running
with no errors
$ docker-compose up
Bring up a fresh version of your containers by running the commands:
$ docker-compose down
$ docker volume prune
$ docker-compose up -d --build
Run the following command to insert data into each of the containers sequentially.
(Note that you will have to modify the ports to match the ports of your docker-compose.yml file.)
$ sh load_tweets_sequential.sh
Record the elapsed time in the table in the Submission section below. You should notice that batching significantly improves insertion performance speed.
NOTE: The
timecommand outputs 3 times:
The
elapsedtime (also called wall-clock time) is the actual amount of time that passes on the system clock between the program's start and end. This is what should be recorded in the table above.The
usertime is the total amount of CPU time used by the program. This can be different than wall-clock time for 2 reasons:
If the process uses multiple CPUs, then all of the concurrent CPU time is added together. For example, if a process uses 8 CPUS, then the
usertime could be up to 8 times higher than the actual wall-clock time. (Your sequential process in this section is single threaded, so this won't be applicable; but this will be applicable for the parallel process in the next section.)If the command has to wait on an external resource (e.g. disk/network IO), then this waiting time is not included. (Your python processes will have to wait on the postgres server, and the postgres server's processing time is not included in the
usertime because it is a different process. In general, the postgres server could be running on an entirely different machine.)The
systemtime is the total amount of CPU time used by the Linux kernel when managing this process. For the vast majority of applications, this will be a very small amount.
There are 10 files in /data folder of this repo.
If we process each file in parallel, then we should get a theoretical 10x speed up.
The file load_tweets_parallel.sh will insert the data in parallel and get nearly a 10-fold speedup,
but there are several changes that you'll have to make first to get this to work.
Currently, there is no code in the load_tweets_parallel.sh file for loading the denormalized data.
Your first task is to use the GNU parallel program to load this data.
Complete the following steps:
-
Write a POSIX script
load_denormalized.shthat takes a single parameter as input that represents a data file. The script should then load this file into the database using the same technique as in theload_tweets_sequential.shfile for the denormalized database. In particular, you know you've implemented this file correctly if the following bash code correctly loads the database.for file in $(find data); do sh load_denormalized.sh $file done -
Call the
load_denormalized.shfile using theparallelprogram from within theload_tweets_parallel.shscript. You know you've completed this step correctly if thecheck-answers.shscript passes and the test badge turns green.
Parallel loading of the unbatched data should "just work."
The code in the load_tweets.py file is structured so that you never run into deadlocks.
Unfortunately, the code is extremely slow,
so even when run in parallel it is still slower than the batched code.
NOTE: The
tests_normalized_batch_parallelis currently failing because theload_tweets_parallel.shscript is not yet implemented. After you use GNU parallel to implement this script, everything should pass.
Parallel loading of the batched data will fail due to deadlocks.
These deadlocks will cause some of your parallel loading processes to crash.
So all the data will not get inserted,
and you will fail the check-answers.sh tests.
There are two possible ways to fix this. The most naive method is to catch the exceptions generated by the deadlocks in python and repeat the failed queries. This will cause all of the data to be correctly inserted, so you will pass the test cases. Unfortunately, python will have to repeat queries so many times that the parallel code will be significantly slower than the sequential code. My code took several hours to complete!
So the best way to fix this problem is to prevent the deadlocks in the first place.
In this case, the deadlocks are caused by the UNIQUE constraints,
and so we need to figure out how to remove those constraints.
This is unfortunately rather complicated.
The most difficult UNIQUE constraint to remove is the UNIQUE constraint on the url field of the urls table.
The get_id_urls function relies on this constraint, and there is no way to implement this function without the UNIQUE constraint.
So to delete this constraint, we will have to denormalize the representation of urls in our database.
Perform the following steps to do so:
-
Modify the
services/pg_normalized_batch/schema.sqlfile by:- deleting the
urlstable - replacing all of the
id_urls BIGINTcolumns with aurl TEXTcolumn - deleting all foreign keys that connected the old
id_urlscolumns to theurlstable
- deleting the
-
Modify the
load_tweets_batch.pyfile by:- deleting the
get_id_urlsfunction - modifying all of the references to the id generated by
get_id_urlsto directly store the url in theurlfield of the table
- deleting the
There are also several other UNIQUE constraints (mostly in PRIMARY KEYs) that need to be removed from other columns of the table.
Once you remove these constraints, this will cause downstream errors in both the SQL and Python that you will have to fix.
(But I'm not going to tell you what these errors look like in advance... you'll have to encounter them on your own.)
NOTE: In a production database where you are responsible for the consistency of your data, you would never want to remove these constraints. In our case, however, we're not responsible for the consistency of the data. We want to represent the data exactly how Twitter represents it "upstream", and so Twitter are responsible for ensuring the consistency.
Once you have verified the correctness of your parallel code, bring up a fresh instances of your containers and measure your code's runtime with the command
$ sh load_tweets_parallel.sh
Record the elapsed times in the table below. You should notice that parallelism achieves a nearly (but not quite) 10x speedup in each case.
Ensure that your runtimes on the lambda server are recorded below.
| elapsed time (sequential) | elapsed time (parallel) | |
|---|---|---|
pg_normalized |
8:90.20 | 0:59.70 |
pg_normalized_batch |
2:40.32 | 0:14.71 |
pg_denormalized |
0:18.08 | 0:09.37 |
Then upload a link to your forked github repo on sakai.
GRADING NOTE: It is not enough to just get passing test cases for this assignment in order to get full credit. (It is easy to pass the test cases by just doing everything sequentially.) Instead, you must also implement the parallelism correctly so that the parallel runtimes above are about 10x faster than the sequential runtimes.
