forked from lintool/bigdata-2017w
-
Notifications
You must be signed in to change notification settings - Fork 0
/
syllabus.html
376 lines (266 loc) · 12.7 KB
/
syllabus.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<meta name="description" content="Course homepage for CS 489 Big Data Infrastructure (Winter 2017) at the University of Waterloo">
<meta name="author" content="Jimmy Lin">
<title>Big Data Infrastructure</title>
<!-- Bootstrap -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<!-- IE10 viewport hack for Surface/desktop Windows 8 bug -->
<link href="css/ie10-viewport-bug-workaround.css" rel="stylesheet">
<style>
body {
padding-top: 60px; /* 60px to make the container go all the way to the bottom of the topbar */
}
</style>
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<nav class="navbar navbar-inverse navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="index.html">Overview</a></li>
<li><a href="organization.html">Organization</a></li>
<li class="active"><a href="syllabus.html">Syllabus</a></li>
<li><a href="assignments.html">Assignments</a></li>
<li><a href="software.html">Software</a></li>
</ul>
</div><!--/.nav-collapse -->
</div>
</nav>
<div class="container">
<div class="page-header">
<div style="float: right"/><img src="images/waterloo_logo.png"/></div>
<h1>Syllabus <small>CS 489/698 Big Data Infrastructure (Winter 2017)</small></h1>
</div>
<section id="schedule">
<div>
<h3>Schedule of Classes</h3>
<table class="table table-striped table-condensed">
<thead>
<tr><td><b>Week</b></td>
<td><b>Date</b></td>
<td><b>Topic</b></td>
<td><b>Assignment Due</b></td></tr>
</thead>
<tbody>
<tr><td>1</td><td>Jan 3/Jan 5</td><td><a href="#week1">Introduction</a></td><td></td></tr>
<tr><td>2</td><td>Jan 10/Jan 12</td><td><a href="#week2">MapReduce Algorithm Design</a></td><td><a href="assignment0.html">Assignment #0: Warmup</a> (Jan 12)</td></tr>
<tr><td>3</td><td>Jan 17/Jan 19</td><td><a href="#week3">From MapReduce to Spark</a></td><td><a href="assignment1.html">Assignment #1: Counting in MapReduce</a> (Jan 19)</td></tr>
<tr><td>4</td><td>Jan 24/Jan 26</td><td><a href="#week4">Analyzing Text</a></td><td><a href="assignment2.html">Assignment #2: Counting in Spark</a> (Jan 26)</td></tr>
<tr><td>5</td><td>Jan 31/Feb 2</td><td><a href="#week5">Analyzing Graphs</a></td><td><a href="assignment3.html">Assignment #3: Inverted Indexing</a> (Feb 2)</td></tr>
<tr><td>6</td><td>Feb 7/Feb 9</td><td><a href="#week6">Analyzing Relational Data I</a></td><td><a href="assignment4.html">Assignment #4: Multi-Source Personalized PageRank</a> (Feb 9)</td></tr>
<tr><td>7</td><td>Feb 14/Feb 16</td><td><a href="#week7">Analyzing Relational Data II</a></td><td></td></tr>
<tr><td colspan="4">No classes!</td></tr>
<tr><td>8</td><td>Feb 28/Mar 2</td><td><a href="#week8">Data Mining I</a></td><td>Assignment #5: Data Warehousing</td></tr>
<tr><td>9</td><td>Mar 7/Mar 9</td><td><a href="#week9">Data Mining II</a></td><td></td></tr>
<tr><td>10</td><td>Mar 14/Mar 16</td><td><a href="#week10">Mutable State</a></td><td>Assignment #6: TBA</td></tr>
<tr><td>11</td><td>Mar 21/Mar 23</td><td><a href="#week11">Analyzing Graphs, Redux</a></td><td></tr>
<tr><td>12</td><td>Mar 28/Mar 30</td><td><a href="#week12">Real-Time Data Analytics</a></td><td>Assignment #7: TBA</td></tr>
</tbody>
</table>
</div>
</section>
<!-- ---------------------------------------------------------------------------------------------------- -->
<section id="week1" style="padding-top:35px"><div>
<h3>Week 1: Introduction <small>January 5/7</small></h3>
<h4>Topics</h4>
<ul>
<li>What's this course about?</li>
<li>Why big data?</li>
<li>The datacenter is the computer and other "big ideas"</li>
<li>The MapReduce programming model</li>
</ul>
<p style="padding-top: 5px"/>
<h4>Readings</h4>
<ul>
<li><a href="http://lintool.github.com/MapReduceAlgorithms/ed1n/MapReduce-algorithms.pdf">Data-Intensive Text Processing with MapReduce</a>
<ul>
<li>Chapter 1: Introduction</li>
<li>Chapter 2: MapReduce Basics</li>
</ul>
</li>
<li><i>(Optional, but recommended)</i> Hadoop: The Definitive Guide (4th Edition):
<ul>
<li>Chapter 1: Meet Hadoop</li>
<li>Chapter 2: MapReduce</li>
<li>Chapter 3: The Hadoop Distributed Filesystem (Focus on the mechanics of the HDFS commands and don't worry so much about learning the Java API all at once—you'll pick it up in time.)</li>
</ul>
</ul>
<p style="padding-top: 5px"/>
<h4>Slides</h4>
<p>
<a href="slides/week01a.pptx" class="btn btn-sm btn-primary" role="button">PPTX (Mac)</a>
<a href="slides/week01a.pdf" class="btn btn-sm btn-info" role="button">PDF</a></b> <b>Part 1: January 3</b>
</p>
<p>
<a href="slides/week01b.pptx" class="btn btn-sm btn-primary" role="button">PPTX (Mac)</a>
<a href="slides/week01b.pdf" class="btn btn-sm btn-info" role="button">PDF</a> <b>Part 2: January 5</b>
</p>
<p style="padding-top: 20px"><a href="#">Back to top</a></p>
</div></section>
<!-- ---------------------------------------------------------------------------------------------------- -->
<section id="week2" style="padding-top:35px"><div>
<h3>Week 2: MapReduce Algorithm Design <small>January 12/14</small></h3>
<h4>Topics</h4>
<ul>
<li>MapReduce physical execution</li>
<li>MapReduce design patterns</li>
<li>Intermediate aggregation and combiners</li>
<li>Partitioning, grouping, sorting, and monoids</li>
</ul>
<p style="padding-top: 5px"/>
<h4>Readings</h4>
<ul>
<li><a href="http://lintool.github.com/MapReduceAlgorithms/ed1n/MapReduce-algorithms.pdf">Data-Intensive Text Processing with MapReduce</a>
<ul>
<li>Chapter 3: MapReduce Algorithm Design</li>
</ul>
</li>
<li><i>(Optional, but recommended)</i> Hadoop: The Definitive Guide (4th Edition):
<ul>
<li>Chapter 5: Hadoop I/O (Read sections "Serialization" and "File-Based Data Structures")</li>
<li>Chapter 6: Developing a MapReduce Application (Skip sections "Setting Up the Development Environment", "Writing a Unit Test with MRUnit" and "MapReduce Workflows")</li>
<li>Chapter 7: How MapReduce Works (Skip section on "Configuration Tuning")</li>
<li>Chapter 8: MapReduce Types and Formats</li>
<li>Chapter 9: MapReduce Features (Read sections on "Counters", "Sorting", and "Side Data distribution")</li>
</ul>
</ul>
<p style="padding-top: 5px"/>
<h4>Slides</h4>
<p>
<a href="slides/week02a.pptx" class="btn btn-sm btn-primary" role="button">PPTX (Mac)</a>
<a href="slides/week02a.pdf" class="btn btn-sm btn-info" role="button">PDF</a></b> <b>Part 1: January 10</b>
</p>
<!--
<p>
<a href="slides/week02b.pptx" class="btn btn-sm btn-primary" role="button">PPTX (Mac)</a>
<a href="slides/week02b.pdf" class="btn btn-sm btn-info" role="button">PDF</a> <b>Part 2: January 14</b>
</p-->
<p style="padding-top: 20px"><a href="#">Back to top</a></p>
</div></section>
<!-- ---------------------------------------------------------------------------------------------------- -->
<section id="week3" style="padding-top:35px"><div>
<h3>Week 3: From MapReduce to Spark <small>January 19/21</small></h3>
<h4>Topics</h4>
<ul>
<li>Evolution of dataflow abstractions</li>
<li>MapReduce, Pig, Dryad, Spark, Flink, etc.</li>
</ul>
<p style="padding-top: 20px"><a href="#">Back to top</a></p>
</div></section>
<!-- ---------------------------------------------------------------------------------------------------- -->
<section id="week4" style="padding-top:35px"><div>
<h3>Week 4: Analyzing Text <small>January 26/28</small></h3>
<h4>Topics</h4>
<ul>
<li>Language models and machine translation</li>
<li>Inverted indexing and search</li>
</ul>
<p style="padding-top: 20px"><a href="#">Back to top</a></p>
</div></section>
<!-- ---------------------------------------------------------------------------------------------------- -->
<section id="week5" style="padding-top:35px"><div>
<h3>Week 5: Analyzing Graphs <small>February 2/4</small></h3>
<h4>Topics</h4>
<ul>
<li>Graph representations</li>
<li>Parallel breadth-first search</li>
<li>PageRank and random walks</li>
<li>Issues and challenges with dataflow abstractions</li>
</ul>
<p style="padding-top: 20px"><a href="#">Back to top</a></p>
</div></section>
<!-- ---------------------------------------------------------------------------------------------------- -->
<section id="week6" style="padding-top:35px"><div>
<h3>Week 6: Analyzing Relational Data I <small>February 9/11</small></h3>
<h4>Topics</h4>
<ul>
<li>OLTP vs. OLAP</li>
<li>Data warehousing, ETL, data cubes</li>
</ul>
<p style="padding-top: 20px"><a href="#">Back to top</a></p>
</div></section>
<!-- ---------------------------------------------------------------------------------------------------- -->
<section id="week7" style="padding-top:35px"><div>
<h3>Week 7: Analyzing Relational Data II <small>February 23/25</small></h3>
<h4>Topics</h4>
<ul>
<li>SQL-on-Hadoop</li>
<li>Relational data processing with MapReduce and Spark</li>
<li>Row vs. column stores</li>
<li>Semistructured data and record reconstruction (Parquet)</li>
<li>Optimizations for relational processing</li>
</ul>
<p style="padding-top: 20px"><a href="#">Back to top</a></p>
</div></section>
<!-- ---------------------------------------------------------------------------------------------------- -->
<section id="week8" style="padding-top:35px"><div>
<h3>Week 8: Data Mining I <small>March 1/3</small></h3>
<h4>Topics</h4>
<ul>
<li>Supervised machine learning: binary classification</li>
<li>Logistic regression, gradient descent, stochastic gradient descent, ensemble methods</li>
<li>Production machine learning pipelines</li>
</ul>
<p style="padding-top: 20px"><a href="#">Back to top</a></p>
</div></section>
<!-- ---------------------------------------------------------------------------------------------------- -->
<section id="week9" style="padding-top:35px"><div>
<h3>Week 9: Data Mining II <small>March 8/10</small></h3>
<h4>Topics</h4>
<ul>
<li>Hashing: minhash, random projections, etc.</li>
<li>Clustering: <i>k</i>-means, Gaussian mixture models</li>
</ul>
<p style="padding-top: 20px"><a href="#">Back to top</a></p>
</div></section>
<!-- ---------------------------------------------------------------------------------------------------- -->
<section id="week11" style="padding-top:35px"><div>
<h3>Week 11: Analyzing Graphs, Redux <small>March 22/24</small></h3>
<h4>Topics</h4>
<ul>
<li>Bulk synchronous parallel: "think like a vertex" (Giraph)</li>
<li>Alternative approaches: GraphX</li>
</ul>
<p style="padding-top: 20px"><a href="#">Back to top</a></p>
</div></section>
<!-- ---------------------------------------------------------------------------------------------------- -->
<section id="week12" style="padding-top:35px"><div>
<h3>Week 12: Real-Time Data Analytics <small>March 29/31</small></h3>
<h4>Topics</h4>
<ul>
<li>Stream processing issues and models</li>
<li>Probabilistic data structures (hyerloglog counters, bloom filters, count-min sketches, etc.)</li>
<li>Integrating batch and stream processing</li>
</ul>
<p style="padding-top: 20px"><a href="#">Back to top</a></p>
</div></section>
<p style="padding-top:100px" />
</div><!-- /.container -->
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<!-- Include all compiled plugins (below), or include individual files as needed -->
<script src="js/bootstrap.min.js"></script>
<!-- IE10 viewport hack for Surface/desktop Windows 8 bug -->
<script src="js/ie10-viewport-bug-workaround.js"></script>
</body>
</html>