You will scan all geotagged tweets sent in 2020 to monitor for the spread of the coronavirus on social media.
Learning Objectives:
- work with large scale datasets
- work with multilingual text
- use the MapReduce divide-and-conquer paradigm to create parallel code
About the Data:
Approximately 500 million tweets are sent everyday.
Of those tweets, about 2% are geotagged.
That is, the user's device includes location information about where the tweets were sent from.
The lambda server's /data/Twitter dataset
folder contains all geotagged tweets that were sent in 2020.
In total, there are about 1.1 billion tweets in this dataset.
The tweets are stored as follows.
The tweets for each day are stored in a zip file geoTwitterYY-MM-DD.zip
,
and inside this zip file are 24 text files, one for each hour of the day.
Each text file contains a single tweet per line in JSON format.
JSON is a popular format for storing data that is closely related to python dictionaries.
Vim is able to open compressed zip files, and I encourage you to use vim to explore the dataset. For example, run the command
$ vim /data/Twitter\ dataset/geoTwitter20-01-01.zip
Or you can get a "pretty printed" interface with a command like
$ unzip -p /data/Twitter\ dataset/geoTwitter20-01-01.zip | head -n1 | python3 -m json.tool | vim -
About MapReduce:
You will follow the MapReduce procedure to analyze these tweets. MapReduce is a famous procedure for large scale parallel processing that is widely used in industry. It is a 3 step procedure summarized in the following image:
I have already done the partition step for you (by splitting up the tweets into one file per day). You will have to do the map and reduce steps.
MapReduce Runtime:
Let
- doubling the amount of data will cause the analysis to take twice as long;
- doubling the number of processors will cause the analysis to take half as long;
- if you want to add more data and keep the processing time the same, then you need to add a proportional number of processors.
More complex runtimes are possible.
Merge sort over MapReduce is the classic example.
Here, mapping is equivalent to sorting and so takes time _merge
function that takes time
It is currently not known which algorithms can be parallelized with MapReduce and which algorithms cannot be parallelized this way. Most computer scientists believe there are some algorithms which cannot be parallelized, but we don't yet have a proof that this is the case.
Complete the following tasks to familiarize yourself with the sample code:
Task 0: Setup
Fork this repo and clone it onto the lambda server.
Task 1: Map
The map.py
file processes the zip file for an individual day.
From the root directory of your clone, run the command
$ ./src/map.py --input_path=/data/Twitter\ dataset/geoTwitter20-02-16.zip
This command will take a few minutes to run as it is processing all of the tweets within the zip file.
After the command finishes, you will now have a folder outputs
that contains a file /geoTwitter20-02-16.zip.lang
.
This is a file that contains JSON formatted information summarizing the tweets from 16 February.
NOTE: In previous labs, we combined the
unzip
,grep
, andjq
commands to analyze a single day of tweets. These terminal commands are great for doing simple analysis, but as the analysis becomes more complicated, it becomes easier to switch to python instead of the shell.
Task 1b: Visualize
The visualize.py
file displays the output from running the map.py
file.
Run the command
$ ./src/visualize.py --input_path=outputs/geoTwitter20-02-16.zip.lang --key='#coronavirus'
This displays the total number of times the hashtag #coronavirus
was used on 16 February in each of the languages supported by twitter.
Now manually inspect the output of the .lang
file using vim:
$ vim outputs/geoTwitter20-02-16.zip.lang
You should see that the file contains a dictionary of dictionaries.
The outermost dictionary has hashtags as the keys,
and the innermost dictionary has languages as the keys.
The visualize.py
file simply provides a nicer visualization of these dictionaries.
Task 2: Reduce
The reduce.py
file merges the outputs generated by the map.py
file so that the combined files can be visualized.
Generate a new output file for a different day of data by running the command
$ ./src/map.py --input_path=/data/Twitter\ dataset/geoTwitter20-02-17.zip
We now have multiple days worth of data.
In order to visualize this data, we need to merge it into a single file.
That is the purpose of the reduce.py
command.
Merge the data files by running:
$ ./src/reduce.py --input_paths outputs/geoTwitter20-02-16.zip.lang outputs/geoTwitter20-02-17.zip.lang --output_path=reduced.lang
Alternatively, you can use the glob to merge all output files with the command
$ ./src/reduce.py --input_paths outputs/geoTwitter*.lang --output_path=reduced.lang
Task 2b: Visualize
The format of the data files that reduce.py
outputs is the same format as the data files that map.py
outputs.
Therefore, we can use the same visualization code on both of them.
Now you can visualize the reduced.lang
file with the command
$ ./src/visualize.py --input_path=reduced.lang --key='#coronavirus'
and this displays the combined result.
Complete the following tasks:
Task 0: Create the mapper
Modify the map.py
file so that it tracks the usage of the hashtags on both a language and country level.
This will require creating a variable counter_country
similar to the variable counter_lang
,
and modifying this variable in the #search hashtags
section of the code appropriately.
The output of running map.py
should be two files now, one that ends in .lang
for the language dictionary (same as before),
and one that ends in .country
for the country dictionary.
HINT: Most tweets contain a
place
key, which contains a dictionary with thecountry_code
key. This is how you should lookup the country that a tweet was sent from. Some tweets, however, do not have acountry_code
key. This can happen, for example, if the tweet was sent from international waters or the international space station. Your code will have to be generic enough to handle edge cases similar to this without failing.
Task 1: Run the mapper
HINT: You should thoroughly test your
map.py
file on a single day's worth of tweets and verify that you are getting reasonable results before moving on to this step.
Create a shell script called run_maps.sh
.
This file will loop over each file in the dataset and run the map.py
command on that file.
Each call to map.py
can take up to a day to finish, so you should use the nohup
command to ensure the program continues to run after you disconnect and the &
operator to ensure that all map.py
commands run in parallel.
HINT: Use the glob
*
to select only the tweets from 2020 and not all tweets.
Task 2: Reduce
HINT: You should manually inspect the output of your mapper code to ensure that it is reasonable and that you did not run into any error messages. If you have errors above that you don't deal with, then everything else below will be incorrect.
After your modified map.py
has run on all the files,
you should have a large number of files in your outputs
folder.
Use the reduce.py
file to combine all of the .lang
files into a single file,
and all of the .country
files into a different file.
Task 3: Visualize
Recall that you can visualize your output files with the command
$ ./src/visualize.py --input_path=PATH --key=HASHTAG
Currently, this prints the top keys to stdout.
Modify the visualize.py
file so that it generates a bar graph of the results and stores the bar graph as a png file.
The horizontal axis of the graph should be the keys of the input file,
and the vertical axis of the graph should be the values of the input file.
The final results should be sorted from low to high, and you only need to include the top 10 keys.
HINT: We are not covering how to create images from python code in this class. I recommend you use the matplotlib library, and you can find some samples to base your code off of in the documentation here.
Then, run the visualize.py
file with the --input_path
equal to both the country and lang files created in the reduce phase, and the --key
set to #coronavirus
and #코로나바이러스
.
This should generate four plots in total.
Task 4: Alternative Reduce
Create a new file alternative_reduce.py
.
This file should take as input on the command line a list of hashtags,
and output a line plot where:
- There is one line per input hashtag.
- The x-axis is the day of the year.
- The y-axis is the number of tweets that use that hashtag during the year.
Your alternative_reduce.py
file have to follow a similar structure to a combined version of the reduce.py
and visualize.py
files.
First, you will scan through all of the data in the outputs
folder created by the mapping step.
In this scan, you will construct a dataset that contains the information that you need to plot.
Then, after you have extracted this information,
you should call the appropriate matplotlib functions to plot the data.
HINT: The specifications for this program and plot are intentionally underspecified (similar to how many real-world problems are underspecified). Feel free to ask clarifying questions.
Task 5: Uploading
Commit all of your code and images output files to your github repo and push the results to github. You must:
- Delete the current contents of the
README.md
file - Insert into the
README.md
file a brief explanation of your project, including the 4 generated png files. This explanation should be suitable for a future employer to look at while they are interviewing you to get a rough idea of what you accomplished. (And you should tell them about this in your interviews!)
Upload a link to you github repository on sakai. I will look at your code and visualization to determine your grade.
Grading:
The assignment is worth 32 points:
- 8 points for getting the map/reduce to work
- 8 points for your repo/readme file
- 8 points for Task 3 plots
- 8 points for Task 4 plots
The most common ways to miss points are:
- having incorrect data plotted (because the map program didn't finish running on all of the inputs)
- having illegible plots that are not "reasonably" formatted
Notice that we are not using CI to grade this assignment. There's two reasons:
-
You can get slightly different numbers depending on some of the design choices you make in your code. For example, should the term
corona
count tweets that containcoronavirus
as well as tweets that contain justcorona
? These are relatively insignificant decisions. I'm more concerned with your ability to write a shell script and usenohup
,&
, and other process control tools effectively. -
The dataset is too large to upload to github actions. In general, writing test cases for large data analysis tasks is tricky and rarely done. Writing correct code without test cases is hard, and so many (most?) analysis of large datasets contain lots of bugs.