-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathosdi.json
1823 lines (1823 loc) · 67.2 KB
/
osdi.json
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
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"py/object": "__main__.ProceedingSource",
"url": "https://dl.acm.org/conference/osdi/proceedings",
"caption": "OSDI",
"proceeding_entrys": [
{
"py/object": "__main__.ProceedingEntry",
"title": "OSDI'20: Proceedings of the 14th USENIX Conference on Operating Systems Design and Implementation",
"year": 0,
"url": "https://dl.acm.org/doi/proceedings/10.5555/3488766",
"paper_entrys": [
{
"py/object": "__main__.PaperEntry",
"title": "Theseus: an experiment in operating system structure and state management",
"authors": "",
"abstract": "",
"url": "https://dl.acm.org/doi/10.5555/3488766.3488767",
"doi": ""
},
{
"py/object": "__main__.PaperEntry",
"title": "RedLeaf: isolation and communication in a safe operating system",
"authors": "",
"abstract": "",
"url": "https://dl.acm.org/doi/10.5555/3488766.3488768",
"doi": ""
},
{
"py/object": "__main__.PaperEntry",
"title": "Specification and verification in the field: applying formal methods to BPF just-in-time compilers in the Linux kernel",
"authors": "",
"abstract": "",
"url": "https://dl.acm.org/doi/10.5555/3488766.3488769",
"doi": ""
},
{
"py/object": "__main__.PaperEntry",
"title": "COBRA: making transactional key-value stores verifiably serializable",
"authors": "",
"abstract": "",
"url": "https://dl.acm.org/doi/10.5555/3488766.3488770",
"doi": ""
},
{
"py/object": "__main__.PaperEntry",
"title": "Determinizing crash behavior with a verified snapshot-consistent flash translation layer",
"authors": "",
"abstract": "",
"url": "https://dl.acm.org/doi/10.5555/3488766.3488771",
"doi": ""
},
{
"py/object": "__main__.PaperEntry",
"title": "Storage systems are distributed systems (so verify them that way!)",
"authors": "",
"abstract": "",
"url": "https://dl.acm.org/doi/10.5555/3488766.3488772",
"doi": ""
},
{
"py/object": "__main__.PaperEntry",
"title": "Fast RDMA-based ordered key-value store using remote learned cache",
"authors": "",
"abstract": "",
"url": "https://dl.acm.org/doi/10.5555/3488766.3488773",
"doi": ""
},
{
"py/object": "__main__.PaperEntry",
"title": "CrossFS: a cross-layered direct-access file system",
"authors": "",
"abstract": "",
"url": "https://dl.acm.org/doi/10.5555/3488766.3488774",
"doi": ""
},
{
"py/object": "__main__.PaperEntry",
"title": "From WiscKey to Bourbon: a learned index for log-structured merge trees",
"authors": "",
"abstract": "",
"url": "https://dl.acm.org/doi/10.5555/3488766.3488775",
"doi": ""
},
{
"py/object": "__main__.PaperEntry",
"title": "A large scale analysis of hundreds of in-memory cache clusters at Twitter",
"authors": "",
"abstract": "",
"url": "https://dl.acm.org/doi/10.5555/3488766.3488777",
"doi": ""
},
{
"py/object": "__main__.PaperEntry",
"title": "Generalized sub-query fusion for eliminating redundant I/O from big-data queries",
"authors": "",
"abstract": "",
"url": "https://dl.acm.org/doi/10.5555/3488766.3488778",
"doi": ""
},
{
"py/object": "__main__.PaperEntry",
"title": "A simpler and faster NIC driver model for network functions",
"authors": "",
"abstract": "",
"url": "https://dl.acm.org/doi/10.5555/3488766.3488779",
"doi": ""
},
{
"py/object": "__main__.PaperEntry",
"title": "PANIC: a high-performance programmable NIC for multi-tenant networks",
"authors": "",
"abstract": "",
"url": "https://dl.acm.org/doi/10.5555/3488766.3488780",
"doi": ""
},
{
"py/object": "__main__.PaperEntry",
"title": "Semeru: a memory-disaggregated managed runtime",
"authors": "",
"abstract": "",
"url": "https://dl.acm.org/doi/10.5555/3488766.3488781",
"doi": ""
},
{
"py/object": "__main__.PaperEntry",
"title": "Caladan: mitigating interference at microsecond timescales",
"authors": "",
"abstract": "",
"url": "https://dl.acm.org/doi/10.5555/3488766.3488782",
"doi": ""
},
{
"py/object": "__main__.PaperEntry",
"title": "Overload control for \u00b5s-scale RPCs with breakwater",
"authors": "",
"abstract": "",
"url": "https://dl.acm.org/doi/10.5555/3488766.3488783",
"doi": ""
},
{
"py/object": "__main__.PaperEntry",
"title": "AIFM: high-performance, application-integrated far memory",
"authors": "",
"abstract": "",
"url": "https://dl.acm.org/doi/10.5555/3488766.3488784",
"doi": ""
},
{
"py/object": "__main__.PaperEntry",
"title": "Performance-optimal read-only transactions",
"authors": "",
"abstract": "",
"url": "https://dl.acm.org/doi/10.5555/3488766.3488785",
"doi": ""
},
{
"py/object": "__main__.PaperEntry",
"title": "Toward a generic fault tolerance technique for partial network partitioning",
"authors": "",
"abstract": "",
"url": "https://dl.acm.org/doi/10.5555/3488766.3488786",
"doi": ""
},
{
"py/object": "__main__.PaperEntry",
"title": "PACEMAKER: avoiding HeART attacks in storage clusters with disk-adaptive redundancy",
"authors": "",
"abstract": "",
"url": "https://dl.acm.org/doi/10.5555/3488766.3488787",
"doi": ""
},
{
"py/object": "__main__.PaperEntry",
"title": "Pegasus: Tolerating skewed workloads in distributed storage with in-network coherence directories",
"authors": "",
"abstract": "",
"url": "https://dl.acm.org/doi/10.5555/3488766.3488788",
"doi": ""
},
{
"py/object": "__main__.PaperEntry",
"title": "FlightTracker: consistency across read-optimized online stores at facebook",
"authors": "",
"abstract": "",
"url": "https://dl.acm.org/doi/10.5555/3488766.3488789",
"doi": ""
},
{
"py/object": "__main__.PaperEntry",
"title": "KVell+: snapshot isolation without snapshots",
"authors": "",
"abstract": "",
"url": "https://dl.acm.org/doi/10.5555/3488766.3488790",
"doi": ""
},
{
"py/object": "__main__.PaperEntry",
"title": "Serving DNNs like clockwork: performance predictability from the bottom up",
"authors": "",
"abstract": "",
"url": "https://dl.acm.org/doi/10.5555/3488766.3488791",
"doi": ""
},
{
"py/object": "__main__.PaperEntry",
"title": "A unified architecture for accelerating distributed DNN training in heterogeneous GPU/CPU clusters",
"authors": "",
"abstract": "",
"url": "https://dl.acm.org/doi/10.5555/3488766.3488792",
"doi": ""
},
{
"py/object": "__main__.PaperEntry",
"title": "Heterogeneity-aware cluster scheduling policies for deep learning workloads",
"authors": "",
"abstract": "",
"url": "https://dl.acm.org/doi/10.5555/3488766.3488793",
"doi": ""
},
{
"py/object": "__main__.PaperEntry",
"title": "PipeSwitch: fast pipelined context switching for deep learning applications",
"authors": "",
"abstract": "",
"url": "https://dl.acm.org/doi/10.5555/3488766.3488794",
"doi": ""
},
{
"py/object": "__main__.PaperEntry",
"title": "HiveD: sharing a GPU cluster for deep learning with guarantees",
"authors": "",
"abstract": "",
"url": "https://dl.acm.org/doi/10.5555/3488766.3488795",
"doi": ""
},
{
"py/object": "__main__.PaperEntry",
"title": "AntMan: dynamic scaling on GPU clusters for deep learning",
"authors": "",
"abstract": "",
"url": "https://dl.acm.org/doi/10.5555/3488766.3488796",
"doi": ""
},
{
"py/object": "__main__.PaperEntry",
"title": "Write dependency disentanglement with HORAE",
"authors": "",
"abstract": "",
"url": "https://dl.acm.org/doi/10.5555/3488766.3488797",
"doi": ""
},
{
"py/object": "__main__.PaperEntry",
"title": "Blockene: a high-throughput blockchain over mobile devices",
"authors": "",
"abstract": "",
"url": "https://dl.acm.org/doi/10.5555/3488766.3488798",
"doi": ""
},
{
"py/object": "__main__.PaperEntry",
"title": "Tolerating slowdowns in replicated state machines using copilots",
"authors": "",
"abstract": "",
"url": "https://dl.acm.org/doi/10.5555/3488766.3488799",
"doi": ""
},
{
"py/object": "__main__.PaperEntry",
"title": "Microsecond consensus for microsecond applications",
"authors": "",
"abstract": "",
"url": "https://dl.acm.org/doi/10.5555/3488766.3488800",
"doi": ""
},
{
"py/object": "__main__.PaperEntry",
"title": "Virtual consensus in delos",
"authors": "",
"abstract": "",
"url": "https://dl.acm.org/doi/10.5555/3488766.3488801",
"doi": ""
},
{
"py/object": "__main__.PaperEntry",
"title": "Byzantine ordered consensus without byzantine oligarchy",
"authors": "",
"abstract": "",
"url": "https://dl.acm.org/doi/10.5555/3488766.3488802",
"doi": ""
},
{
"py/object": "__main__.PaperEntry",
"title": "From global to local quiescence: wait-free code patching of multi-threaded processes",
"authors": "",
"abstract": "",
"url": "https://dl.acm.org/doi/10.5555/3488766.3488803",
"doi": ""
},
{
"py/object": "__main__.PaperEntry",
"title": "Testing database engines via pivoted query synthesis",
"authors": "",
"abstract": "",
"url": "https://dl.acm.org/doi/10.5555/3488766.3488804",
"doi": ""
},
{
"py/object": "__main__.PaperEntry",
"title": "Gauntlet: finding bugs in compilers for programmable packet processing",
"authors": "",
"abstract": "",
"url": "https://dl.acm.org/doi/10.5555/3488766.3488805",
"doi": ""
},
{
"py/object": "__main__.PaperEntry",
"title": "Aragog: scalable runtime verification of shardable networked systems",
"authors": "",
"abstract": "",
"url": "https://dl.acm.org/doi/10.5555/3488766.3488806",
"doi": ""
},
{
"py/object": "__main__.PaperEntry",
"title": "Automated reasoning and detection of specious configuration in large systems with symbolic execution",
"authors": "",
"abstract": "",
"url": "https://dl.acm.org/doi/10.5555/3488766.3488807",
"doi": ""
},
{
"py/object": "__main__.PaperEntry",
"title": "Testing configuration changes in context to prevent production failures",
"authors": "",
"abstract": "",
"url": "https://dl.acm.org/doi/10.5555/3488766.3488808",
"doi": ""
},
{
"py/object": "__main__.PaperEntry",
"title": "Providing SLOs for resource-harvesting VMs in cloud platforms",
"authors": "",
"abstract": "",
"url": "https://dl.acm.org/doi/10.5555/3488766.3488809",
"doi": ""
},
{
"py/object": "__main__.PaperEntry",
"title": "The CacheLib caching engine: design and experiences at scale",
"authors": "",
"abstract": "",
"url": "https://dl.acm.org/doi/10.5555/3488766.3488810",
"doi": ""
},
{
"py/object": "__main__.PaperEntry",
"title": "Twine: a unified cluster management system for shared infrastructure",
"authors": "",
"abstract": "",
"url": "https://dl.acm.org/doi/10.5555/3488766.3488811",
"doi": ""
},
{
"py/object": "__main__.PaperEntry",
"title": "FIRM: an intelligent fine-grained resource management framework for SLO-oriented microservices",
"authors": "",
"abstract": "",
"url": "https://dl.acm.org/doi/10.5555/3488766.3488812",
"doi": ""
},
{
"py/object": "__main__.PaperEntry",
"title": "Building scalable and flexible cluster managers using declarative programming",
"authors": "",
"abstract": "",
"url": "https://dl.acm.org/doi/10.5555/3488766.3488813",
"doi": ""
},
{
"py/object": "__main__.PaperEntry",
"title": "Protean: VM allocation service at scale",
"authors": "",
"abstract": "",
"url": "https://dl.acm.org/doi/10.5555/3488766.3488814",
"doi": ""
},
{
"py/object": "__main__.PaperEntry",
"title": "Ansor: generating high-performance tensor programs for deep learning",
"authors": "",
"abstract": "",
"url": "https://dl.acm.org/doi/10.5555/3488766.3488815",
"doi": ""
},
{
"py/object": "__main__.PaperEntry",
"title": "RAMMER: enabling holistic deep learning compiler optimizations with rtasks",
"authors": "",
"abstract": "",
"url": "https://dl.acm.org/doi/10.5555/3488766.3488816",
"doi": ""
},
{
"py/object": "__main__.PaperEntry",
"title": "A tensor compiler for unified machine learning prediction serving",
"authors": "",
"abstract": "",
"url": "https://dl.acm.org/doi/10.5555/3488766.3488817",
"doi": ""
},
{
"py/object": "__main__.PaperEntry",
"title": "Retiarii: a deep learning exploratory-training framework",
"authors": "",
"abstract": "",
"url": "https://dl.acm.org/doi/10.5555/3488766.3488818",
"doi": ""
},
{
"py/object": "__main__.PaperEntry",
"title": "KungFu: making training in distributed machine learning adaptive",
"authors": "",
"abstract": "",
"url": "https://dl.acm.org/doi/10.5555/3488766.3488819",
"doi": ""
},
{
"py/object": "__main__.PaperEntry",
"title": "FVM: FPGA-assisted virtual device emulation for fast, scalable, and flexible storage virtualization",
"authors": "",
"abstract": "",
"url": "https://dl.acm.org/doi/10.5555/3488766.3488820",
"doi": ""
},
{
"py/object": "__main__.PaperEntry",
"title": "hXDP: efficient software packet processing on FPGA NICs",
"authors": "",
"abstract": "",
"url": "https://dl.acm.org/doi/10.5555/3488766.3488821",
"doi": ""
},
{
"py/object": "__main__.PaperEntry",
"title": "Do OS abstractions make sense on FPGAs?",
"authors": "",
"abstract": "",
"url": "https://dl.acm.org/doi/10.5555/3488766.3488822",
"doi": ""
},
{
"py/object": "__main__.PaperEntry",
"title": "Assise: performance and availability via client-local NVM in a distributed file system",
"authors": "",
"abstract": "",
"url": "https://dl.acm.org/doi/10.5555/3488766.3488823",
"doi": ""
},
{
"py/object": "__main__.PaperEntry",
"title": "Persistent state machines for recoverable in-memory storage systems with NVRam",
"authors": "",
"abstract": "",
"url": "https://dl.acm.org/doi/10.5555/3488766.3488824",
"doi": ""
},
{
"py/object": "__main__.PaperEntry",
"title": "AGAMOTTO: how persistent is your persistent memory application?",
"authors": "",
"abstract": "",
"url": "https://dl.acm.org/doi/10.5555/3488766.3488825",
"doi": ""
},
{
"py/object": "__main__.PaperEntry",
"title": "Orchard: differentially private analytics at scale",
"authors": "",
"abstract": "",
"url": "https://dl.acm.org/doi/10.5555/3488766.3488826",
"doi": ""
},
{
"py/object": "__main__.PaperEntry",
"title": "Achieving 100Gbps intrusion prevention on a single server",
"authors": "",
"abstract": "",
"url": "https://dl.acm.org/doi/10.5555/3488766.3488827",
"doi": ""
},
{
"py/object": "__main__.PaperEntry",
"title": "DORY: an encrypted search system with distributed trust",
"authors": "",
"abstract": "",
"url": "https://dl.acm.org/doi/10.5555/3488766.3488828",
"doi": ""
},
{
"py/object": "__main__.PaperEntry",
"title": "SafetyPin: encrypted backups with human-memorable secrets",
"authors": "",
"abstract": "",
"url": "https://dl.acm.org/doi/10.5555/3488766.3488829",
"doi": ""
},
{
"py/object": "__main__.PaperEntry",
"title": "Efficiently mitigating transient execution attacks using the unmapped speculation contract",
"authors": "",
"abstract": "",
"url": "https://dl.acm.org/doi/10.5555/3488766.3488830",
"doi": ""
},
{
"py/object": "__main__.PaperEntry",
"title": "Predictive and adaptive failure mitigation to avert production cloud VM interruptions",
"authors": "",
"abstract": "",
"url": "https://dl.acm.org/doi/10.5555/3488766.3488831",
"doi": ""
},
{
"py/object": "__main__.PaperEntry",
"title": "Sundial: fault-tolerant clock synchronization for datacenters",
"authors": "",
"abstract": "",
"url": "https://dl.acm.org/doi/10.5555/3488766.3488832",
"doi": ""
},
{
"py/object": "__main__.PaperEntry",
"title": "Fault-tolerant and transactional stateful serverless workflows",
"authors": "",
"abstract": "",
"url": "https://dl.acm.org/doi/10.5555/3488766.3488833",
"doi": ""
},
{
"py/object": "__main__.PaperEntry",
"title": "Unearthing inter-job dependencies for better cluster scheduling",
"authors": "",
"abstract": "",
"url": "https://dl.acm.org/doi/10.5555/3488766.3488834",
"doi": ""
},
{
"py/object": "__main__.PaperEntry",
"title": "RackSched: a microsecond-scale scheduler for rack-scale computers",
"authors": "",
"abstract": "",
"url": "https://dl.acm.org/doi/10.5555/3488766.3488835",
"doi": ""
},
{
"py/object": "__main__.PaperEntry",
"title": "Thunderbolt: throughput-optimized, quality-of-service-aware power capping at scale",
"authors": "",
"abstract": "",
"url": "https://dl.acm.org/doi/10.5555/3488766.3488836",
"doi": ""
}
]
},
{
"py/object": "__main__.ProceedingEntry",
"title": "OSDI'18: Proceedings of the 13th USENIX conference on Operating Systems Design and Implementation",
"year": 0,
"url": "https://dl.acm.org/doi/proceedings/10.5555/3291168",
"paper_entrys": [
{
"py/object": "__main__.PaperEntry",
"title": "Capturing and enhancing in situ system observability for failure detection",
"authors": "",
"abstract": "",
"url": "https://dl.acm.org/doi/10.5555/3291168.3291170",
"doi": ""
},
{
"py/object": "__main__.PaperEntry",
"title": "REPT: reverse debugging of failures in deployed software",
"authors": "",
"abstract": "",
"url": "https://dl.acm.org/doi/10.5555/3291168.3291171",
"doi": ""
},
{
"py/object": "__main__.PaperEntry",
"title": "Finding crash-consistency bugs with bounded black-box crash testing",
"authors": "",
"abstract": "",
"url": "https://dl.acm.org/doi/10.5555/3291168.3291172",
"doi": ""
},
{
"py/object": "__main__.PaperEntry",
"title": "An analysis of network-partitioning failures in cloud systems",
"authors": "",
"abstract": "",
"url": "https://dl.acm.org/doi/10.5555/3291168.3291173",
"doi": ""
},
{
"py/object": "__main__.PaperEntry",
"title": "LegoOS: a disseminated, distributed OS for hardware resource disaggregation",
"authors": "",
"abstract": "",
"url": "https://dl.acm.org/doi/10.5555/3291168.3291175",
"doi": ""
},
{
"py/object": "__main__.PaperEntry",
"title": "The benefits and costs of writing a POSIX kernel in a high-level language",
"authors": "",
"abstract": "",
"url": "https://dl.acm.org/doi/10.5555/3291168.3291176",
"doi": ""
},
{
"py/object": "__main__.PaperEntry",
"title": "Sharing, protection, and compatibility for reconfigurable fabric with Amorphos",
"authors": "",
"abstract": "",
"url": "https://dl.acm.org/doi/10.5555/3291168.3291177",
"doi": ""
},
{
"py/object": "__main__.PaperEntry",
"title": "Adaptive dynamic checkpointing for safe efficient intermittent computing",
"authors": "",
"abstract": "",
"url": "https://dl.acm.org/doi/10.5555/3291168.3291178",
"doi": ""
},
{
"py/object": "__main__.PaperEntry",
"title": "Arachne: core-aware thread management",
"authors": "",
"abstract": "",
"url": "https://dl.acm.org/doi/10.5555/3291168.3291180",
"doi": ""
},
{
"py/object": "__main__.PaperEntry",
"title": "Principled schedulability analysis for distributed storage systems using thread architecture models",
"authors": "",
"abstract": "",
"url": "https://dl.acm.org/doi/10.5555/3291168.3291181",
"doi": ""
},
{
"py/object": "__main__.PaperEntry",
"title": "\u00b5tune: auto-tuned threading for OLDI microservices",
"authors": "",
"abstract": "",
"url": "https://dl.acm.org/doi/10.5555/3291168.3291182",
"doi": ""
},
{
"py/object": "__main__.PaperEntry",
"title": "RobinHood: tail latency-aware caching\u2014dynamically reallocating from cache-rich to cache-poor",
"authors": "",
"abstract": "",
"url": "https://dl.acm.org/doi/10.5555/3291168.3291183",
"doi": ""
},
{
"py/object": "__main__.PaperEntry",
"title": "Noria: dynamic, partially-stateful data-flow for high-performance web applications",
"authors": "",
"abstract": "",
"url": "https://dl.acm.org/doi/10.5555/3291168.3291185",
"doi": ""
},
{
"py/object": "__main__.PaperEntry",
"title": "Deconstructing RDMA-enabled distributed transactions: hybrid is better",
"authors": "",
"abstract": "",
"url": "https://dl.acm.org/doi/10.5555/3291168.3291186",
"doi": ""
},
{
"py/object": "__main__.PaperEntry",
"title": "Dynamic query re-planning using QOOP",
"authors": "",
"abstract": "",
"url": "https://dl.acm.org/doi/10.5555/3291168.3291187",
"doi": ""
},
{
"py/object": "__main__.PaperEntry",
"title": "Focus: querying large video datasets with low latency and low cost",
"authors": "",
"abstract": "",
"url": "https://dl.acm.org/doi/10.5555/3291168.3291188",
"doi": ""
},
{
"py/object": "__main__.PaperEntry",
"title": "Nickel: a framework for design and verification of information flow control systems",
"authors": "",
"abstract": "",
"url": "https://dl.acm.org/doi/10.5555/3291168.3291190",
"doi": ""
},
{
"py/object": "__main__.PaperEntry",
"title": "Verifying concurrent software using movers in CSPEC",
"authors": "",
"abstract": "",
"url": "https://dl.acm.org/doi/10.5555/3291168.3291191",
"doi": ""
},
{
"py/object": "__main__.PaperEntry",
"title": "Proving confidentiality in a file system using DISKSEC",
"authors": "",
"abstract": "",
"url": "https://dl.acm.org/doi/10.5555/3291168.3291192",
"doi": ""
},
{
"py/object": "__main__.PaperEntry",
"title": "Proving the correct execution of concurrent services in zero-knowledge",
"authors": "",
"abstract": "",
"url": "https://dl.acm.org/doi/10.5555/3291168.3291193",
"doi": ""
},
{
"py/object": "__main__.PaperEntry",
"title": "The fuzzylog: a partially ordered shared log",
"authors": "",
"abstract": "",
"url": "https://dl.acm.org/doi/10.5555/3291168.3291195",
"doi": ""
},
{
"py/object": "__main__.PaperEntry",
"title": "Maelstrom: mitigating datacenter-level disasters by draining interdependent traffic safely and efficiently",
"authors": "",
"abstract": "",
"url": "https://dl.acm.org/doi/10.5555/3291168.3291196",
"doi": ""
},
{
"py/object": "__main__.PaperEntry",
"title": "Fault-tolerance, fast and slow: exploiting failure asynchrony in distributed systems",
"authors": "",
"abstract": "",
"url": "https://dl.acm.org/doi/10.5555/3291168.3291197",
"doi": ""
},
{
"py/object": "__main__.PaperEntry",
"title": "Taming performance variability",
"authors": "",
"abstract": "",
"url": "https://dl.acm.org/doi/10.5555/3291168.3291198",
"doi": ""
},
{
"py/object": "__main__.PaperEntry",
"title": "Pocket: elastic ephemeral storage for serverless analytics",
"authors": "",
"abstract": "",
"url": "https://dl.acm.org/doi/10.5555/3291168.3291200",
"doi": ""
},
{
"py/object": "__main__.PaperEntry",
"title": "Sharding the shards: managing datastore locality at scale with Akkio",
"authors": "",
"abstract": "",
"url": "https://dl.acm.org/doi/10.5555/3291168.3291201",
"doi": ""
},
{
"py/object": "__main__.PaperEntry",
"title": "Write-optimized and high-performance hashing index scheme for persistent memory",
"authors": "",
"abstract": "",
"url": "https://dl.acm.org/doi/10.5555/3291168.3291202",
"doi": ""
},
{
"py/object": "__main__.PaperEntry",
"title": "Flashshare: punching through server storage stack from kernel to firmware for ultra-low latency SSDs",
"authors": "",
"abstract": "",
"url": "https://dl.acm.org/doi/10.5555/3291168.3291203",
"doi": ""
},
{
"py/object": "__main__.PaperEntry",
"title": "Orca: differential bug localization in large-scale services",
"authors": "",
"abstract": "",
"url": "https://dl.acm.org/doi/10.5555/3291168.3291205",
"doi": ""
},
{
"py/object": "__main__.PaperEntry",
"title": "Differential energy profiling: energy optimization via diffing similar apps",
"authors": "",
"abstract": "",
"url": "https://dl.acm.org/doi/10.5555/3291168.3291206",
"doi": ""
},
{
"py/object": "__main__.PaperEntry",
"title": "wPerf: generic Off-CPU analysis to identify bottleneck waiting events",
"authors": "",
"abstract": "",
"url": "https://dl.acm.org/doi/10.5555/3291168.3291207",
"doi": ""
},
{
"py/object": "__main__.PaperEntry",
"title": "Sledgehammer: cluster-fueled debugging",
"authors": "",
"abstract": "",
"url": "https://dl.acm.org/doi/10.5555/3291168.3291208",
"doi": ""
}
]
},
{
"py/object": "__main__.ProceedingEntry",
"title": "OSDI'16: Proceedings of the 12th USENIX conference on Operating Systems Design and Implementation",
"year": 0,
"url": "https://dl.acm.org/doi/proceedings/10.5555/3026877",
"paper_entrys": [
{
"py/object": "__main__.PaperEntry",
"title": "Push-button verification of file systems via crash refinement",
"authors": "",
"abstract": "",
"url": "https://dl.acm.org/doi/10.5555/3026877.3026879",
"doi": ""
},
{
"py/object": "__main__.PaperEntry",
"title": "Intermittent computation without hardware support or programmer intervention",
"authors": "",
"abstract": "",
"url": "https://dl.acm.org/doi/10.5555/3026877.3026880",
"doi": ""
},
{
"py/object": "__main__.PaperEntry",
"title": "Machine-aware atomic broadcast trees for multicores",
"authors": "",
"abstract": "",
"url": "https://dl.acm.org/doi/10.5555/3026877.3026881",
"doi": ""
},
{
"py/object": "__main__.PaperEntry",
"title": "Light-weight contexts: an OS abstraction for safety and performance",
"authors": "",
"abstract": "",
"url": "https://dl.acm.org/doi/10.5555/3026877.3026882",
"doi": ""
},
{
"py/object": "__main__.PaperEntry",
"title": "Altruistic scheduling in multi-resource clusters",
"authors": "",
"abstract": "",
"url": "https://dl.acm.org/doi/10.5555/3026877.3026884",
"doi": ""
},
{
"py/object": "__main__.PaperEntry",
"title": "Graphene: packing and dependency-aware scheduling for data-parallel clusters",
"authors": "",
"abstract": "",
"url": "https://dl.acm.org/doi/10.5555/3026877.3026885",
"doi": ""
},
{
"py/object": "__main__.PaperEntry",
"title": "Firmament: fast, centralized cluster scheduling at scale",
"authors": "",
"abstract": "",
"url": "https://dl.acm.org/doi/10.5555/3026877.3026886",
"doi": ""
},
{
"py/object": "__main__.PaperEntry",
"title": "Morpheus: towards automated SLOs for enterprise clusters",
"authors": "",
"abstract": "",
"url": "https://dl.acm.org/doi/10.5555/3026877.3026887",
"doi": ""
},
{
"py/object": "__main__.PaperEntry",
"title": "The SNOW theorem and latency-optimal read-only transactions",
"authors": "",
"abstract": "",
"url": "https://dl.acm.org/doi/10.5555/3026877.3026889",
"doi": ""
},
{
"py/object": "__main__.PaperEntry",
"title": "Correlated crash vulnerabilities",
"authors": "",
"abstract": "",
"url": "https://dl.acm.org/doi/10.5555/3026877.3026890",
"doi": ""
},
{
"py/object": "__main__.PaperEntry",
"title": "Incremental consistency guarantees for replicated objects",
"authors": "",
"abstract": "",
"url": "https://dl.acm.org/doi/10.5555/3026877.3026891",
"doi": ""
},
{
"py/object": "__main__.PaperEntry",
"title": "FaSST: fast, scalable and simple distributed transactions with two-sided (RDMA) datagram RPCs",
"authors": "",
"abstract": "",
"url": "https://dl.acm.org/doi/10.5555/3026877.3026892",
"doi": ""
},
{
"py/object": "__main__.PaperEntry",
"title": "NetBricks: taking the V out of NFV",
"authors": "",
"abstract": "",
"url": "https://dl.acm.org/doi/10.5555/3026877.3026894",
"doi": ""
},
{
"py/object": "__main__.PaperEntry",
"title": "Efficient network reachability analysis using a succinct control plane representation",
"authors": "",
"abstract": "",
"url": "https://dl.acm.org/doi/10.5555/3026877.3026895",
"doi": ""
},
{
"py/object": "__main__.PaperEntry",
"title": "Simplifying datacenter network debugging with pathdump",
"authors": "",
"abstract": "",
"url": "https://dl.acm.org/doi/10.5555/3026877.3026896",
"doi": ""
},
{
"py/object": "__main__.PaperEntry",
"title": "Network requirements for resource disaggregation",
"authors": "",
"abstract": "",
"url": "https://dl.acm.org/doi/10.5555/3026877.3026897",
"doi": ""
},
{
"py/object": "__main__.PaperEntry",
"title": "TensorFlow: a system for large-scale machine learning",
"authors": "",
"abstract": "",
"url": "https://dl.acm.org/doi/10.5555/3026877.3026899",
"doi": ""
},
{
"py/object": "__main__.PaperEntry",
"title": "Exploring the hidden dimension in graph processing",
"authors": "",
"abstract": "",
"url": "https://dl.acm.org/doi/10.5555/3026877.3026900",
"doi": ""
},
{
"py/object": "__main__.PaperEntry",
"title": "Gemini: a computation-centric distributed graph processing system",
"authors": "",
"abstract": "",
"url": "https://dl.acm.org/doi/10.5555/3026877.3026901",
"doi": ""
},
{
"py/object": "__main__.PaperEntry",
"title": "Fast and concurrent RDF queries with RDMA-based distributed graph exploration",
"authors": "",
"abstract": "",
"url": "https://dl.acm.org/doi/10.5555/3026877.3026902",
"doi": ""
},
{
"py/object": "__main__.PaperEntry",
"title": "REX: a development platform and online learning approach for runtime emergent software systems",
"authors": "",
"abstract": "",