-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdissertation.bib
More file actions
1593 lines (1491 loc) · 57.1 KB
/
Copy pathdissertation.bib
File metadata and controls
1593 lines (1491 loc) · 57.1 KB
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
@inproceedings{Raiciu:2010:DCN,
author = {Raiciu, Costin and Pluntke, Christopher and Barre, Sebastien and Greenhalgh, Adam and Wischik, Damon and Handley, Mark},
title = {{Data center networking with multipath TCP}},
booktitle = {Proceedings of the Ninth ACM SIGCOMM Workshop on Hot Topics in Networks},
series = {Hotnets '10},
year = {2010},
isbn = {978-1-4503-0409-2},
location = {Monterey, California},
pages = {10:1--10:6},
articleno = {10},
numpages = {6},
url = {http://doi.acm.org/10.1145/1868447.1868457},
doi = {http://doi.acm.org/10.1145/1868447.1868457},
acmid = {1868457},
publisher = {ACM},
address = {New York, NY, USA},
keywords = {data center networks, multipath TCP},
}
@inproceedings{Chowdhury:2011:MDT,
author = {Chowdhury, Mosharaf and Zaharia, Matei and Ma, Justin and Jordan, Michael I. and Stoica, Ion},
title = {{Managing data transfers in computer clusters with Orchestra}},
booktitle = {Proceedings of the ACM SIGCOMM 2011 conference},
series = {SIGCOMM '11},
year = {2011},
isbn = {978-1-4503-0797-0},
location = {Toronto, Ontario, Canada},
pages = {98--109},
numpages = {12},
url = {http://doi.acm.org/10.1145/2018436.2018448},
doi = {http://doi.acm.org/10.1145/2018436.2018448},
acmid = {2018448},
publisher = {ACM},
address = {New York, NY, USA},
keywords = {data transfer, data-intensive applications, datacenter networks},
}
@inproceedings{Ballani:2011:TPD,
author = {Ballani, Hitesh and Costa, Paolo and Karagiannis, Thomas and Rowstron, Ant},
title = {Towards predictable datacenter networks},
booktitle = {Proceedings of the ACM SIGCOMM 2011 conference},
series = {SIGCOMM '11},
year = {2011},
isbn = {978-1-4503-0797-0},
location = {Toronto, Ontario, Canada},
pages = {242--253},
numpages = {12},
url = {http://doi.acm.org/10.1145/2018436.2018465},
doi = {http://doi.acm.org/10.1145/2018436.2018465},
acmid = {2018465},
publisher = {ACM},
address = {New York, NY, USA},
keywords = {allocation, bandwidth, datacenter, virtual network},
}
@article{Roscoe:2003:PRE,
author = {Roscoe, Timothy and Hand, Steve and Isaacs, Rebecca and Mortier, Richard and Jardetzky, Paul},
title = {Predicate routing: enabling controlled networking},
journal = {SIGCOMM Comput. Commun. Rev.},
volume = {33},
issue = {1},
month = {January},
year = {2003},
issn = {0146-4833},
pages = {65--70},
numpages = {6},
url = {http://doi.acm.org/10.1145/774763.774773},
doi = {http://doi.acm.org/10.1145/774763.774773},
acmid = {774773},
publisher = {ACM},
address = {New York, NY, USA},
}
@inproceedings{Rodrigues:2011:GSB,
author = {Rodrigues, Henrique and Santos, Jose Renato and Turner, Yoshio and Soares, Paolo and Guedes, Dorgival},
title = {Gatekeeper: supporting bandwidth guarantees for multi-tenant datacenter networks},
booktitle = {Proceedings of the 3rd conference on I/O virtualization},
series = {WIOV '11},
year = {2011},
location = {Portland, OR},
pages = {6--6},
numpages = {1},
url = {http://dl.acm.org/citation.cfm?id=2001555.2001561},
acmid = {2001561},
publisher = {USENIX Association},
address = {Berkeley, CA, USA},
}
@inproceedings{Shieh:2010:SBP,
author = {Shieh, Alan and Kandula, Srikanth and Sirer, Emin Gun},
title = {{SideCar: building programmable datacenter networks without programmable switches}},
booktitle = {Proceedings of the Ninth ACM SIGCOMM Workshop on Hot Topics in Networks},
series = {Hotnets '10},
year = {2010},
isbn = {978-1-4503-0409-2},
location = {Monterey, California},
pages = {21:1--21:6},
articleno = {21},
numpages = {6},
url = {http://doi.acm.org/10.1145/1868447.1868468},
doi = {http://doi.acm.org/10.1145/1868447.1868468},
acmid = {1868468},
publisher = {ACM},
address = {New York, NY, USA},
keywords = {datacenters, programmable switches, virtualized networks},
}
@inproceedings{Shieh:2010:SPI,
author = {Shieh, Alan and Kandula, Srikanth and Greenberg, Albert and Kim, Changhoon},
title = {Seawall: performance isolation for cloud datacenter networks},
booktitle = {Proceedings of the 2nd USENIX conference on Hot topics in cloud computing},
series = {HotCloud '10},
year = {2010},
location = {Boston, MA},
pages = {1--1},
numpages = {1},
url = {http://dl.acm.org/citation.cfm?id=1863103.1863104},
acmid = {1863104},
publisher = {USENIX Association},
address = {Berkeley, CA, USA},
}
@inproceedings{Anand:2010:CLC,
author = {Anand, Ashok and Muthukrishnan, Chitra and Kappes, Steven and Akella, Aditya and Nath, Suman},
title = {{Cheap and large CAMs for high performance data-intensive networked systems}},
booktitle = {Proceedings of the 7th USENIX conference on Networked systems design and implementation},
series = {NSDI '10},
year = {2010},
location = {San Jose, California},
pages = {29--29},
numpages = {1},
url = {http://dl.acm.org/citation.cfm?id=1855711.1855740},
acmid = {1855740},
publisher = {USENIX Association},
address = {Berkeley, CA, USA},
}
@inproceedings{Al-Fares:2010:HDF,
author = {Al-Fares, Mohammad and Radhakrishnan, Sivasankar and Raghavan, Barath and Huang, Nelson and Vahdat, Amin},
title = {Hedera: dynamic flow scheduling for data center networks},
booktitle = {Proceedings of the 7th USENIX conference on Networked systems design and implementation},
series = {NSDI '10},
year = {2010},
location = {San Jose, California},
pages = {19--19},
numpages = {1},
url = {http://dl.acm.org/citation.cfm?id=1855711.1855730},
acmid = {1855730},
publisher = {USENIX Association},
address = {Berkeley, CA, USA},
}
@inproceedings{Lu:2011:SPH,
author = {Lu, Guohan and Guo, Chuanxiong and Li, Yulong and Zhou, Zhiqiang and Yuan, Tong and Wu, Haitao and Xiong, Yongqiang and Gao, Rui and Zhang, Yongguang},
title = {{ServerSwitch: a programmable and high performance platform for data center networks}},
booktitle = {Proceedings of the 8th USENIX conference on Networked systems design and implementation},
series = {NSDI '11},
year = {2011},
location = {Boston, MA},
pages = {2--2},
numpages = {1},
url = {http://dl.acm.org/citation.cfm?id=1972457.1972460},
acmid = {1972460},
publisher = {USENIX Association},
address = {Berkeley, CA, USA},
}
@inproceedings{Wischik:2011:DIE,
author = {Wischik, Damon and Raiciu, Costin and Greenhalgh, Adam and Handley, Mark},
title = {{Design, implementation and evaluation of congestion control for multipath TCP}},
booktitle = {Proceedings of the 8th USENIX conference on Networked systems design and implementation},
series = {NSDI '11},
year = {2011},
location = {Boston, MA},
pages = {8--8},
numpages = {1},
url = {http://dl.acm.org/citation.cfm?id=1972457.1972468},
acmid = {1972468},
publisher = {USENIX Association},
address = {Berkeley, CA, USA},
}
@inproceedings{Wilson:2011:BNL,
author = {Wilson, Christo and Ballani, Hitesh and Karagiannis, Thomas and Rowtron, Ant},
title = {Better never than late: meeting deadlines in datacenter networks},
booktitle = {Proceedings of the ACM SIGCOMM 2011 conference},
series = {SIGCOMM '11},
year = {2011},
isbn = {978-1-4503-0797-0},
location = {Toronto, Ontario, Canada},
pages = {50--61},
numpages = {12},
url = {http://doi.acm.org/10.1145/2018436.2018443},
doi = {10.1145/2018436.2018443},
acmid = {2018443},
publisher = {ACM},
address = {New York, NY, USA},
keywords = {datacenter, deadline, online services, rate control, sla},
}
@inproceedings{Alizadeh:2010:DCT,
author = {Alizadeh, Mohammad and Greenberg, Albert and Maltz, David A. and Padhye, Jitendra and Patel, Parveen and Prabhakar, Balaji and Sengupta, Sudipta and Sridharan, Murari},
title = {{Data center TCP (DCTCP)}},
booktitle = {Proceedings of the ACM SIGCOMM 2010 conference},
series = {SIGCOMM '10},
year = {2010},
isbn = {978-1-4503-0201-2},
location = {New Delhi, India},
pages = {63--74},
numpages = {12},
url = {http://doi.acm.org/10.1145/1851182.1851192},
doi = {http://doi.acm.org/10.1145/1851182.1851192},
acmid = {1851192},
publisher = {ACM},
address = {New York, NY, USA},
keywords = {ECN, TCP, data center network},
}
@inproceedings{Al-Fares:2008:SCD,
author = {Al-Fares, Mohammad and Loukissas, Alexander and Vahdat, Amin},
title = {A scalable, commodity data center network architecture},
booktitle = {Proceedings of the ACM SIGCOMM 2008 conference on Data communication},
series = {SIGCOMM '08},
year = {2008},
isbn = {978-1-60558-175-0},
location = {Seattle, WA, USA},
pages = {63--74},
numpages = {12},
url = {http://doi.acm.org/10.1145/1402958.1402967},
doi = {http://doi.acm.org/10.1145/1402958.1402967},
acmid = {1402967},
publisher = {ACM},
address = {New York, NY, USA},
keywords = {data center topology, equal-cost routing},
}
@inproceedings{Guo:2009:BHP,
author = {Guo, Chuanxiong and Lu, Guohan and Li, Dan and Wu, Haitao and Zhang, Xuan and Shi, Yunfeng and Tian, Chen and Zhang, Yongguang and Lu, Songwu},
title = {{BCube: a high performance, server-centric network architecture for modular data centers}},
booktitle = {Proceedings of the ACM SIGCOMM 2009 conference on Data communication},
series = {SIGCOMM '09},
year = {2009},
isbn = {978-1-60558-594-9},
location = {Barcelona, Spain},
pages = {63--74},
numpages = {12},
url = {http://doi.acm.org/10.1145/1592568.1592577},
doi = {http://doi.acm.org/10.1145/1592568.1592577},
acmid = {1592577},
publisher = {ACM},
address = {New York, NY, USA},
keywords = {modular data center, multi-path, server-centric network},
}
@inproceedings{Raiciu:2011:IDP,
author = {Raiciu, Costin and Barre, Sebastien and Pluntke, Christopher and Greenhalgh, Adam and Wischik, Damon and Handley, Mark},
title = {{Improving datacenter performance and robustness with multipath TCP}},
booktitle = {Proceedings of the ACM SIGCOMM 2011 conference},
series = {SIGCOMM '11},
year = {2011},
isbn = {978-1-4503-0797-0},
location = {Toronto, Ontario, Canada},
pages = {266--277},
numpages = {12},
url = {http://doi.acm.org/10.1145/2018436.2018467},
doi = {http://doi.acm.org/10.1145/2018436.2018467},
acmid = {2018467},
publisher = {ACM},
address = {New York, NY, USA},
keywords = {data center, mptcp},
}
@inproceedings{Vasudevan:2009:SEF,
author = {Vasudevan, Vijay and Phanishayee, Amar and Shah, Hiral and Krevat, Elie and Andersen, David G. and Ganger, Gregory R. and Gibson, Garth A. and Mueller, Brian},
title = {{Safe and effective fine-grained TCP retransmissions for datacenter communication}},
booktitle = {Proceedings of the ACM SIGCOMM 2009 conference on Data communication},
series = {SIGCOMM '09},
year = {2009},
isbn = {978-1-60558-594-9},
location = {Barcelona, Spain},
pages = {303--314},
numpages = {12},
url = {http://doi.acm.org/10.1145/1592568.1592604},
doi = {http://doi.acm.org/10.1145/1592568.1592604},
acmid = {1592604},
publisher = {ACM},
address = {New York, NY, USA},
keywords = {datacenter networks, incast, performance, throughput},
}
@inproceedings{NiranjanMysore:2009:PSF,
author = {Niranjan Mysore, Radhika and Pamboris, Andreas and Farrington, Nathan and Huang, Nelson and Miri, Pardis and Radhakrishnan, Sivasankar and Subramanya, Vikram and Vahdat, Amin},
title = {{PortLand: a scalable fault-tolerant layer 2 data center network fabric}},
booktitle = {Proceedings of the ACM SIGCOMM 2009 conference on Data communication},
series = {SIGCOMM '09},
year = {2009},
isbn = {978-1-60558-594-9},
location = {Barcelona, Spain},
pages = {39--50},
numpages = {12},
url = {http://doi.acm.org/10.1145/1592568.1592575},
doi = {http://doi.acm.org/10.1145/1592568.1592575},
acmid = {1592575},
publisher = {ACM},
address = {New York, NY, USA},
keywords = {data center network fabric, layer 2 routing in data centers},
}
@inproceedings{Shieh:2011:SDC,
author = {Shieh, Alan and Kandula, Srikanth and Greenberg, Albert and Kim, Changhoon and Saha, Bikas},
title = {Sharing the data center network},
booktitle = {Proceedings of the 8th USENIX conference on Networked systems design and implementation},
series = {NSDI '11},
year = {2011},
location = {Boston, MA},
pages = {23--23},
numpages = {1},
url = {http://dl.acm.org/citation.cfm?id=1972457.1972489},
acmid = {1972489},
publisher = {USENIX Association},
address = {Berkeley, CA, USA},
}
@inproceedings{Curtis:2011:DSF,
author = {Curtis, Andrew R. and Mogul, Jeffrey C. and Tourrilhes, Jean and Yalagandula, Praveen and Sharma, Puneet and Banerjee, Sujata},
title = {{DevoFlow: scaling flow management for high-performance networks}},
booktitle = {Proceedings of the ACM SIGCOMM 2011 conference},
series = {SIGCOMM '11},
year = {2011},
isbn = {978-1-4503-0797-0},
location = {Toronto, Ontario, Canada},
pages = {254--265},
numpages = {12},
url = {http://doi.acm.org/10.1145/2018436.2018466},
doi = {http://doi.acm.org/10.1145/2018436.2018466},
acmid = {2018466},
publisher = {ACM},
address = {New York, NY, USA},
keywords = {data center, flow-based networking, switch design},
}
@inproceedings{Mudigonda:2011:NSM,
author = {Mudigonda, Jayaram and Yalagandula, Praveen and Mogul, Jeff and Stiekes, Bryan and Pouffary, Yanick},
title = {{NetLord: a scalable multi-tenant network architecture for virtualized datacenters}},
booktitle = {Proceedings of the ACM SIGCOMM 2011 conference},
series = {SIGCOMM '11},
year = {2011},
isbn = {978-1-4503-0797-0},
location = {Toronto, Ontario, Canada},
pages = {62--73},
numpages = {12},
url = {http://doi.acm.org/10.1145/2018436.2018444},
doi = {10.1145/2018436.2018444},
acmid = {2018444},
publisher = {ACM},
address = {New York, NY, USA},
keywords = {datacenter network, multi-pathing, multi-tenant, network virtualization, scalable ethernet},
}
@inproceedings{Guo:2010:SDC,
author = {Guo, Chuanxiong and Lu, Guohan and Wang, Helen J. and Yang, Shuang and Kong, Chao and Sun, Peng and Wu, Wenfei and Zhang, Yongguang},
title = {{SecondNet: a data center network virtualization architecture with bandwidth guarantees}},
booktitle = {Proceedings of the 6th International COnference},
series = {Co-NEXT '10},
year = {2010},
isbn = {978-1-4503-0448-1},
location = {Philadelphia, Pennsylvania},
pages = {15:1--15:12},
articleno = {15},
numpages = {12},
url = {http://doi.acm.org/10.1145/1921168.1921188},
doi = {http://doi.acm.org/10.1145/1921168.1921188},
acmid = {1921188},
publisher = {ACM},
address = {New York, NY, USA},
keywords = {DCN, bandwidth guarantee, virtual data center},
}
@inproceedings{Ghemawat:2003:GFS,
author = {Ghemawat, Sanjay and Gobioff, Howard and Leung, Shun-Tak},
title = {{The Google file system}},
booktitle = {Proceedings of the nineteenth ACM symposium on Operating systems principles},
series = {SOSP '03},
year = {2003},
isbn = {1-58113-757-5},
location = {Bolton Landing, NY, USA},
pages = {29--43},
numpages = {15},
url = {http://doi.acm.org/10.1145/945445.945450},
doi = {http://doi.acm.org/10.1145/945445.945450},
acmid = {945450},
publisher = {ACM},
address = {New York, NY, USA},
keywords = {clustered storage, data storage, fault tolerance, scalability},
}
@inproceedings{Chang:2006:BDS,
author = {Chang, Fay and Dean, Jeffrey and Ghemawat, Sanjay and Hsieh, Wilson C. and Wallach, Deborah A. and Burrows, Mike and Chandra, Tushar and Fikes, Andrew and Gruber, Robert E.},
title = {Bigtable: a distributed storage system for structured data},
booktitle = {Proceedings of the 7th USENIX Symposium on Operating Systems Design and Implementation - Volume 7},
series = {OSDI '06},
year = {2006},
location = {Seattle, WA},
pages = {15--15},
numpages = {1},
url = {http://dl.acm.org/citation.cfm?id=1267308.1267323},
acmid = {1267323},
publisher = {USENIX Association},
address = {Berkeley, CA, USA},
}
@inproceedings{DeCandia:2007:DAH,
author = {DeCandia, Giuseppe and Hastorun, Deniz and Jampani, Madan and Kakulapati, Gunavardhan and Lakshman, Avinash and Pilchin, Alex and Sivasubramanian, Swaminathan and Vosshall, Peter and Vogels, Werner},
title = {{Dynamo: Amazon's highly available key-value store}},
booktitle = {Proceedings of twenty-first ACM SIGOPS symposium on Operating systems principles},
series = {SOSP '07},
year = {2007},
isbn = {978-1-59593-591-5},
location = {Stevenson, Washington, USA},
pages = {205--220},
numpages = {16},
url = {http://doi.acm.org/10.1145/1294261.1294281},
doi = {http://doi.acm.org/10.1145/1294261.1294281},
acmid = {1294281},
publisher = {ACM},
address = {New York, NY, USA},
keywords = {performance, reliability, scalability},
}
@inproceedings{Dean:2004:MSD,
author = {Dean, Jeffrey and Ghemawat, Sanjay},
title = {{MapReduce: simplified data processing on large clusters}},
booktitle = {Proceedings of the 6th conference on Symposium on Opearting Systems Design \& Implementation - Volume 6},
year = {2004},
location = {San Francisco, CA},
pages = {10--10},
numpages = {1},
url = {http://dl.acm.org/citation.cfm?id=1251254.1251264},
acmid = {1251264},
publisher = {USENIX Association},
address = {Berkeley, CA, USA},
}
@inproceedings{Isard:2007:DDD,
author = {Isard, Michael and Budiu, Mihai and Yu, Yuan and Birrell, Andrew and Fetterly, Dennis},
title = {Dryad: distributed data-parallel programs from sequential building blocks},
booktitle = {Proceedings of the 2nd ACM SIGOPS/EuroSys European Conference on Computer Systems 2007},
series = {EuroSys '07},
year = {2007},
isbn = {978-1-59593-636-3},
location = {Lisbon, Portugal},
pages = {59--72},
numpages = {14},
url = {http://doi.acm.org/10.1145/1272996.1273005},
doi = {http://doi.acm.org/10.1145/1272996.1273005},
acmid = {1273005},
publisher = {ACM},
address = {New York, NY, USA},
keywords = {cluster computing, concurrency, dataflow, distributed programming},
}
@inproceedings{Murray:2011:CUE,
author = {Murray, Derek G. and Schwarzkopf, Malte and Smowton, Christopher and Smith, Steven and Madhavapeddy, Anil and Hand, Steven},
title = {{CIEL: a universal execution engine for distributed data-flow computing}},
booktitle = {Proceedings of the 8th USENIX conference on Networked systems design and implementation},
series = {NSDI '11},
year = {2011},
location = {Boston, MA},
pages = {9--9},
numpages = {1},
url = {http://dl.acm.org/citation.cfm?id=1972457.1972470},
acmid = {1972470},
publisher = {USENIX Association},
address = {Berkeley, CA, USA},
}
@article{Barroso:2003:WSP,
author = {Barroso, Luiz Andr\'{e} and Dean, Jeffrey and H\"{o}lzle, Urs},
title = {{Web Search for a Planet: The Google Cluster Architecture}},
journal = {IEEE Micro},
volume = {23},
issue = {2},
month = {March},
year = {2003},
issn = {0272-1732},
pages = {22--28},
numpages = {7},
url = {http://dl.acm.org/citation.cfm?id=776692.776716},
doi = {10.1109/MM.2003.1196112},
acmid = {776716},
publisher = {IEEE Computer Society Press},
address = {Los Alamitos, CA, USA},
}
@inproceedings{Guo:2008:DSF,
author = {Guo, Chuanxiong and Wu, Haitao and Tan, Kun and Shi, Lei and Zhang, Yongguang and Lu, Songwu},
title = {Dcell: a scalable and fault-tolerant network structure for data centers},
booktitle = {Proceedings of the ACM SIGCOMM 2008 conference on Data communication},
series = {SIGCOMM '08},
year = {2008},
isbn = {978-1-60558-175-0},
location = {Seattle, WA, USA},
pages = {75--86},
numpages = {12},
url = {http://doi.acm.org/10.1145/1402958.1402968},
doi = {http://doi.acm.org/10.1145/1402958.1402968},
acmid = {1402968},
publisher = {ACM},
address = {New York, NY, USA},
keywords = {data center, fault-tolerance, network topology, throughput},
}
@inproceedings{Greenberg:2009:VSF,
author = {Greenberg, Albert and Hamilton, James R. and Jain, Navendu and Kandula, Srikanth and Kim, Changhoon and Lahiri, Parantap and Maltz, David A. and Patel, Parveen and Sengupta, Sudipta},
title = {{VL2: a scalable and flexible data center network}},
booktitle = {Proceedings of the ACM SIGCOMM 2009 conference on Data communication},
series = {SIGCOMM '09},
year = {2009},
isbn = {978-1-60558-594-9},
location = {Barcelona, Spain},
pages = {51--62},
numpages = {12},
url = {http://doi.acm.org/10.1145/1592568.1592576},
doi = {http://doi.acm.org/10.1145/1592568.1592576},
acmid = {1592576},
publisher = {ACM},
address = {New York, NY, USA},
keywords = {commoditization, data center network},
}
@INPROCEEDINGS{ bittau:the,
AUTHOR = "Andrea Bittau and Michael Hamburg and Mark Handley and David Mazires and Dan Boneh",
TITLE = {{The Case for Ubiquitous Transport-Level Encryption.}},
booktitle = "USENIX Security Symposium '10",
PAGES = {403-418},
YEAR = {2010} }
@inproceedings{Hunt:2010:ZWC,
author = {Hunt, Patrick and Konar, Mahadev and Junqueira, Flavio P. and Reed, Benjamin},
title = {{ZooKeeper: wait-free coordination for internet-scale systems}},
booktitle = {Proceedings of the 2010 USENIX conference on USENIX annual technical conference},
series = {USENIX ATC '10},
year = {2010},
location = {Boston, MA},
pages = {11--11},
numpages = {1},
url = {http://dl.acm.org/citation.cfm?id=1855840.1855851},
acmid = {1855851},
publisher = {USENIX Association},
address = {Berkeley, CA, USA},
}
@inproceedings{Wu:2010:IIC,
author = {Wu, Haitao and Feng, Zhenqian and Guo, Chuanxiong and Zhang, Yongguang},
title = {{ICTCP: Incast Congestion Control for TCP in data center networks}},
booktitle = {Proceedings of the 6th International COnference},
series = {Co-NEXT '10},
year = {2010},
isbn = {978-1-4503-0448-1},
location = {Philadelphia, Pennsylvania},
pages = {13:1--13:12},
articleno = {13},
numpages = {12},
url = {http://doi.acm.org/10.1145/1921168.1921186},
doi = {http://doi.acm.org/10.1145/1921168.1921186},
acmid = {1921186},
publisher = {ACM},
address = {New York, NY, USA},
keywords = {TCP, data center networks, incast congestion},
}
@inproceedings{Condie:2010:MO,
author = {Condie, Tyson and Conway, Neil and Alvaro, Peter and Hellerstein, Joseph M. and Elmeleegy, Khaled and Sears, Russell},
title = {MapReduce online},
booktitle = {Proceedings of the 7th USENIX conference on Networked systems design and implementation},
series = {NSDI '10},
year = {2010},
location = {San Jose, California},
pages = {21--21},
numpages = {1},
url = {http://dl.acm.org/citation.cfm?id=1855711.1855732},
acmid = {1855732},
publisher = {USENIX Association},
address = {Berkeley, CA, USA},
}
@inproceedings{Halperin:2011:ADC,
author = {Halperin, Daniel and Kandula, Srikanth and Padhye, Jitendra and Bahl, Paramvir and Wetherall, David},
title = {Augmenting data center networks with multi-gigabit wireless links},
booktitle = {Proceedings of the ACM SIGCOMM 2011 conference},
series = {SIGCOMM '11},
year = {2011},
isbn = {978-1-4503-0797-0},
location = {Toronto, Ontario, Canada},
pages = {38--49},
numpages = {12},
url = {http://doi.acm.org/10.1145/2018436.2018442},
doi = {10.1145/2018436.2018442},
acmid = {2018442},
publisher = {ACM},
address = {New York, NY, USA},
keywords = {60 ghz, 802.11ad, data center, datacenter, flyways, network},
}
@inproceedings{Wang:2010:CPO,
author = {Wang, Guohui and Andersen, David G. and Kaminsky, Michael and Papagiannaki, Konstantina and Ng, T.S. Eugene and Kozuch, Michael and Ryan, Michael},
title = {{c-Through: part-time optics in data centers}},
booktitle = {Proceedings of the ACM SIGCOMM 2010 conference},
series = {SIGCOMM '10},
year = {2010},
isbn = {978-1-4503-0201-2},
location = {New Delhi, India},
pages = {327--338},
numpages = {12},
url = {http://doi.acm.org/10.1145/1851182.1851222},
doi = {10.1145/1851182.1851222},
acmid = {1851222},
publisher = {ACM},
address = {New York, NY, USA},
keywords = {data center networking, hybrid network, optical circuit switching},
}
@inproceedings{Farrington:2010:HHE,
author = {Farrington, Nathan and Porter, George and Radhakrishnan, Sivasankar and Bazzaz, Hamid Hajabdolali and Subramanya, Vikram and Fainman, Yeshaiahu and Papen, George and Vahdat, Amin},
title = {Helios: a hybrid electrical/optical switch architecture for modular data centers},
booktitle = {Proceedings of the ACM SIGCOMM 2010 conference},
series = {SIGCOMM '10},
year = {2010},
isbn = {978-1-4503-0201-2},
location = {New Delhi, India},
pages = {339--350},
numpages = {12},
url = {http://doi.acm.org/10.1145/1851182.1851223},
doi = {10.1145/1851182.1851223},
acmid = {1851223},
publisher = {ACM},
address = {New York, NY, USA},
keywords = {data center networks, optical networks},
}
@inproceedings{Hindman:2011:MPF,
author = {Hindman, Benjamin and Konwinski, Andy and Zaharia, Matei and Ghodsi, Ali and Joseph, Anthony D. and Katz, Randy and Shenker, Scott and Stoica, Ion},
title = {Mesos: a platform for fine-grained resource sharing in the data center},
booktitle = {Proceedings of the 8th USENIX conference on Networked systems design and implementation},
series = {NSDI '11},
year = {2011},
location = {Boston, MA},
pages = {22--22},
numpages = {1},
url = {http://dl.acm.org/citation.cfm?id=1972457.1972488},
acmid = {1972488},
publisher = {USENIX Association},
address = {Berkeley, CA, USA},
}
@inproceedings{Rhoden:2011:IPE,
author = {Rhoden, Barret and Klues, Kevin and Zhu, David and Brewer, Eric},
title = {{Improving per-node efficiency in the datacenter with new OS abstractions}},
booktitle = {Proceedings of the 2nd ACM Symposium on Cloud Computing},
series = {SOCC '11},
year = {2011},
isbn = {978-1-4503-0976-9},
location = {Cascais, Portugal},
pages = {25:1--25:8},
articleno = {25},
numpages = {8},
url = {http://doi.acm.org/10.1145/2038916.2038941},
doi = {10.1145/2038916.2038941},
acmid = {2038941},
publisher = {ACM},
address = {New York, NY, USA},
keywords = {Akaros, custom OS, datacenter},
}
@inproceedings{Singla:2011:JND,
author = {Singla, Ankit and Hong, Chi-Yao and Popa, Lucian and Godfrey, P. Brighten},
title = {Jellyfish: networking data centers, randomly},
booktitle = {Proceedings of the 3rd USENIX conference on Hot topics in cloud computing},
series = {HotCloud '11},
year = {2011},
location = {Portland, OR},
pages = {12--12},
numpages = {1},
url = {http://dl.acm.org/citation.cfm?id=2170444.2170456},
acmid = {2170456},
publisher = {USENIX Association},
address = {Berkeley, CA, USA},
}
@inproceedings{Mudigonda:2011:TFC,
author = {Mudigonda, Jayaram and Yalagandula, Praveen and Mogul, Jeffrey C.},
title = {Taming the flying cable monster: a topology design and optimization framework for data-center networks},
booktitle = {Proceedings of the 2011 USENIX annual technical conference},
series = {USENIX ATC '11},
year = {2011},
location = {Portland, OR},
pages = {8--8},
numpages = {1},
url = {http://dl.acm.org/citation.cfm?id=2002181.2002189},
acmid = {2002189},
publisher = {USENIX Association},
address = {Berkeley, CA, USA},
}
@inproceedings{Chen:2010:GAA,
author = {Chen, Kai and Guo, Chuanxiong and Wu, Haitao and Yuan, Jing and Feng, Zhenqian and Chen, Yan and Lu, Songwu and Wu, Wenfei},
title = {Generic and automatic address configuration for data center networks},
booktitle = {Proceedings of the ACM SIGCOMM 2010 conference},
series = {SIGCOMM '10},
year = {2010},
isbn = {978-1-4503-0201-2},
location = {New Delhi, India},
pages = {39--50},
numpages = {12},
url = {http://doi.acm.org/10.1145/1851182.1851190},
doi = {10.1145/1851182.1851190},
acmid = {1851190},
publisher = {ACM},
address = {New York, NY, USA},
keywords = {address configuration, data center networks, graph isomorphism},
}
@inproceedings{Mudigonda:2010:SCD,
author = {Mudigonda, Jayaram and Yalagandula, Praveen and Al-Fares, Mohammad and Mogul, Jeffrey C.},
title = {{SPAIN: COTS data-center Ethernet for multipathing over arbitrary topologies}},
booktitle = {Proceedings of the 7th USENIX conference on Networked systems design and implementation},
series = {NSDI '10},
year = {2010},
location = {San Jose, California},
pages = {18--18},
numpages = {1},
url = {http://dl.acm.org/citation.cfm?id=1855711.1855729},
acmid = {1855729},
publisher = {USENIX Association},
address = {Berkeley, CA, USA},
}
@inproceedings{Vattikonda:2012:PTD,
author = {Vattikonda, Bhanu Chandra and Porter, George and Vahdat, Amin and Snoeren, Alex C.},
title = {{Practical TDMA for datacenter ethernet}},
booktitle = {Proceedings of the 7th ACM european conference on Computer Systems},
series = {EuroSys '12},
year = {2012},
isbn = {978-1-4503-1223-3},
location = {Bern, Switzerland},
pages = {225--238},
numpages = {14},
url = {http://doi.acm.org/10.1145/2168836.2168859},
doi = {10.1145/2168836.2168859},
acmid = {2168859},
publisher = {ACM},
address = {New York, NY, USA},
keywords = {TDMA, datacenter, ethernet},
}
@inproceedings{Akhshabi:2011:ELP,
author = {Akhshabi, Saamer and Dovrolis, Constantine},
title = {The evolution of layered protocol stacks leads to an hourglass-shaped architecture},
booktitle = {Proceedings of the ACM SIGCOMM 2011 conference},
series = {SIGCOMM '11},
year = {2011},
isbn = {978-1-4503-0797-0},
location = {Toronto, Ontario, Canada},
pages = {206--217},
numpages = {12},
url = {http://doi.acm.org/10.1145/2018436.2018460},
doi = {10.1145/2018436.2018460},
acmid = {2018460},
publisher = {ACM},
address = {New York, NY, USA},
keywords = {evolution, evolutionary kernels, future internet, internet architecture, layering, network science},
}
@inproceedings{Zaharia:2008:IMP,
author = {Zaharia, Matei and Konwinski, Andy and Joseph, Anthony D. and Katz, Randy and Stoica, Ion},
title = {{Improving MapReduce performance in heterogeneous environments}},
booktitle = {Proceedings of the 8th USENIX conference on Operating systems design and implementation},
series = {OSDI '08},
year = {2008},
location = {San Diego, California},
pages = {29--42},
numpages = {14},
url = {http://dl.acm.org/citation.cfm?id=1855741.1855744},
acmid = {1855744},
publisher = {USENIX Association},
address = {Berkeley, CA, USA},
}
@inproceedings{Kandula:2009:NDC,
author = {Kandula, Srikanth and Sengupta, Sudipta and Greenberg, Albert and Patel, Parveen and Chaiken, Ronnie},
title = {The nature of data center traffic: measurements \& analysis},
booktitle = {Proceedings of the 2009 Internet measurement conference},
series = {IMC '09},
year = {2009},
isbn = {978-1-60558-771-4},
location = {Chicago, Illinois, USA},
pages = {202--208},
numpages = {7},
url = {http://doi.acm.org/10.1145/1644893.1644918},
doi = {10.1145/1644893.1644918},
acmid = {1644918},
publisher = {ACM},
address = {New York, NY, USA},
keywords = {characterization, data center traffic, models, tomography},
}
@inproceedings{Chen:2009:UTI,
author = {Chen, Yanpei and Griffith, Rean and Liu, Junda and Katz, Randy H. and Joseph, Anthony D.},
title = {{Understanding TCP incast throughput collapse in datacenter networks}},
booktitle = {Proceedings of the 1st ACM workshop on Research on enterprise networking},
series = {WREN '09},
year = {2009},
isbn = {978-1-60558-443-0},
location = {Barcelona, Spain},
pages = {73--82},
numpages = {10},
url = {http://doi.acm.org/10.1145/1592681.1592693},
doi = {10.1145/1592681.1592693},
acmid = {1592693},
publisher = {ACM},
address = {New York, NY, USA},
keywords = {TCP, incast, throughput collapse, unix},
}
@inproceedings{Benson:2010:NTC,
author = {Benson, Theophilus and Akella, Aditya and Maltz, David A.},
title = {Network traffic characteristics of data centers in the wild},
booktitle = {Proceedings of the 10th annual conference on Internet measurement},
series = {IMC '10},
year = {2010},
isbn = {978-1-4503-0483-2},
location = {Melbourne, Australia},
pages = {267--280},
numpages = {14},
url = {http://doi.acm.org/10.1145/1879141.1879175},
doi = {10.1145/1879141.1879175},
acmid = {1879175},
publisher = {ACM},
address = {New York, NY, USA},
keywords = {characterization, data center traffic},
}
@ARTICLE{Katz:2009:TTB,
author={Katz, R.H.},
journal={Spectrum, IEEE}, title={Tech Titans Building Boom},
year={2009},
month={February},
volume={46},
number={2},
pages={40 -54},
keywords={Amazon;Google;Internet powerhouse;Microsoft;Yahoo;cloud computing;computer facilities;Internet;computer centres;},
doi={10.1109/MSPEC.2009.4768855},
ISSN={0018-9235},}
@inproceedings{Benson:2009:UDC,
author = {Benson, Theophilus and Anand, Ashok and Akella, Aditya and Zhang, Ming},
title = {Understanding data center traffic characteristics},
booktitle = {Proceedings of the 1st ACM workshop on Research on enterprise networking},
series = {WREN '09},
year = {2009},
isbn = {978-1-60558-443-0},
location = {Barcelona, Spain},
pages = {65--72},
numpages = {8},
url = {http://doi.acm.org/10.1145/1592681.1592692},
doi = {10.1145/1592681.1592692},
acmid = {1592692},
publisher = {ACM},
address = {New York, NY, USA},
keywords = {data center traffic, traffic modeling},
}
@inproceedings{Kandula:2009:FTD,
author = {Srikanth Kandula and Jitendra Padhye and Paramvir Bahl},
title = {Flyways To De-Congest Data Center Networks},
booktitle = {Proceedings of the Eighth ACM SIGCOMM Workshop on Hot Topics in Networks},
series = {Hotnets '09},
year = {2009}
}
@inproceedings{Isard:2009:QFS,
author = {Isard, Michael and Prabhakaran, Vijayan and Currey, Jon and Wieder, Udi and Talwar, Kunal and Goldberg, Andrew},
title = {Quincy: fair scheduling for distributed computing clusters},
booktitle = {Proceedings of the ACM SIGOPS 22nd symposium on Operating systems principles},
series = {SOSP '09},
year = {2009},
isbn = {978-1-60558-752-3},
location = {Big Sky, Montana, USA},
pages = {261--276},
numpages = {16},
url = {http://doi.acm.org/10.1145/1629575.1629601},
doi = {10.1145/1629575.1629601},
acmid = {1629601},
publisher = {ACM},
address = {New York, NY, USA},
keywords = {cluster scheduling, dryad, fair scheduling, mapreduce, network flow scheduling},
}
@inproceedings{Abu-Libdeh:2010:SRF,
author = {Abu-Libdeh, Hussam and Costa, Paolo and Rowstron, Antony and O'Shea, Greg and Donnelly, Austin},
title = {Symbiotic routing in future data centers},
booktitle = {Proceedings of the ACM SIGCOMM 2010 conference},
series = {SIGCOMM '10},
year = {2010},
isbn = {978-1-4503-0201-2},
location = {New Delhi, India},
pages = {51--62},
numpages = {12},
url = {http://doi.acm.org/10.1145/1851182.1851191},
doi = {10.1145/1851182.1851191},
acmid = {1851191},
publisher = {ACM},
address = {New York, NY, USA},
keywords = {data centers, key-value stores, routing protocols},
}
@InProceedings{Costa:2012:CEI,
author = {Paolo Costa and Austin Donnelly and Antony
Rowstron and Greg O'Shea},
title = {{Camdoop: Exploiting In-Network Aggregation
for Big Data Applications}},
booktitle = {Proceedings of the 9$^{th}$ USENIX Symposium
on Networked Systems Design and Implementation (NSDI '12)},
year = {2012},
address = {San Jose, CA, US},
month = {April},
publisher = {Usenix},
}
@inproceedings{Yu:2009:DAD,
author = {Yu, Yuan and Gunda, Pradeep Kumar and Isard, Michael},
title = {Distributed aggregation for data-parallel computing: interfaces and implementations},
booktitle = {Proceedings of the ACM SIGOPS 22nd symposium on Operating systems principles},
series = {SOSP '09},
year = {2009},
isbn = {978-1-60558-752-3},
location = {Big Sky, Montana, USA},
pages = {247--260},
numpages = {14},
url = {http://doi.acm.org/10.1145/1629575.1629600},
doi = {10.1145/1629575.1629600},
acmid = {1629600},
publisher = {ACM},
address = {New York, NY, USA},
keywords = {cloud computing, concurrency, distributed programming},
}
@inproceedings{Heller:2010:ESE,
author = {Heller, Brandon and Seetharaman, Srini and Mahadevan, Priya and Yiakoumis, Yiannis and Sharma, Puneet and Banerjee, Sujata and McKeown, Nick},
title = {ElasticTree: saving energy in data center networks},
booktitle = {Proceedings of the 7th USENIX conference on Networked systems design and implementation},
series = {NSDI '10},
year = {2010},
location = {San Jose, California},
pages = {17--17},
numpages = {1},
url = {http://dl.acm.org/citation.cfm?id=1855711.1855728},
acmid = {1855728},
publisher = {USENIX Association},
address = {Berkeley, CA, USA},
}
@article{Greenberg:2008:CCR,
author = {Greenberg, Albert and Hamilton, James and Maltz, David A. and Patel, Parveen},
title = {The cost of a cloud: research problems in data center networks},
journal = {SIGCOMM Computer Communication Review},
issue_date = {January 2009},
volume = {39},
number = {1},
month = dec,
year = {2008},
issn = {0146-4833},
pages = {68--73},
numpages = {6},
url = {http://doi.acm.org/10.1145/1496091.1496103},
doi = {10.1145/1496091.1496103},
acmid = {1496103},
publisher = {ACM},
address = {New York, NY, USA},
keywords = {cloud-service data centers, costs, network challenges},
}
@ARTICLE{Henderson:1999:TPF,
author={Henderson, T.R. and Katz, R.H.},
journal={Selected Areas in Communications, IEEE Journal on},
title={{Transport protocols for Internet-compatible satellite networks}},
year={1999},
month={feb},
volume={17},
number={2},
pages={326 -344},
keywords={GEO;Internet traffic traces;Internet-compatible satellite networks;LEO;TCP;Web cache;asymmetry;bandwidth;congestion;experiments;file transfer;geostationary orbit;high error rates;latency;low-altitude Earth orbit;network impairments;performance;proxy;satellite gateway;satellite transport protocol;simulation;split connection;traffic models;transmission control protocol;Internet;digital simulation;performance evaluation;satellite communication;telecommunication traffic;transport protocols;},
doi={10.1109/49.748815},
ISSN={0733-8716},}
@inproceedings{Clark:1988:DPD,
author = {Clark, D.},
title = {{The design philosophy of the DARPA Internet protocols}},