-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
485 lines (477 loc) · 17.9 KB
/
index.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
---
layout: default
title: "Home"
---
<html>
<head>
<style>
.table-container {
display: flex;
justify-content: center;
}
</style>
</head>
<body>
<!-- Insert the text here -->
<article>
Weekly reading group hosted by <a href="https://docclab.cs.tufts.edu/">DOCC Lab</a> at Tufts University. Held on Wednesdays 12-1pm. If you have any interest in attending (in-person or remote), reach out to me at lan [DOT] liu [AT] tufts [DOT] edu.
</article>
<!-- The table content starts here -->
<div class="table-container">
<table class="center" style='margin: 5px;'>
<tr>
<th>Date</th>
<th>Presenter</th>
<th>Paper</th>
<th>Summary</th>
</tr>
<tr>
<td>10/16/24</td>
<td>Tony Astolfi</td>
<td><a href="https://dl.acm.org/doi/pdf/10.1145/3098822.3098857">Bootstrapping evolvability for inter-domain routing with D-BGP</a></td>
<td>
{% assign post = site.posts | where_exp: "post", "post.title contains 'D-BGP'" | first %}
{% if post %}
<a href="{{ post.url | relative_url }}">Summary</a>
{% else %}Unavailable
{% endif %}
</td>
</tr>
<tr>
<td>9/25/24</td>
<td>Max Liu</td>
<td><a href="https://dl.acm.org/doi/pdf/10.1145/3663529.3663858">LM-PACE: Confidence Estimation by Large Language Models for Effective Root Causing of Cloud Incidents</a></td>
<td>
{% assign post = site.posts | where_exp: "post", "post.title contains 'LM-PACE'" | first %}
{% if post %}
<a href="{{ post.url | relative_url }}">Summary</a>
{% else %}Unavailable
{% endif %}
</td>
</tr>
<tr>
<td>9/4/24</td>
<td>Tony Astolfi</td>
<td><a href="https://dspace.mit.edu/bitstream/handle/1721.1/143731/3485450.3485454.pdf">DBOS: A DBMS-oriented Operating System</a></td>
<td>
{% assign post = site.posts | where_exp: "post", "post.title contains 'DBOS'" | first %}
{% if post %}
<a href="{{ post.url | relative_url }}">Summary</a>
{% else %}Unavailable
{% endif %}
</td>
</tr>
<tr>
<td>8/21/24</td>
<td>Max Liu</td>
<td>
<a href="https://www.science.org/doi/epdf/10.1126/science.159.3810.56">"The Matthew Effect" by Robert Merton</a>
and
<a href="https://www.theguardian.com/commentisfree/2013/feb/03/teamwork-science-transforming-the-world">“In science today, a genius never works alone,” by Athene Donald</a>
and
<a href="https://www.nytimes.com/2016/02/28/magazine/what-google-learned-from-its-quest-to-build-the-perfect-team.html?_r=1"> “What Google Learned From Its Quest to Build the Perfect Team,” by Charles Duhigg</a>
</td>
<td>
{% assign post = site.posts | where_exp: "post", "post.title contains 'Teamwork discussion'" | first %}
{% if post %}
<a href="{{ post.url | relative_url }}">Summary</a>
{% else %}Unavailable
{% endif %}
</td>
</tr>
<tr>
<td>8/14/24</td>
<td>Darby Huye</td>
<td>TBA</td>
<td>TBA
</td>
</tr>
<tr>
<td>8/8/24</td>
<td>Zhaoqi(Roy) Zhang</td>
<td><a href="https://www.usenix.org/system/files/nsdi22-paper-gao_kaihui.pdf">Buffer-based End-to-end Request Event Monitoring in the Cloud, NSDI '22</a></td>
<td>
{% assign post = site.posts | where_exp: "post", "post.title contains 'Buffer-based'" | first %}
{% if post %}
<a href="{{ post.url | relative_url }}">Summary</a>
{% else %}Unavailable
{% endif %}
</td>
</tr>
<tr>
<td>6/19/24</td>
<td>Tony Astolfi</td>
<td><a href="https://www.usenix.org/system/files/nsdi24-wang-zibo.pdf">Autothrottle: A Practical Bi-Level Approach to Resource Management for SLO-Targeted Microservices, NSDI '24</a></td>
<td>
{% assign post = site.posts | where_exp: "post", "post.title contains 'Autothrottle'" | first %}
{% if post %}
<a href="{{ post.url | relative_url }}">Summary</a>
{% else %}Unavailable
{% endif %}
</td>
</tr>
<tr>
<td>6/6/24</td>
<td>Max Liu</td>
<td><a href="https://dl.acm.org/doi/pdf/10.1145/3603269.3604815">Fathom: Understanding Datacenter Application Network Performance, SIGCOMM '23</a></td>
<td>
{% assign post = site.posts | where_exp: "post", "post.title contains 'Fathom'" | first %}
{% if post %}
<a href="{{ post.url | relative_url }}">Summary</a>
{% else %}Unavailable
{% endif %}
</td>
</tr>
<tr>
<td>4/24/24</td>
<td>Tomislav Zabcic-Matic</td>
<td><a href="https://dl.acm.org/doi/10.1145/3597503.3639088">Trace-based Multi-Dimensional Root Cause Localization of Performance Issues in Microservice Systems, ICSE '24</a></td>
<td>
{% assign post = site.posts | where_exp: "post", "post.title contains 'Trace-based Multi-Dimensional'" | first %}
{% if post %}
<a href="{{ post.url | relative_url }}">Summary</a>
{% else %}Unavailable
{% endif %}
</td>
</tr>
<tr>
<td>4/10/24</td>
<td>Zhaoqi Zhang</td>
<td><a href="https://www.usenix.org/conference/atc23/presentation/huye">Lifting the veil on Meta's microservice architecture: Analyses of topology and request workflows, ATC '23</a></td>
<td>
{% assign post = site.posts | where_exp: "post", "post.title contains 'Lifting'" | first %}
{% if post %}
<a href="{{ post.url | relative_url }}">Summary</a>
{% else %}Unavailable
{% endif %}
</td>
</tr>
<tr>
<td>4/3/24</td>
<td>Max Liu</td>
<td><a href="https://dl.acm.org/doi/pdf/10.1145/3600006.3613156">A Cloud-Scale Characterization of Remote Procedure Calls, SOSP '23</a></td>
<td>
{% assign post = site.posts | where_exp: "post", "post.title contains 'Cloud-Scale'" | first %}
{% if post %}
<a href="{{ post.url | relative_url }}">Summary</a>
{% else %}Unavailable
{% endif %}
</td>
</tr>
<tr>
<td>3/27/24</td>
<td>Mona Ma</td>
<td><a href="https://dl.acm.org/doi/10.1145/2815400.2815415">Pivot Tracing: Dynamic Causal Monitoring for Distributed Systems, SOSP '15</a></td>
<td>
{% assign post = site.posts | where_exp: "post", "post.title contains 'Pivot'" | first %}
{% if post %}
<a href="{{ post.url | relative_url }}">Summary</a>
{% else %}Unavailable
{% endif %}
</td>
</tr>
<tr>
<td>3/13/24</td>
<td>Darby Huye</td>
<td><a href="https://www.usenix.org/system/files/atc21-weng.pdf">Argus: Debugging performance issues in modern desktop applications with annotated causal tracing, ATC '21</a></td>
<td>
{% assign post = site.posts | where_exp: "post", "post.title contains 'Argus'" | first %}
{% if post %}
<a href="{{ post.url | relative_url }}">Summary</a>
{% else %}Unavailable
{% endif %}
</td>
</tr>
<tr>
<td>3/06/24</td>
<td>Tomislav Zabcic-Matic</td>
<td><a href="https://dl.acm.org/doi/10.1145/3477132.3483577">Understanding and Detecting Software Upgrade Failures in Distributed Systems, SOSP '21</a></td>
<td>
{% assign post = site.posts | where_exp: "post", "post.title contains 'Understanding and Detecting Software Upgrade'" | first %}
{% if post %}
<a href="{{ post.url | relative_url }}">Summary</a>
{% else %}Unavailable
{% endif %}
</td>
</tr>
<tr>
<td>2/21/24</td>
<td>Max Liu</td>
<td><a href="https://dl.acm.org/doi/abs/10.1145/3492321.3519575">Unicorn: reasoning about configurable system performance through the lens of causality, EuroSys '22</a></td>
<td>
{% assign post = site.posts | where_exp: "post", "post.title contains 'Unicorn'" | first %}
{% if post %}
<a href="{{ post.url | relative_url }}">Summary</a>
{% else %}Unavailable
{% endif %}
</td>
</tr>
<tr>
<td>2/14/24</td>
<td>Zhaoqi Zhang</td>
<td><a href="https://ieeexplore.ieee.org/abstract/document/9590295?casa_token=2cO0LL7nwroAAAAA:EPnZP6QMt1cIQ0E-Mq7IPzEKuSavt2_HvpvV_PGXse_P28SOUxJQCn4eRdYNjWQ99yNKTete">Sieve: Attention-based Sampling of End-to-End Trace Data in Distributed Microservice Systems, ICWS '21</a></td>
<td>
{% assign post = site.posts | where_exp: "post", "post.title contains 'Sieve'" | first %}
{% if post %}
<a href="{{ post.url | relative_url }}">Summary</a>
{% else %}Unavailable
{% endif %}
</td>
</tr>
<tr>
<td>2/07/24</td>
<td>Mona Ma</td>
<td><a href="https://dl.acm.org/doi/abs/10.1145/3620678.3624787">LatenSeer: Causal Modeling of End-to-End Latency Distributions by Harnessing Distributed Tracing, SoCC '23</a></td>
<td>
{% assign post = site.posts | where_exp: "post", "post.title contains 'LatenSeer'" | first %}
{% if post %}
<a href="{{ post.url | relative_url }}">Summary</a>
{% else %}Unavailable
{% endif %}
</td>
</tr>
<tr>
<td>1/31/24</td>
<td>Darby Huye</td>
<td><a href="https://dl.acm.org/doi/10.1145/3611643.3613881">STEAM: Observability-Preserving Trace Sampling, ESEC/FSE '23</a></td>
<td>
{% assign post = site.posts | where_exp: "post", "post.title contains 'STEAM'" | first %}
{% if post %}
<a href="{{ post.url | relative_url }}">Summary</a>
{% else %}Unavailable
{% endif %}
</td>
</tr>
<tr>
<td>1/24/24</td>
<td>Tomislav Zabcic-Matic</td>
<td><a href="https://ieeexplore.ieee.org/document/9460542">QoS-Aware and Resource Efficient Microservice Deployment in Cloud-Edge Continuum, IPDPS '21</a></td>
<td>
{% assign post = site.posts | where_exp: "post", "post.title contains 'Cloud-Edge Continuum'" | first %}
{% if post %}
<a href="{{ post.url | relative_url }}">Summary</a>
{% else %}Unavailable
{% endif %}
</td>
</tr>
<tr>
<td>12/06/23</td>
<td>Sarah Abowitz</td>
<td><a href="https://dl.acm.org/doi/10.1145/3484266.3487380">Watching the watchmen: Least privilege for managed network services, HotNets '21</a></td>
<td>
{% assign post = site.posts | where_exp: "post", "post.title contains 'watchmen'" | first %}
{% if post %}
<a href="{{ post.url | relative_url }}">Summary</a>
{% else %}Unavailable
{% endif %}
</td>
</tr>
<tr>
<td>11/29/23</td>
<td>Max Liu</td>
<td><a href="https://dl.acm.org/doi/pdf/10.1145/3600006.3613138">Blueprint: A Toolchain for Highly-Reconfigurable Microservices, SOSP '23</a></td>
<td>
{% assign post = site.posts | where_exp: "post", "post.title contains 'Blueprint'" | first %}
{% if post %}
<a href="{{ post.url | relative_url }}">Summary</a>
{% else %}Unavailable
{% endif %}
</td>
</tr>
<tr>
<td>11/13/23</td>
<td>Zhaoqi Zhang</td>
<td><a href="https://dl.acm.org/doi/abs/10.1145/3452296.3472888">Understanding host network stack overheads, SIGCOMM '21</a></td>
<td>
{% assign post = site.posts | where_exp: "post", "post.title contains 'Understanding host network stack overheads'" | first %}
{% if post %}
<a href="{{ post.url | relative_url }}">Summary</a>
{% else %}Unavailable
{% endif %}
</td>
</tr>
<tr>
<td>11/01/23</td>
<td>Mona Ma</td>
<td><a href="https://www.usenix.org/conference/osdi14/technical-sessions/presentation/chow">The Mystery Machine: End-to-end Performance Analysis of Large-scale Internet Services, OSDI '14</a></td>
<td>
{% assign post = site.posts | where_exp: "post", "post.title contains 'The Mystery Machine'" | first %}
{% if post %}
<a href="{{ post.url | relative_url }}">Summary</a>
{% else %}Unavailable
{% endif %}
</td>
</tr>
<tr>
<td>10/16/23</td>
<td>Tomislav Z-M</td>
<td><a href="https://www.usenix.org/system/files/osdi21-rodrigues.pdf">CLP: Efficient and Scalable Search on Compressed Text Logs</a></td>
<td>
{% assign post = site.posts | where_exp: "post", "post.title contains 'CLP'" | first %}
{% if post %}
<a href="{{ post.url | relative_url }}">Summary</a>
{% else %}Unavailable
{% endif %}
</td>
</tr>
<tr>
<td>10/11/23</td>
<td>Sarah Abowitz</td>
<td><a href="https://dl.acm.org/doi/pdf/10.1145/3569902.3569916">Detecting DoS Attacks in Microservice Applications: Approach and Case Study, LADC '22</a></td>
<td>
{% assign post = site.posts | where_exp: "post", "post.title contains 'Detecting DoS Attacks'" | first %}
{% if post %}
<a href="{{ post.url | relative_url }}">Summary</a>
{% else %}Unavailable
{% endif %}
</td>
</tr>
<tr>
<td>10/04/23</td>
<td>Max Liu</td>
<td><a href="https://www.usenix.org/system/files/sec21-li-xing.pdf">Automatic Policy Generation for Inter-Service Access Control of Microservices, USENIX Security '21</a></td>
<td>
{% assign post = site.posts | where_exp: "post", "post.title contains 'AutoArmor summary & discussion'" | first %}
{% if post %}
<a href="{{ post.url | relative_url }}">Summary</a>
{% else %}Unavailable
{% endif %}
</td>
</tr>
<tr>
<td>09/27/23</td>
<td>Zhaoqi Zhang</td>
<td> <a href="https://www.usenix.org/conference/nsdi18/presentation/khalid">Iron: Isolating Network-based CPU in Container Environments, NSDI '18 </a></td>
<td>
{% assign post = site.posts | where_exp: "post", "post.title contains 'Iron: Isolating'" | first %}
{% if post %}
<a href="{{ post.url | relative_url }}">Summary</a>
{% else %}Unavailable
{% endif %}
</td>
</tr>
<tr>
<td>09/20/23</td>
<td>Mona Ma</td>
<td><a href="https://web.mit.edu/Saltzer/www/publications/endtoend/endtoend.pdf">END-TO-END ARGUMENTS IN SYSTEM DESIGN</a></td>
<td>
{% assign post = site.posts | where_exp: "post", "post.title contains 'End-to-end summary & discussion'" | first %}
{% if post %}
<a href="{{ post.url | relative_url }}">Summary</a>
{% else %}Unavailable
{% endif %}
</td>
</tr>
<tr>
<td>09/13/23</td>
<td>Darby Huye</td>
<td><a href="https://www.usenix.org/conference/osdi18/presentation/sriraman">µTune: Auto-Tuned Threading for OLDI Microservices, ODSI '18</a></td>
<td>
{% assign post = site.posts | where_exp: "post", "post.title contains 'µTune'" | first %}
{% if post %}
<a href="{{ post.url | relative_url }}">Summary</a>
{% else %}Unavailable
{% endif %}
</td>
</tr>
<tr>
<td>08/24/23</td>
<td>Sarah Abowitz</td>
<td>Summary of DEFCON '23</td>
<td>
{% assign post = site.posts | where_exp: "post", "post.title contains 'My first DEF CON'" | first %}
{% if post %}
<a href="{{ post.url | relative_url }}">Summary</a>
{% else %}Unavailable
{% endif %}
</td>
</tr>
<tr>
<td>08/17/23</td>
<td>Zhaoqi Zhang</td>
<td><a href="https://www.usenix.org/conference/osdi23/presentation/ren">Relational Debugging --- Pinpointing Root Causes of Performance Problems, OSDI '23</a></td>
<td>
{% assign post = site.posts | where_exp: "post", "post.title contains 'Relational Debugging'" | first %}
{% if post %}
<a href="{{ post.url | relative_url }}">Summary</a>
{% else %}Unavailable
{% endif %}
</td>
</tr>
<tr>
<td>07/20/23</td>
<td>Darby Huye</td>
<td><a href="https://arxiv.org/pdf/2210.04595.pdf">SampleHST: Efficient On-the-Fly Selection of Distributed Traces, on arxiv '22</a></td>
<td>
{% assign post = site.posts | where_exp: "post", "post.title contains 'SampleHST'" | first %}
{% if post %}
<a href="{{ post.url | relative_url }}">Summary</a>
{% else %}Unavailable
{% endif %}
</td>
</tr>
<tr>
<td>07/13/23</td>
<td>Mona Ma</td>
<td>Summary of OSDI & ATC '23 papers</td>
<td>
{% assign post = site.posts | where_exp: "post", "post.title contains 'OSDI & ATC'" | first %}
{% if post %}
<a href="{{ post.url | relative_url }}">Summary</a>
{% else %}Unavailable
{% endif %}
</td>
</tr>
<tr>
<td>06/29/23</td>
<td>Tomislav Z-M</td>
<td><a href="https://www.usenix.org/conference/nsdi23/presentation/chen-yinfang">Push-Button Reliability Testing for Cloud-Backed Applications with Rainmaker, NSDI '23</a></td>
<td>
{% assign post = site.posts | where_exp: "post", "post.title contains 'Rainmaker'" | first %}
{% if post %}
<a href="{{ post.url | relative_url }}">Summary</a>
{% else %}Unavailable
{% endif %}
</td>
</tr>
<tr>
<td>06/22/23</td>
<td>Sarah Abowitz</td>
<td><a href="https://www.usenix.org/system/files/nsdi23-liu-david.pdf">Doing More with Less: Orchestrating Serverless Applications without an Orchestrator, NSDI '23</a></td>
<td>
{% assign post = site.posts | where_exp: "post", "post.title contains 'Unum summary'" | first %}
{% if post %}
<a href="{{ post.url | relative_url }}">Summary</a>
{% else %}Unavailable
{% endif %}
</td>
</tr>
<tr>
<td>06/15/23</td>
<td>Zhaoqi Zhang</td>
<td><a href="https://www.usenix.org/conference/osdi22/presentation/huang-lexiang">Metastable Failures in the Wild, OSDI '22</a></td>
<td>
{% assign post = site.posts | where_exp: "post", "post.title contains 'Metastable'" | first %}
{% if post %}
<a href="{{ post.url | relative_url }}">Summary</a>
{% else %}Unavailable
{% endif %}
</td>
</tr>
<tr>
<td>06/08/23</td>
<td>Darby Huye</td>
<td><a href="https://dl.acm.org/doi/abs/10.1145/3552326.3567502">Foxhound: Server-Grade Observability for Network-Augmented Applications, EuroSys '23</a>
</td>
<td>
{% assign post = site.posts | where_exp: "post", "post.title contains 'Foxhound'" | first %}
{% if post %}
<a href="{{ post.url | relative_url }}">Summary</a>
{% else %}Unavailable
{% endif %}
</td>
</tr>
</table>
</div>
</body>
</html>