-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathsyllabus.html
617 lines (421 loc) · 20.1 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
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
<!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</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><a href="assignment5.html">Assignment #5: Data Warehousing</a></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><a href="assignment6.html">Assignment #6: Spam Classification</a></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><a href="assignment7.html">Assignment #7: Inverted Indexing (Redux)</a></td></tr>
</tbody>
</table>
</div>
</section>
<!-- ---------------------------------------------------------------------------------------------------- -->
<section id="week1" style="padding-top:35px"><div>
<h3>Week 1: Introduction <small>January 3/5</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 10/12</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 12</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 17/19</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: 5px"/>
<h4>Readings</h4>
<ul>
<li><i>(Optional, but recommended)</i> Learning Spark:
<ul>
<li>Chapter 1: Introduction to Data Analysis with Spark</li>
<li>Chapter 2: Downloading Spark and Getting Started (Skip section on downloading)</li>
<li>Chapter 3: Programming with RDDs</li>
<li>Chapter 4: Working with Key/Value Pairs</li>
<li>Chapter 5: Loading and Saving Your Data (Stop when you get to Structured Data with Spark SQL)</li>
<li>In all the readings above, don't worry about Python and Java since we're only going to be working with Spark's Scala API.</li>
</ul>
</ul>
<p style="padding-top: 5px"/>
<h4>Slides</h4>
<p>
<a href="slides/week03a.pptx" class="btn btn-sm btn-primary" role="button">PPTX (Mac)</a>
<a href="slides/week03a.pdf" class="btn btn-sm btn-info" role="button">PDF</a></b> <b>Part 1: January 17</b>
</p>
<p>
<a href="slides/week03b.pptx" class="btn btn-sm btn-primary" role="button">PPTX (Mac)</a>
<a href="slides/week03b.pdf" class="btn btn-sm btn-info" role="button">PDF</a> <b>Part 2: January 19</b>
</p>
<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 24/26</small></h3>
<h4>Topics</h4>
<ul>
<li>Language models and machine translation</li>
<li>Inverted indexing and search</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 4: Inverted Indexing for Text Retrieval</li>
</ul>
</li>
</ul>
<p style="padding-top: 5px"/>
<h4>Slides</h4>
<p>
<a href="slides/week04a.pptx" class="btn btn-sm btn-primary" role="button">PPTX (Mac)</a>
<a href="slides/week04a.pdf" class="btn btn-sm btn-info" role="button">PDF</a></b> <b>Part 1: January 24</b>
</p>
<p>
<a href="slides/week04b.pptx" class="btn btn-sm btn-primary" role="button">PPTX (Mac)</a>
<a href="slides/week04b.pdf" class="btn btn-sm btn-info" role="button">PDF</a> <b>Part 2: January 26</b>
</p>
<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>January 31/February 2</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: 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 5: Graph Algorithms</li>
</ul>
</li>
</ul>
<p style="padding-top: 5px"/>
<h4>Slides</h4>
<p>
<a href="slides/week05a.pptx" class="btn btn-sm btn-primary" role="button">PPTX (Mac)</a>
<a href="slides/week05a.pdf" class="btn btn-sm btn-info" role="button">PDF</a></b> <b>Part 1: January 31</b>
</p>
<p>
<a href="slides/week05b.pptx" class="btn btn-sm btn-primary" role="button">PPTX (Mac)</a>
<a href="slides/week05b.pdf" class="btn btn-sm btn-info" role="button">PDF</a> <b>Part 2: February 2</b>
</p>
<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 7/9</small></h3>
<h4>Topics</h4>
<ul>
<li>OLTP vs. OLAP</li>
<li>Data warehousing and data lakes</li>
<li>ETL</li>
<li>SQL-on-Hadoop</li>
<li>Relational data processing with MapReduce and Spark</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 6: Processing Relational Data</li>
</ul>
</li>
<ii><a href="http://homes.cs.washington.edu/~billhowe/mapreduce_a_major_step_backwards.html">MapReduce: A major step backwards</a></li>
<li>Chaudhuri et al. (2011) <a href="http://dl.acm.org/citation.cfm?id=1978562">An overview of business intelligence technology</a>, <i>CACM</i>, 54(8):88-98.</li>
</ul>
<p style="padding-top: 5px"/>
<h4>Slides</h4>
<p>
<a href="slides/week06a.pptx" class="btn btn-sm btn-primary" role="button">PPTX (Mac)</a>
<a href="slides/week06a.pdf" class="btn btn-sm btn-info" role="button">PDF</a></b> <b>Part 1: February 7</b>
</p>
<p>
<a href="slides/week06b.pptx" class="btn btn-sm btn-primary" role="button">PPTX (Mac)</a>
<a href="slides/week06b.pdf" class="btn btn-sm btn-info" role="button">PDF</a></b> <b>Part 2: February 9</b>
</p>
<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 14</small></h3>
<h4>Topics</h4>
<ul>
<li>Optimizations for relational processing</li>
<li>Row vs. column stores</li>
<li>Vectorized processing</li>
<li>Semistructured data and record reconstruction (Parquet)</li>
</ul>
<p style="padding-top: 5px"/>
<h4>Slides</h4>
<p>
<a href="slides/week07a.pptx" class="btn btn-sm btn-primary" role="button">PPTX (Mac)</a>
<a href="slides/week07a.pdf" class="btn btn-sm btn-info" role="button">PDF</a></b> <b>Part 1: February 14</b>
</p>
<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>February 28/March 2</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: 5px"/>
<h4>Readings</h4>
<ul>
<li>Tom Mitchell. <a href="https://www.cs.cmu.edu/~tom/mlbook/NBayesLogReg.pdf">Naive Bayes and Logistic Regression</a>. (This book chapter serves as supplemental reading and goes into classification in more detail than in lecture.)</li>
<li>Jimmy Lin and Dmitriy Ryaboy. <a href="material/Lin_Ryaboy_2012.pdf">Scaling Big Data Mining Infrastructure: The Twitter Experience</a>, SIGKDD Explorations, 14(2):6-19, 2012.</li>
</ul>
<p style="padding-top: 5px"/>
<h4>Slides</h4>
<p>
<a href="slides/week08a.pptx" class="btn btn-sm btn-primary" role="button">PPTX (Mac)</a>
<a href="slides/week08a.pdf" class="btn btn-sm btn-info" role="button">PDF</a></b> <b>Part 1: February 28</b>
</p>
<p>
<a href="slides/week08b.pptx" class="btn btn-sm btn-primary" role="button">PPTX (Mac)</a>
<a href="slides/week08b.pdf" class="btn btn-sm btn-info" role="button">PDF</a> <b>Part 2: March 2</b>
</p>
<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 7/9</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: 5px"/>
<h4>Slides</h4>
<p>
<a href="slides/week09a.pptx" class="btn btn-sm btn-primary" role="button">PPTX (Mac)</a>
<a href="slides/week09a.pdf" class="btn btn-sm btn-info" role="button">PDF</a></b> <b>Part 1: March 7</b>
</p>
<p>
<a href="slides/week09b.pptx" class="btn btn-sm btn-primary" role="button">PPTX (Mac)</a>
<a href="slides/week09b.pdf" class="btn btn-sm btn-info" role="button">PDF</a> <b>Part 2: March 9</b>
</p>
<p style="padding-top: 20px"><a href="#">Back to top</a></p>
</div></section>
<!-- ---------------------------------------------------------------------------------------------------- -->
<section id="week10" style="padding-top:35px"><div>
<h3>Week 10: Mutable State <small>March 14/16</small></h3>
<h4>Topics</h4>
<ul>
<li>Bigtable/HBase: Log-structure merge trees</li>
<li>Distributed hash tables</li>
<li>Consistency, latency, and availability tradeoffs</li>
</ul>
<p style="padding-top: 5px"/>
<h4>Slides</h4>
<p>
<a href="slides/week10a.pptx" class="btn btn-sm btn-primary" role="button">PPTX (Mac)</a>
<a href="slides/week10a.pdf" class="btn btn-sm btn-info" role="button">PDF</a></b> <b>Part 1: March 14</b>
</p>
<p>
<a href="slides/week10b.pptx" class="btn btn-sm btn-primary" role="button">PPTX (Mac)</a>
<a href="slides/week10b.pdf" class="btn btn-sm btn-info" role="button">PDF</a> <b>Part 2: March 16</b>
</p>
<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 21/23</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: 5px"/>
<h4>Slides</h4>
<p>
<a href="slides/week11a.pptx" class="btn btn-sm btn-primary" role="button">PPTX (Mac)</a>
<a href="slides/week11a.pdf" class="btn btn-sm btn-info" role="button">PDF</a></b> <b>Part 1: March 21</b>
</p>
<p>
<a href="slides/week11b.pptx" class="btn btn-sm btn-primary" role="button">PPTX (Mac)</a>
<a href="slides/week11b.pdf" class="btn btn-sm btn-info" role="button">PDF</a> <b>Part 2: March 23</b>
</p>
<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 28/30</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>
<h4>Slides</h4>
<p>
<a href="slides/week12a.pptx" class="btn btn-sm btn-primary" role="button">PPTX (Mac)</a>
<a href="slides/week12a.pdf" class="btn btn-sm btn-info" role="button">PDF</a></b> <b>Part 1: March 28</b>
</p>
<p>
<a href="slides/week12b.pptx" class="btn btn-sm btn-primary" role="button">PPTX (Mac)</a>
<a href="slides/week12b.pdf" class="btn btn-sm btn-info" role="button">PDF</a> <b>Part 2: March 30</b>
</p>
<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>