-
Notifications
You must be signed in to change notification settings - Fork 30
/
research.html
1204 lines (1109 loc) · 73.5 KB
/
research.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
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
---
layout: default
title: Research Publications and Technical Information
---
<div class="container-xxl">
<div class="row justify-content-center">
<div class="col-12 col-sm-11 col-md-9 col-lg-8">
<hr class="w-100"/>
<div>
<a href="#overview">Overview</a>
<a href="#match">Matchmaking and ClassAds</a>
<a href="#workflow">Workflow and DAGMan</a>
<a href="#resource">Resource Management</a>
<a href="#checkpoint">Checkpointing</a>
<a href="#data_intensive">Data Intensive Computing</a>
<a href="#grid">Grid Computing</a>
<a href="#mw">Master-Worker</a>
<a href="#java">Java</a>
<a href="#remote">Remote Execution and Interposition Agents</a>
<a href="#security">Security</a>
<a href="#scalability">Scalability and Performance</a>
<a href="#experience">Experience</a>
<a href="#science">Scientific Applications</a>
<a href="#scheduling">Scheduling</a>
<a href="#background">Background Work</a>
<a href="#miscellaneous">Miscellaneous</a>
<a href="#nmi">NMI Build & Test</a>
<a href="#dissertations">PhD Dissertations</a>
</div>
<hr class="w-100" />
</div>
</div>
</div>
<div class="container-xxl mb-4">
<div class="row justify-content-center">
<div class="col-12 col-sm-11 col-md-9 col-lg-8">
<span id="overview"></span>
<h3>Overview</h3>
<ul>
<li>
Douglas Thain, Todd Tannenbaum, and Miron Livny,
"Distributed Computing in Practice: The Condor Experience"
<em>Concurrency and Computation: Practice and Experience</em>,
Vol. 17, No. 2-4, pages 323-356, February-April, 2005.
<a href="{{ '/doc/condor-practice.pdf' | relative_url }}">[PDF]</a>
<a href="{{ '/doc/condor-bibtex.html#condor-practice' | relative_url }}">[BibTeX Source for Citation]</a>
</li>
<li>
Douglas Thain and Miron Livny,
"Building Reliable Clients and Servers",
in Ian Foster and Carl Kesselman, editors,
<em>The Grid: Blueprint for a New Computing Infrastructure</em>,
Morgan Kaufmann, 2003, 2nd edition. ISBN: 1-55860-933-4.
<a href="{{ '/doc/grid2-ch19.pdf' | relative_url }}">[PDF]</a>
<a href="{{ '/doc/condor-bibtex.html#grid2-ch19' | relative_url }}">[BibTeX Source for Citation]</a>
</li>
<li>
Douglas Thain, Todd Tannenbaum, and Miron Livny,
"Condor and the Grid",
in Fran Berman, Anthony J.G. Hey, Geoffrey Fox, editors,
<em>Grid Computing: Making The Global Infrastructure a Reality</em>,
John Wiley, 2003.
ISBN: 0-470-85319-0
<a href="http://media.wiley.com/product_data/excerpt/90/04708531/0470853190.pdf">[PDF]</a>
<!-- Moved <a href="http://www.wiley.com/cda/cover/0,,0470853190|excerpt,00.pdf">[PDF]</a>-->
<a href="{{ '/doc/condor-bibtex.html#grid%20chapter%201' | relative_url }}">[BibTeX Source for Citation]</a>
</li>
<li>
Todd Tannenbaum, Derek Wright, Karen Miller, and Miron Livny,
"Condor - A Distributed Job Scheduler",
in Thomas Sterling, editor,
<em>Beowulf Cluster Computing with Linux</em>,
The MIT Press, 2002.
ISBN: 0-262-69274-0
<a href="{{ '/doc/beowulf-chapter-rev1.ps' | relative_url }}">[Postscript]</a>
<a href="{{ '/doc/beowulf-chapter-rev1.pdf' | relative_url }}">[PDF]</a>
<a href="{{ '/doc/condor-bibtex.html#beowulfbook-condor' | relative_url }}">[BibTeX Source for Citation]</a>
<a href="https://mitpress.mit.edu/">[MIT Press' Web Page]</a>
The MIT Press is pleased to present material from a preliminary draft of
<em>Beowulf Cluster Computing with Linux</em>.
This material is Copyright 2002 Massachusetts Institute of Technology, and
may not be used or distributed for any commercial purpose without the
express written consent of The MIT Press. Because
this material was a draft chapter, neither
The MIT Press nor the authors can be held liable for changes or
alternations in the final edition.
</li>
<li>
Jim Basney and Miron Livny,
"Deploying a High Throughput Computing Cluster",
<em>High Performance Cluster Computing</em>, Rajkumar Buyya, Editor,
Vol. 1, Chapter 5, Prentice Hall PTR, May 1999.
<a href="{{ '/doc/hpcc-chapter.ps' | relative_url }}">[Postscript]</a>
<a href="{{ '/doc/hpcc-chapter.pdf' | relative_url }}">[PDF]</a>
<a href="{{ '/doc/condor-bibtex.html#htc-deployment-chapter' | relative_url }}">[BibTeX Source for Citation]</a>
</li>
<li>
Miron Livny, Jim Basney, Rajesh Raman, and Todd Tannenbaum,
"Mechanisms for High Throughput Computing",
<em>SPEEDUP Journal</em>, Vol. 11, No. 1, June 1997.
<a href="{{ '/doc/htc_mech.ps' | relative_url }}">[Postscript]</a>
<a href="{{ '/doc/htc_mech.pdf' | relative_url }}">[PDF]</a>
<a href="{{ '/doc/condor-bibtex.html#htc-mechanisms' | relative_url }}">[BibTeX Source for Citation]</a>
</li>
<li>
Jim Basney, Miron Livny, and Todd Tannenbaum,
"High Throughput Computing with Condor",
<em>HPCU news</em>, Volume 1(2), June 1997.
<!-- This link disabled, as the hpcu domain has been claimed by someone else.
<a href="http://www.hpcu.org/hpcunews/vol1/issue2/condor.html">[Postscript]</a>
-->
</li>
<li>
D. H. J Epema, Miron Livny, R. van Dantzig, X. Evers, and Jim Pruyne,
"A Worldwide Flock of Condors : Load Sharing among Workstation Clusters"
<em>Journal on Future Generations of Computer Systems</em>, Volume 12, 1996
<a href="{{ '/doc/flock.ps' | relative_url }}">[Postscript]</a>
<a href="{{ '/doc/flock.pdf' | relative_url }}">[PDF]</a>
<a href="{{ '/doc/condor-bibtex.html#condor-flock' | relative_url }}">[BibTeX Source for Citation]</a>
</li>
<li>
Scott Fields,
"Hunting for Wasted Computing Power",
1993 Research Sampler, University of Wisconsin-Madison.
<a href="{{ '/doc/WiscIdea.html' | relative_url }}">[HTML]</a>
</li>
<li>
Michael Litzkow, Miron Livny, and Matt Mutka,
"Condor - A Hunter of Idle Workstations",
<em> Proceedings of the 8th International Conference of Distributed Computing Systems, </em>
pages 104-111, June, 1988.
<a href="{{ '/doc/icdcs1988.pdf' | relative_url }}">[PDF]</a>
<a href="{{ '/doc/condor-bibtex.html#condor-hunter' | relative_url }}">[BibTeX Source for Citation]</a>
</li>
<li>
Michael Litzkow,
"Remote Unix - Turning Idle Workstations into Cycle Servers",
<em>Proceedings of Usenix Summer Conference</em>, pages 381-384, 1987.
<a href="{{ '/doc/remoteunix.ps' | relative_url }}">[Postscript]</a>
<a href="{{ '/doc/remoteunix.pdf' | relative_url }}">[PDF]</a>
<a href="{{ '/doc/condor-bibtex.html#litzkow-cycles' | relative_url }}">[BibTeX Source for Citation]</a>
</li>
</ul>
<span id="match"></span>
<h3>Matchmaking and ClassAds</h3>
<ul>
<li>
Nicholas Coleman, "Distributed Policy Specification and Interpretation with
Classified Advertisements", Practical Aspects of Declarative Languages, Lecture
Notes in Computer Science Volume 7149, 2012, pp 198-211, January 2012.
<a href="{{ '/doc/distributed_policy_2012.pdf' | relative_url }}">[PDF]</a>
</li>
<li>
Rajesh Raman, Miron Livny, and Marvin Solomon,
"Policy Driven Heterogeneous Resource Co-Allocation with Gangmatching",
Proceedings of the Twelfth IEEE International Symposium on
High-Performance Distributed Computing, June, 2003, Seattle, WA
<a href="{{ '/doc/gangmatching-hpdc12.ps' | relative_url }}">[Postscript]</a>
<a href="{{ '/doc/gangmatching-hpdc12.pdf' | relative_url }}">[PDF]</a>
</li>
<li>
Nicholas Coleman, Rajesh Raman, Miron Livny and Marvin Solomon,
"Distributed Policy Management and Comprehension with Classified
Advertisements",
University of Wisconsin-Madison Computer Sciences Technical Report #1481,
April 2003.
<a href="{{ '/doc/ncoleman_tr1481.ps' | relative_url }}">[Postscript]</a>
<a href="{{ '/doc/ncoleman_tr1481.pdf' | relative_url }}">[PDF]</a>
<a href="{{ '/doc/condor-bibtex.html#ncoleman-tr1481' | relative_url }}">[BibTeX Source for Citation]</a>
</li>
<li>
Nicholas Coleman, "An Implementation of Matchmaking Analysis in Condor",
<em>Masters' Project report</em>,University of Wisconsin, Madison, May 2001.
<a href="{{ '/doc/match_analysis.ps' | relative_url }}">[Postscript]</a>
<a href="{{ '/doc/match_analysis.pdf' | relative_url }}">[PDF]</a>
<a href="{{ '/doc/condor-bibtex.html#ncoleman-mr' | relative_url }}">[BibTeX Source for Citation]</a>
</li>
<li>
Rajesh Raman, Miron Livny, and Marvin Solomon,
"Resource Management through Multilateral Matchmaking",
<em>Proceedings of the Ninth IEEE Symposium on High Performance Distributed Computing (HPDC9)</em>,
Pittsburgh, Pennsylvania, August 2000, pp 290-291.
<a href="{{ '/doc/gangmatching.ps' | relative_url }}">[Postscript]</a>
<a href="{{ '/doc/gangmatching.pdf' | relative_url }}">[PDF]</a>
<a href="{{ '/doc/condor-bibtex.html#raman-hpdc9' | relative_url }}">[BibTeX Source for Citation]</a>
</li>
<li>
Rajesh Raman, Miron Livny, and Marvin Solomon,
"Matchmaking: Distributed Resource Management for High Throughput Computing",
<em>Proceedings of the Seventh IEEE International Symposium on High Performance Distributed Computing</em>, July 28-31, 1998, Chicago, IL.
<a href="{{ '/doc/hpdc98.ps' | relative_url }}">[Postscript]</a>
<a href="{{ '/doc/hpdc98.pdf' | relative_url }}">[PDF]</a>
<a href="{{ '/doc/condor-bibtex.html#raman-hpdc7' | relative_url }}">[BibTeX Source for Citation]</a>
</li>
</ul>
<span id="workflow"></span>
<h3>Workflow and DAGMan</h3>
<ul>
<li>Peter Couvares, Tevik Kosar, Alain Roy, Jeff Weber and Kent
Wenger, "Workflow in Condor", in <em>In Workflows for e-Science</em>, Editors: I.Taylor, E.Deelman, D.Gannon,
M.Shields, Springer Press, January 2007 (ISBN: 1-84628-519-4)
<a href="{{ '/doc/workflow_condor_2007.pdf' | relative_url }}">[PDF]</a>
</li>
</ul>
<span id="resource"></span>
<h3>Resource Management</h3>
<ul>
<li>
Zhe Zhang, Brian Bockelman, Dale Carder, and Todd Tannenbaum,
"Lark: Bringing Network Awareness to High Throughput Computing",
<em>Proceedings of the 15th IEEE/ACM International Symposium on Cluster, Cloud and Grid Computing (CCGrid 2015)</em>, Shenzhen, Guangdong, China, May 2015.
<a href="{{ '/doc/lark-ccgrid2015.pdf' | relative_url }}">[PDF]</a>
</li>
<li>
Jim Basney and Miron Livny,
"Managing Network Resources in Condor",
<em>Proceedings of the Ninth IEEE Symposium on High Performance Distributed Computing (HPDC9)</em>,
Pittsburgh, Pennsylvania, August 2000, pp 298-299.
<a href="{{ '/doc/netman-hpdc9.ps' | relative_url }}">[Postscript]</a>
<a href="{{ '/doc/netman-hpdc9.pdf' | relative_url }}">[PDF]</a>
<a href="{{ '/doc/condor-bibtex.html#basney-hpdc9' | relative_url }}">[BibTeX Source for Citation]</a>
</li>
<li>
Jim Basney and Miron Livny,
"Improving Goodput by Co-scheduling CPU and Network Capacity",
<em>International Journal of High Performance Computing Applications</em>,
Volume 13(3), Fall 1999.
<a href="{{ '/doc/goodput.ps' | relative_url }}">[Postscript]</a>
<a href="{{ '/doc/goodput.pdf' | relative_url }}">[PDF]</a>
<a href="{{ '/doc/condor-bibtex.html#basney-goodput' | relative_url }}">[BibTeX Source for Citation]</a>
</li>
<li>
Miron Livny and Rajesh Raman,
"High Throughput Resource Management",
chapter 13 in <em>The Grid: Blueprint for a New Computing Infrastructure</em>,
Morgan Kaufmann, San Francisco, California, 1999.
<a href="{{ '/doc/hpdc-chapter.ps' | relative_url }}">[Postscript]</a>
<a href="{{ '/doc/hpdc-chapter.pdf' | relative_url }}">[PDF]</a>
<a href="{{ '/doc/condor-bibtex.html#gridbook-htc' | relative_url }}">[BibTeX Source for Citation]</a>
Morgan Kaufmann is pleased to present material from a preliminary draft of
<em>High Performance Distributed Computing: Building a Computational Grid</em>;
the material is Copyright 1997 Morgan Kaufmann Publishers. This
material may not be used or distributed for any commercial purpose without the
express written consent of Morgan Kaufmann Publishers. Please note that
this material is a draft of forthcoming publication, and as such neither
Morgan Kaufmann nor the author can be held liable for changes or
alternations in the final edition.
</li>
<li>
Matt Mutka and Miron Livny,
"The Available Capacity of a Privately Owned Workstation Environment",
<em>Performance Evaluation</em>, vol. 12, no. 4 pp. 269-284, July, 1991.
<a href="{{ '/doc/condor-bibtex.html#mutka-pe' | relative_url }}">[BibTeX Source for Citation]</a>
</li>
<li>
Matt Mutka and Miron Livny,
"Profiling Workstations' Available Capacity for Remote Execution",
<em>Performance '87</em>,12th IFIP WG 7.3, pp. 529-544, December 1987.
<A href="{{ '/doc/profiling_availability.pdf' | relative_url }}">[PDF]</A>
<a href="{{ '/doc/condor-bibtex.html#mutka-p87' | relative_url }}">[BibTeX Source for Citation]</a>
</li>
</ul>
<span id="checkpoint"></span>
<h3>Checkpointing</h3>
<ul>
<li>
Joe Meehean and Miron Livny,
"A Service Migration Case Study: Migrating the Condor Schedd",
<em>Midwest Instruction and Computing Symposium</em>, April 2005.
<a href="{{ '/doc/schedd-migration-mics.ps' | relative_url }}">[Postscript]</a>
<a href="{{ '/doc/schedd-migration-mics.pdf' | relative_url }}">[PDF]</a>
<a href="{{ '/doc/condor-bibtex.html#meehean-mics2005' | relative_url }}">[BibTeX Source for Citation]</a>
</li>
<li>
Jim Basney, Miron Livny, and Paolo Mazzanti,
"Utilizing Widely Distributed Computational Resources Efficiently with Execution Domains",
<em>Computer Physics Communications</em>, 2001.
(This is an extended version of the CHEP 2000 paper below.)
<a href="{{ '/doc/cpc.ps' | relative_url }}">[Postscript]</a>
<a href="{{ '/doc/cpc.pdf' | relative_url }}">[PDF]</a>
<a href="{{ '/doc/condor-bibtex.html#basney-cpc' | relative_url }}">[BibTeX Source for Citation]</a>
</li>
<li>
Jim Basney, Miron Livny, and Paolo Mazzanti,
"Harnessing the Capacity of Computational Grids for High Energy Physics",
<em>Proceedings of the International Conference on Computing in High Energy and
Nuclear Physics (CHEP 2000)</em>,
February 2000, Padova, Italy.
<a href="{{ '/doc/exec-domains.ps' | relative_url }}">[Postscript]</a>
<a href="{{ '/doc/exec-domains.pdf' | relative_url }}">[PDF]</a>
<a href="{{ '/doc/condor-bibtex.html#basney-chep2000' | relative_url }}">[BibTeX Source for Citation]</a>
</li>
<li>
Michael Litzkow, Todd Tannenbaum, Jim Basney, and Miron Livny,
"Checkpoint and Migration of UNIX Processes in the Condor Distributed Processing System",
University of Wisconsin-Madison Computer Sciences Technical Report #1346,
April 1997.
<a href="{{ '/doc/ckpt97.ps' | relative_url }}">[Postscript]</a>
<a href="{{ '/doc/ckpt97.pdf' | relative_url }}">[PDF]</a>
<a href="{{ '/doc/condor-bibtex.html#litzkow-tr1346' | relative_url }}">[BibTeX Source for Citation]</a>
</li>
<li>
Jim Pruyne and Miron Livny,
"Managing Checkpoints for Parallel Programs",
Workshop on Job Scheduling Strategies for Parallel Processing IPPS '96.
<a href="{{ '/doc/ckpt_mgmt.ps' | relative_url }}">[Postscript]</a>
<a href="{{ '/doc/ckpt_mgmt.pdf' | relative_url }}">[PDF]</a>
<a href="{{ '/doc/condor-bibtex.html#pruyne-ipps96' | relative_url }}">[BibTeX Source for Citation]</a>
</li>
<li>
Todd Tannenbaum and Michael Litzkow,
"Checkpointing and Migration of UNIX Processes in the Condor Distributed Processing System",
<em>Dr Dobbs Journal</em>, Feb 1995.
<a href="http://www.ddj.com/184409496;jsessionid=0KNAZGZXTH0RMQSNDLPSKH0CJUNN2JVN?pgno=8">[HTML]</a>
<a href="{{ '/doc/dobbs_95.ps' | relative_url }}">[Postscript]</a>
<a href="{{ '/doc/condor-bibtex.html#tannenba-dobbs' | relative_url }}">[BibTeX Source for Citation]</a>
</li>
<li>
Michael Litzkow and Marvin Solomon,
"Supporting Checkpointing and Process Migration Outside the UNIX Kernel",
<em>Usenix Conference Proceedings</em>,
San Francisco, CA, January 1992, pages 283-290.
<a href="{{ '/doc/usenix_1.92.ps' | relative_url }}">[Postscript]</a>
<a href="{{ '/doc/usenix_1.92.pdf' | relative_url }}">[PDF]</a>
<a href="{{ '/doc/condor-bibtex.html#litzkow-usenix' | relative_url }}">[BibTeX Source for Citation]</a>
</li>
</ul>
<span id="data_intensive"></span>
<h3>Data Intensive Computing</h3>
<ul>
<li>
Parag Mhashilkar, Zachary Miller, Rajkumar Kettimuthu, Gabriele Garzoglio, Burt
Holzman, Cathrin Weiss, Xi Duan, and Lukasz Lacinski, "End-To-End Solution for
Integrated Workload and Data Management using GlideinWMS and Globus Online",
<em>Journal of Physics: Conference Series, Volume 396, Issue 3, Year 2012</em>
<a href = "doc/globus-online-JPhysics-2012.pdf">[PDF]</a>
</li>
<li>
Ian T. Foster, Josh Boverhof, Ann Chervenak, Lisa Childers, Annette DeSchoen,
Gabriele Garzoglio, Dan Gunter, Burt Holzman, Gopi Kandaswamy, Raj Kettimuthu,
Jack Kordas, Miron Livny, Stuart Martin, Parag Mhashilkar, Zachary Miller,
Taghrid Samak, Mei-Hui Su, Steven Tuecke, Vanamala Venkataswamy, Craig Ward,
Cathrin Weiss,
"Reliable high-performance data transfer via Globus Online",
<em>in Proc. SciDAC 2011, Denver, CO, July 10-14.</em>
<a href = "doc/globus-online-SciDAC-2011.pdf">[PDF]</a>
</li>
<li>
Ann Chervenak, Ewa Deelman, Miron Livny, Mei-Hui Su, Rob Schuler, Shishir Bharathi, Gaurang Mehta, Karan Vahi,
"Data Placement for Scientific Applications in Distributed Environments",
In <em> Proceedings of the 8th IEEE/ACM International Conference on Grid
Computing (Grid 2007)</em>, Austin, TX, September 2007.
<a href = "doc/grid2007.pdf">[PDF]</a>
<a href="{{ '/doc/condor-bibtex.html#chervenak-grid2007' | relative_url }}">[BibTeX Source for Citation]</a>
</li>
<li>
George Kola, Tevfik Kosar, Jaime Frey, Miron Livny, Robert J. Brunner and Michael Remijan,
"DISC: A System for Distributed Data Intensive Scientific Computing",
In <em> Proceedings of the First Workshop on Real, Large Distributed Systems (WORLDS'04)</em>, San Francisco, CA, December 2004, in conjunction with OSDI'04
<a href = "doc/disc-worlds2004.ps">[PostScript]</a>
<a href = "doc/disc-worlds2004.pdf">[PDF]</a>
</li>
<li>
George Kola, Tevfik Kosar and Miron Livny,
"Profiling Grid Data Transfer Protocols and Servers",
In Euro-Par 2004, Pisa, Italy, September 2004.
<a href = "doc/profiling-europar2004.pdf">[PDF]</a>
<a href="{{ '/doc/condor-bibtex.html#profiling-europar2004' | relative_url }}">[BibTeX Source for Citation]</a>
</li>
<li>
George Kola, Tevfik Kosar and Miron Livny,
"A Fully Automated Fault-tolerant System for Distributed Video Processing and Off-site Replication",
In <a href = "http://www.nossdav.org/2004/">
The 14th ACM International Workshop on Network and Operating Systems Support for Digital Audio and Video (NOSSDAV 2004)</a>, Kinsale, Ireland, June 2004.
<a href = "doc/video_pipeline-nossdav2004.pdf">[PDF]</a>
<a href="{{ '/doc/condor-bibtex.html#kola-nossdav2004' | relative_url }}">[BibTeX Source for Citation]</a>
</li>
<li>
George Kola, Tevfik Kosar and Miron Livny,
"Run-time Adaptation of Grid Data-placement Jobs",
In <em>Parallel and Distributed Computing Practices</em>, 2004.
<a href="{{ '/doc/runtime_adaptation-pdcp2004.pdf' | relative_url }}">[PDF]</a>
<a href="{{ '/doc/condor-bibtex.html#runtime-pdcp' | relative_url }}">[BibTeX Source for Citation]</a>
</li>
<li>
Tevfik Kosar and Miron Livny, "Stork: Making Data Placement a First Class Citizen in the Grid",
In <em>Proceedings of 24th IEEE Int. Conference on Distributed Computing Systems (ICDCS2004)</em>, Tokyo, Japan, March 2004.
<a href = "doc/stork-icdcs2004.pdf">[PDF]</a>
</li>
<li>
Tevfik Kosar, George Kola and Miron Livny, "A Framework for Self-optimising, Fault-tolerant, High Performance Bulk Data Transfers in a Heterogeneous Grid Environment",
<em>Proceedings of 2nd Int. Symposium on Parallel and Distributed Computing (ISPDC2003)</em>, Ljubljana, Slovenia, October 2003.
<a href="{{ '/doc/bulkdata_framework-ispdc2003.pdf' | relative_url }}">[PDF]</a>
<a href="{{ '/doc/condor-bibtex.html#kosar-ispdc2003' | relative_url }}">[BibTeX Source for Citation]</a>
</li>
<li>
George Kola, Tevfik Kosar and Miron Livny,
"Run-time Adaptation of Grid Data-placement Jobs",
<em>Proceedings of Int. Workshop on Adaptive Grid Middleware (AGridM2003)</em>, New Orleans, LA, September 2003.
<a href="{{ '/doc/runtime_adaptation-agridm2003.pdf' | relative_url }}">[PDF]</a>
<a href="{{ '/doc/condor-bibtex.html#runtime-agridm2003' | relative_url }}">[BibTeX Source for Citation]</a>
</li>
<li>
Tevfik Kosar, George Kola and Miron Livny,
"Building Data Pipelines for High Performance Bulk Data Transfers in a Heterogeneous Grid Environment",
<em>Technical Report CS-TR-2003-1487, University of Wisconsin-Madison Computer Sciences</em>, August 2003.
<a href="{{ '/doc/building_pipelines-TR1487.pdf' | relative_url }}">[PDF]</a>
</li>
</ul>
<span id="grid"></span>
<h3>Grid Computing</h3>
<ul>
<li>
C. Acosta-Silva, A. Delgado Peris, J. Flix, J. Frey, J.M. Hernández, A. Pérez-Calero Yzquierdo, and T. Tannenbaum
"Exploitation of network-segregated CPU resources in CMS",
<em>Proceedings of the 25th International Conference on Computing in High Energy and Nuclear Physics (CHEP 2021)</em>, May 2021.
<a href="{{ '/doc/epjconf_chep2021_02020.pdf' | relative_url }}">[PDF]</a>
</li>
<li>
Brian Bockelman, Miron Livny, Brian Lin, Francesco Prelz
"Principles, technologies, and time: The translational journey of the HTCondor-CE",
<em>Journal of Computational Science</em>, 2020
<a href="{{ '/doc/jocs20-principles.pdf' | relative_url }}">[PDF]</a>
<a href="{{ '/doc/condor-bibtex.html#jocs20-principles' | relative_url }}">[BibTeX Source for Citation]</a>
</li>
<li>
B Bockelman, T Cartwright, J Frey, E M Fajardo, B Lin, M Selmeci, T Tannenbaum and M Zvada
"Commissioning the HTCondor-CE for the Open Science Grid",
<em> Journal of Physics: Conference Series</em>, Vol. 664, 2015
<a href="{{ '/doc/jphys15-commissioning.pdf' | relative_url }}">[PDF]</a>
<a href="{{ '/doc/condor-bibtex.html#jphys15-commissioning' | relative_url }}">[BibTeX /Source for Citation]</a>
</li>
<li>
I Sfiligoi, D C Bradley, Z Miller, B Holzman, F Würthwein, J M Dost, K Bloom,
and C Grandi, "glideinWMS experience with glexec",
<em>Journal of Physics: Conference Series, Volume 396, Issue 3, Year 2012</em>
<a href = "doc/glideinWMS-JPhysics-2012.pdf">[PDF]</a>
</li>
<li>
W Andrews, B Bockelman, D Bradley, J Dost, D Evans, I Fisk, J Frey, B Holzman, M Livny, T Martin, A McCrea, A Melo, S Metson, H Pi, I Sfiligoi, P Sheldon, T Tannenbaum, A Tiradani, F Würthwein and D Weitzel,
"Early experience on using glideinWMS in the cloud",
<em> Journal of Physics: Conference Series</em>, Vol. 331, No. 6, 2011
<a href="{{ '/doc/jphys11-early-exerience.pdf' | relative_url }}">[PDF]</a>
<a href="{{ '/doc/condor-bibtex.html#jphys11-early-experience' | relative_url }}">[BibTeX Source for Citation]</a>
</li>
<li>
Igor Sfiligoi, Greg Quinn, Chris Green, Greg Thain,
"Pilot Job Accounting and Auditing in Open Science Grid",
The 9th IEEE/ACM International Conference on Grid Computing,
Tsukuba, Japan, 2008
<a href = "doc/grid-08-pilot-accounting.pdf">[PDF]</a>
</li>
<li>
Alexandru Iosup, Dick H.J. Epema, Todd Tannenbaum, Matthew Farrellee, Miron Livny,
"Inter-Operating Grids through Delegated MatchMaking",
in proceedings of the International Conference for High Performance
Computing, Networking, Storage and Analysis (SC07),
Reno, Nevada, November 2007.
<a href = "doc/SC07-Iosup.pdf">[PDF]</a>
<a href="{{ '/doc/condor-bibtex.html#SC07-Iosup' | relative_url }}">[BibTeX Source for Citation]</a>
</li>
<li>
Sander Klous, Jamie Frey, Se-Chang Son, Douglas Thain, Alain Roy,
Miron Livny, and Jo van den Brand, "Transparent Access to Grid
Resources for User Software", in <em>Concurrency and Computation:
Practice and Experience</em>, Volume 18, Issue 7, pages 787-801, 2006.
</li>
<li>
Sechang Son, Matthew Farrellee, and Miron Livny,
"A Generic Proxy Mechanism for Secure Middlebox Traversal",
CLUSTER 2005,
Boston, MA, September 26-30, 2005.
<a href = "doc/XRAY_paper.pdf">[PDF]</a>
<a href="{{ '/doc/condor-bibtex.html#Sonny-CLUSTER2005' | relative_url }}">[BibTeX Source for Citation]</a>
</li>
<li>
Bruce Beckles, Sechang Son, and John Kewley,
"Current methods for negotiating firewalls for the Condor system",
Proceedings of the 4th UK e-Science All Hands Meeting 2005,
Nottingham, UK, September 19-22, 2005.
<a href = "doc/CondorandFirewalls.pdf">[PDF]</a>
<a href="{{ '/doc/condor-bibtex.html#AHM2005' | relative_url }}">[BibTeX Source for Citation]</a>
</li>
<li>
Sechang Son, Bill Allcock and Miron Livny,
"CODO: Firewall Traversal by Cooperative On-Demand Opening",
Proceedings of the 14th IEEE Symposium on High Performance Distributed Computing (HPDC14),
Research Triangle Park, NC, July 24-27, 2005.
<a href = "doc/CODO-hpdc.pdf">[PDF]</a>
<a href = "doc/CODO-hpdc.doc">[MS Word]</a>
<a href="{{ '/doc/condor-bibtex.html#CODO-hpdc-2005' | relative_url }}">[BibTeX Source for Citation]</a>
</li>
<li>
Clovis Chapman, Paul Wilson, Todd Tannenbaum, Matthew Farrellee, Miron Livny, John Brodholt, and Wolfgang Emmerich,
"Condor services for the global grid: Interoperability between Condor and OGSA",
<em>Proceedings of the 2004 UK e-Science All Hands Meeting</em>, ISBN 1-904425-21-6, pages 870-877, Nottingham, UK, August 2004.
<a href = "doc/condor-ogsa-2004.pdf">[PDF]</a>
<a href="{{ '/doc/condor-bibtex.html#condor-ogsa-2004' | relative_url }}">[BibTeX Source for Citation]</a>
</li>
<li>
Clovis Chapman, Charaka Goonatilake, Wolfgang Emmerich, Matthew Farrellee, Todd Tannenbaum, Miron Livny, Mark Calleja, and Martin Dove,
"Condor BirdBath: Web Service interfaces to Condor",
<em>Proceedings of the 2005 UK e-Science All Hands Meeting</em>, ISBN 1-904425-53-4, pages 737-744, Nottingham, UK, September 2005.
<a href = "doc/birdbath.pdf">[PDF]</a>
<a href="{{ '/doc/condor-bibtex.html#birdbath2005' | relative_url }}">[BibTeX Source for Citation]</a>
</li>
<li>
Sriya Santhanam, Pradheep Elango, Andrea Arpaci-Dusseau, and Miron Livny,
"Deploying Virtual Machines as Sandboxes for the Grid",
WORLDS 2005, San Francisco, CA, December 2004
<a href="{{ '/doc/SandboxingWorlds053.pdf' | relative_url }}">[PDF]</a>
<a href="{{ '/doc/condor-bibtex.html#santhanam-worlds05' | relative_url }}">[BibTeX Source for Citation]</a>
</li>
<li>
George Kola, Tevfik Kosar and Miron Livny,
"Phoenix: Making Data-intensive Grid Applications Fault-tolerant",
In <em>Grid 2004</em>, Pittsburgh, PA, November 2004
<a href="{{ '/doc/phoenix-grid2004.ps' | relative_url }}">[PostScript]</a>
<a href="{{ '/doc/phoenix-grid2004.pdf' | relative_url }}">[PDF]</a>
</li>
<li>
Andrew Baranovski, Gabriele Garzoglio, Igor Terekhov, Alain Roy and Todd Tannenbaum,
"Management of Grid Jobs and Data within SAMGrid",
<em>Proceedings of the 2004 IEEE International Conference on Cluster Computing</em>,
pages 353-360,
San Diego, CA, September 2004.
<a href = "doc/samgrid-cluster2004.pdf">[PDF]</a>
<a href="{{ '/doc/condor-bibtex.html#samgrid-cluster2004' | relative_url }}">[BibTeX Source for Citation]</a>
</li>
<li>
George Kola, Tevfik Kosar and Miron Livny,
"A Client-centric Grid Knowledgebase",
<em>Proceedings of the 2004 IEEE International Conference on Cluster Computing</em>,
pages 431-438,
San Diego, CA, September 2004.
<a href = "doc/gridknowledgebase.ps">[PostScript]</a>
<a href = "doc/gridknowledgebase.pdf">[PDF]</a>
<a href="{{ '/doc/condor-bibtex.html#gridknowledgebase-cluster2004' | relative_url }}">[BibTeX Source for Citation]</a>
</li>
<li>
George Kola, Tevfik Kosar and Miron Livny,
"Profiling Grid Data Transfer Protocols and Servers",
In Euro-Par 2004</a>, Pisa, Italy, September 2004.
<a href = "doc/profiling-europar2004.pdf">[PDF]</a>
<a href="{{ '/doc/condor-bibtex.html#profiling-europar2004' | relative_url }}">[BibTeX Source for Citation]</a>
</li>
<li>
John Bent, Douglas Thain, Andrea Arpaci-Dusseau, Remzi Arpaci-Dusseau, and Miron Livny,
"Explicit Control in a Batch Aware Distributed File System",
<em>Proceedings of the First USENIX/ACM Conference on Networked Systems Design and Implementation</em>,
San Francisco, CA, March 2004.
<a href="{{ '/doc/badfs-nsdi04.ps' | relative_url }}">[Postscript]</a>
<a href="{{ '/doc/badfs-nsdi04.pdf' | relative_url }}">[PDF]</a>
<a href="{{ '/doc/condor-bibtex.html#badfs-nsdi04' | relative_url }}">[BibTeX Source for Citation]</a>
</li>
<li>
Sechang Son and Miron Livny, "Recovering Internet Symmetry in Distributed Computing",
<em>Proceedings of the 3rd International Symposium on Cluster Computing and the Grid</em>, Tokyo, Japan, May 2003.
<a href="{{ '/doc/CCGRID2003.pdf' | relative_url }}">[PDF]</a>
<a href="{{ '/doc/CCGRID2003.doc' | relative_url }}">[MS Word]</a>
<a href="{{ '/doc/condor-bibtex.html#son-ccgrid03' | relative_url }}">[BibTeX Source for Citation]</a>
</li>
<li>
Douglas Thain, John Bent, Andrea Arpaci-Dusseau, Remzi Arpaci-Dusseau and Miron Livny,
"Pipeline and Batch Sharing in Grid Workloads",
in Proceedings of the Twelfth IEEE Symposium on High Performance Distributed Computing,
Seattle, WA, 2003.
<a href="{{ '/doc/profiling.ps' | relative_url }}">[Postscript]</a>
<a href="{{ '/doc/profiling.pdf' | relative_url }}">[PDF]</a>
<a href="{{ '/doc/condor-bibtex.html#thain-hpdc12-sharing' | relative_url }}">[BibTeX Source for Citation]</a>
</li>
<li>
Douglas Thain and Miron Livny,
"The Ethernet Approach to Grid Computing",
in Proceedings of the Twelfth IEEE Symposium on High Performance Distributed Computing,
Seattle, WA, 2003.
<a href="{{ '/doc/ethernet-hpdc12.ps' | relative_url }}">[Postscript]</a>
<a href="{{ '/doc/ethernet-hpdc12.pdf' | relative_url }}">[PDF]</a>
<a href="{{ '/doc/condor-bibtex.html#thain-hpdc12-ethernet' | relative_url }}">[BibTeX Source for Citation]</a>
</li>
<li>
John Bent, Venkateshwaran Venkataramani, Nick LeRoy,
Alain Roy, Joseph Stanley, Andrea Arpaci-Dusseau,
Remzi Arpaci-Dusseau, and Miron Livny,
"NeST - A Grid Enabled Storage Appliance",
in Jan Weglarz and Jarek Nabrzyski and Jennifer Schopf and
Macief Stroinkski, editors,
<em>Grid Resource Management</em>,
Kluwer Academic Publishers, 2003.
<a href="{{ '/doc/nest-chapter.ps' | relative_url }}">[Postscript]</a>
<a href="{{ '/doc/nest-chapter.pdf' | relative_url }}">[PDF]</a>
<a href="{{ '/doc/condor-bibtex.html#nest-bookchapter' | relative_url }}">[BibTeX Source for Citation]</a>
</li>
<li>
Douglas Thain, Todd Tannenbaum, and Miron Livny,
"Condor and the Grid",
in Fran Berman, Anthony J.G. Hey, Geoffrey Fox, editors,
<em>Grid Computing: Making The Global Infrastructure a Reality</em>,
John Wiley, 2003.
ISBN: 0-470-85319-0
<a href="http://media.wiley.com/product_data/excerpt/90/04708531/0470853190.pdf">[PDF]</a>
<a href="{{ '/doc/condor-bibtex.html#condor-grid' | relative_url }}">[BibTeX Source for Citation]</a>
</li>
<li>
Francesco Giacomini,
Francesco Prelz,
Massimo Sgaravatto,
Igor Terekhov,
Gabriele Garzoglio,
and Todd Tannenbaum,
"Planning on the Grid: A Status Report [DRAFT]",
Technical Report PPDG-20,
Particle Physics Data Grid collaboration (http://www.ppdg.net),
October 2002.
<a href="{{ '/doc/grid-planning.ps' | relative_url }}">[Postscript]</a>
<a href="{{ '/doc/grid-planning.pdf' | relative_url }}">[PDF]</a>
<a href="{{ '/doc/condor-bibtex.html#ppdg-20' | relative_url }}">[BibTeX Source for Citation]</a>
</li>
<li>
John Bent, Venkateshwaran Venkataramani,
Nick LeRoy,
Alain Roy,
Joseph Stanley,
Andrea Arpaci-Dusseau,
Remzi H. Arpaci-Dusseau,
and Miron Livny,
"Flexibility, Manageability, and Performance in a Grid Storage Appliance",
<em>Proceedings of the Eleventh IEEE Symposium on High Performance Distributed Computing</em>,
Edinburgh, Scotland, July 2002.
<a href="http://www.cs.wisc.edu/wind/Publications/nest-hpdc-02.html">[Abstract]</a>
<a href="{{ '/doc/nest-hpdc-02.ps' | relative_url }}">[Postscript]</a>
<a href="{{ '/doc/nest-hpdc-02.pdf' | relative_url }}">[PDF]</a>
<a href="{{ '/doc/condor-bibtex.html#storage-hpdc11' | relative_url }}">[BibTeX Source for Citation]</a>
</li>
<li>
Douglas Thain and Miron Livny,
"Error Scope on a Computational Grid: Theory and Practice",
<em>Proceedings of the Eleventh IEEE Symposium on High Performance Distributed Computing (HPDC11)</em>,
Edinburgh, Scotland, July 2002.
<a href="{{ '/doc/error-scope.ps' | relative_url }}">[Postscript]</a>
<a href="{{ '/doc/error-scope.pdf' | relative_url }}">[PDF]</a>
<a href="{{ '/doc/condor-bibtex.html#thain-hpdc11' | relative_url }}">[BibTeX Source for Citation]</a>
<em>(This paper also describes aspects of Condor's Java Universe)</em>
</li>
<li>
Douglas Thain, John Bent, Andrea Arpaci-Dusseau, Remzi Arpaci-Dusseau, and Miron Livny,
"Gathering at the Well: Creating Communities for Grid I/O",
in <em>Proceedings of Supercomputing 2001</em>,
Denver, Colorado, November 2001.
<a href="{{ '/doc/community-sc2001.ps' | relative_url }}">[Postscript]</a>
<a href="{{ '/doc/community-sc2001.pdf' | relative_url }}">[PDF]</a>
<a href="{{ '/doc/condor-bibtex.html#thain-sc2001' | relative_url }}">[BibTeX Source for Citation]</a>
</li>
<li>
James Frey, Todd Tannenbaum, Ian Foster, Miron Livny, and Steven Tuecke,
"Condor-G: A Computation Management Agent for Multi-Institutional Grids",
<em>Journal of Cluster Computing</em>
volume 5, pages 237-246, 2002.
<a href="{{ '/doc/condor-bibtex.html#condor-g-jcc' | relative_url }}">[BibTeX Source for Citation]</a>
</li>
<li>
James Frey, Todd Tannenbaum, Ian Foster, Miron Livny, and Steven Tuecke,
"Condor-G: A Computation Management Agent for Multi-Institutional Grids",
<em>Proceedings of the Tenth IEEE Symposium on High Performance Distributed Computing (HPDC10)</em>
San Francisco, California, August 7-9, 2001.
<a href="{{ '/doc/condorg-hpdc10.ps' | relative_url }}">[Postscript]</a>
<a href="{{ '/doc/condorg-hpdc10.pdf' | relative_url }}">[PDF]</a>
<a href="{{ '/doc/condorg-hpdc10.doc' | relative_url }}">[MS Word]</a>
<a href="{{ '/doc/condor-bibtex.html#condor-g-hpdc10' | relative_url }}">[BibTeX Source for Citation]</a>
</li>
<li>
Douglas Thain, Jim Basney, Se-Chang Son, and Miron Livny,
"The Kangaroo Approach to Data Movement on the Grid",
in <em>Proceedings of the Tenth IEEE Symposium on High Performance Distributed Computing (HPDC10)</em>,
San Francisco, California, August 7-9, 2001.
<a href="{{ '/doc/kangaroo-hpdc10.ps' | relative_url }}">[Postscript]</a>
<a href="{{ '/doc/kangaroo-hpdc10.pdf' | relative_url }}">[PDF]</a>
<a href="{{ '/doc/condor-bibtex.html#kangaroo-hpdc10' | relative_url }}">[BibTeX Source for Citation]</a>
</li>
<li>
John Bent, "Building Storage Appliances for the Grid and Beyond",
<em>Masters' Project report</em>, University of Wisconsin, Madison, May 2001.
<a href="{{ '/doc/grid-storage.ps' | relative_url }}">[Postscript]</a>
<a href="{{ '/doc/grid-storage.pdf' | relative_url }}">[PDF]</a>
<a href="{{ '/doc/condor-bibtex.html#bent-mr' | relative_url }}">[BibTeX Source for Citation]</a>
</li>
</ul>
<span id="mw"></span>
<h3>Master-Worker Computing (MW, PVM, MPI, CARMI)</h3>
<ul>
<li> Elisa Heymann, Miquel A. Senar, Emilio Luque, and Miron Livny,
"Adaptive Scheduling for Master-Worker Applications on the Computational Grid".
in Proceedings of the First IEEE/ACM International Workshop on Grid Computing (GRID 2000), Bangalore, India, December 17, 2000.
<a href="{{ '/doc/camera.ps' | relative_url }}">[Postscript]</a>
<a href="{{ '/doc/camera.pdf' | relative_url }}">[PDF]</a>
<a href="{{ '/doc/camera.doc' | relative_url }}">[MS Word]</a>
<a href="{{ '/doc/condor-bibtex.html#mw-grid2000' | relative_url }}">[BibTeX Source for Citation]</a>
</li>
<li> Elisa Heymann, Miquel A. Senar, Emilio Luque, and Miron Livny,
"Evaluation of an Adaptive Scheduling Strategy for Master-Worker Applications on Clusters of Workstations".
in Proceedings of the 7th International Conference on High Performance Computing (HiPC 2000), Bangalore, India, December 17, 2000.
<a href="{{ '/doc/recorte.ps' | relative_url }}">[Postscript]</a>
<a href="{{ '/doc/recorte.pdf' | relative_url }}">[PDF]</a>
<a href="{{ '/doc/recorte.doc' | relative_url }}">[MS Word]</a>
<a href="{{ '/doc/condor-bibtex.html#mw-hipc2000' | relative_url }}">[BibTeX Source for Citation]</a>
</li>
<li> Jeff Linderoth, Sanjeev Kulkarni, Jean-Pierre Goux, and Michael Yoder,
"An Enabling Framework for Master-Worker Applications on the Computational Grid",
<em>Proceedings of the Ninth IEEE Symposium on High Performance Distributed Computing (HPDC9)</em>,
Pittsburgh, Pennsylvania, August 2000, pp 43-50.
<a href="{{ '/doc/mw-hpdc9.ps' | relative_url }}">[Postscript]</a>
<a href="{{ '/doc/mw-hpdc9.pdf' | relative_url }}">[PDF]</a>
<a href="{{ '/doc/condor-bibtex.html#mw-hpdc9' | relative_url }}">[BibTeX Source for Citation]</a>
</li>
<li>
Jeff Linderoth, Jean-Pierre Goux, and Michael Yoder,
"Metacomputing and the Master-Worker Paradigm",
Preprint ANL/MCS-P792-0200,
Mathematics and Computer Science Division, Argonne National Laboratory, February 2000.
<a href="{{ '/doc/mw-preprint.ps' | relative_url }}">[Postscript]</a>
<a href="{{ '/doc/mw-preprint.pdf' | relative_url }}">[PDF]</a>
<a href="{{ '/doc/condor-bibtex.html#mw-tr' | relative_url }}">[BibTeX Source for Citation]</a>
</li>
<li>
Jim Pruyne and Miron Livny,
"Providing Resource Management Services to Parallel Applications",
<em>Proceedings of the Second Workshop on Environments and Tools for Parallel Scientific Computing</em>, May, 1994.
<a href="{{ '/doc/condor_pvm_framework.ps' | relative_url }}">[Postscript]</a>
<a href="{{ '/doc/condor-bibtex.html#pruyne94' | relative_url }}">[BibTeX Source for Citation]</a>
</li>
</ul>
<span id="java"></span>
<h3>Java</h3>
<ul>
<li>
Douglas Thain and Miron Livny,
"Error Scope on a Computational Grid: Theory and Practice",
<em>Proceedings of the Eleventh IEEE Symposium on High Performance Distributed Computing (HPDC11)</em>,
Edinburgh, Scotland, July 2002.
<a href="{{ '/doc/error-scope.ps' | relative_url }}">[Postscript]</a>
<a href="{{ '/doc/error-scope.pdf' | relative_url }}">[PDF]</a>
<a href="{{ '/doc/condor-bibtex.html#thain-hpdc11' | relative_url }}">[BibTeX Source for Citation]</a>
<em>(This paper describes aspects of error handling in Condor's Java Universe)</em>
</li>
<li>
Al Globus, Eric Langhirt, Miron Livny, Ravishankar Ramamurthy, Marvin Solomon, and Steve Traugott,
"JavaGenes and Condor: cycle-scavenging genetic algorithms",
<em>Proceedings of the ACM Conference on JavaGrande</em>,
San Francisco, California, 2000.
<a href="{{ '/doc/javagenes.pdf' | relative_url }}">[PDF]</a>
<a href="{{ '/doc/condor-bibtex.html#javagenes' | relative_url }}">[BibTeX Source for Citation]</a>
<em>(This paper describes checkpointing Java applications for opportunistic computing.)</em>
</li>
</ul>
<span id="remote"></span>
<h3>Remote Execution and Interposition Agents</h3>
<ul>
<li>Douglas Thain and Miron Livny,
"Parrot: Transparent User-Level Middleware for Data-Intensive
Computing",
<em>Scalable Computing: Practice and Experience</em>,
Volume 6, Number 3, Pages 9-18, 2005.
<a href="{{ '/doc/parrot-scpe.pdf' | relative_url }}">[PDF]</a>
</li>
<!--
Removed because it wasn't actually published
<li>
Douglas Thain and Miron Livny,
"Parrot: An Application Environment for Data-Intensive Computing",
<em>Journal of Parallel and Distributed Computing Practices</em>,
to appear in 2004.
<a href="{{ '/doc/parrot-jpdcp-preprint.ps' | relative_url }}">[Postscript]</a>
<a href="{{ '/doc/parrot-jpdcp-preprint.pdf' | relative_url }}">[PDF]</a>
<a href="{{ '/doc/condor-bibtex.html#parrot-jpdcp' | relative_url }}">[BibTeX Source for Citation]</a>
</li>
-->
<li>
Douglas Thain and Miron Livny,
"Parrot: Transparent User-Level Middleware for Data-Intensive Computing",
<em>Workshop on Adaptive Grid Middleware</em>,
New Orleans, Louisiana,
September 2003.
<a href="{{ '/doc/parrot-agm2003.ps' | relative_url }}">[Postscript]</a>
<a href="{{ '/doc/parrot-agm2003.pdf' | relative_url }}">[PDF]</a>
<a href="{{ '/doc/condor-bibtex.html#parrot-agm2003' | relative_url }}">[BibTeX Source for Citation]</a>
</li>
<li>
Douglas Thain and Miron Livny,
"Error Management in the Pluggable File System",
Technical Report 1448,
Computer Sciences Department, University of Wisconsin, October 2002.
<a href="{{ '/doc/pfs-tr.ps' | relative_url }}">[Postscript]</a>
<a href="{{ '/doc/pfs-tr.pdf' | relative_url }}">[PDF]</a>
<a href="{{ '/doc/condor-bibtex.html#thain-tr1448' | relative_url }}">[BibTeX Source for Citation]</a>
</li>
<li>
Douglas Thain and Miron Livny,
"Multiple Bypass: Interposition Agents for Distributed Computing",
<em>The Journal of Cluster Computing</em>,
Volume 4, 2001, pp 39-47.
<a href="{{ '/doc/bypass-jcc-preprint.ps' | relative_url }}">[Postscript]</a>
<a href="{{ '/doc/bypass-jcc-preprint.pdf' | relative_url }}">[PDF]</a>
<a href="{{ '/doc/condor-bibtex.html#bypass-jcc' | relative_url }}">[BibTeX Source for Citation]</a>
</li>
<li>
Douglas Thain and Miron Livny,
"Bypass: A Tool for Building Split Execution Systems",
<em>Proceedings of the Ninth IEEE Symposium on High Performance Distributed Computing (HPDC9)</em>,
Pittsburgh, Pennsylvania, August 2000, pp 79-86.
<a href="{{ '/doc/bypass-hpdc9.ps' | relative_url }}">[Postscript]</a>
<a href="{{ '/doc/bypass-hpdc9.pdf' | relative_url }}">[PDF]</a>
<a href="{{ '/doc/condor-bibtex.html#bypass-hpdc9' | relative_url }}">[BibTeX Source for Citation]</a>
</li>
<li>
Victor C. Zandy, Barton P. Miller, and Miron Livny,
"Process Hijacking",
<em>The Eighth IEEE International Symposium on High Performance Distributed Computing (HPDC8)</em>,
Redondo Beach, California, August 1999, pp. 177-184.
<a href="{{ '/doc/hijack-hpdc8.ps' | relative_url }}">[Postscript]</a>
<a href="{{ '/doc/hijack-hpdc8.pdf' | relative_url }}">[PDF]</a>
<a href="{{ '/doc/condor-bibtex.html#hijack-hpdc8' | relative_url }}">[BibTeX Source for Citation]</a>
</li>
<li>
Miron Livny and Michael Litzkow,
"Making Workstations a Friendly Environment for Batch Jobs",
<em>Third IEEE Workshop on Workstation Operating Systems</em>,
April 1992, Key Biscayne, Florida.
<a href="{{ '/doc/friendly-wos3.ps' | relative_url }}">[Postscript]</a>
<a href="{{ '/doc/friendly-wos3.pdf' | relative_url }}">[PDF]</a>
<a href="{{ '/doc/condor-bibtex.html#batch-friendly' | relative_url }}">[BibTeX Source for Citation]</a>
</li>
</ul>
<span id="security"></span>
<h3>Security</h3>
<ul>
<li>
Zach Miller, Dan Bradley, Todd Tannenbaum, Igor Sfiligoi,
"Flexible Session Management in a Distributed Environment",
<em>Journal of Physics: Conference Series Volume 219, Issue 4, Year 2010.</em>,
<a href="{{ '/doc/flexible_sessions.pdf' | relative_url }}">[PDF]</a>
<a href="{{ '/doc/condor-bibtex.html#zmiller-sessions' | relative_url }}">[BibTeX Source for Citation]</a>
</li>
<li>
Gabriele Garzoglio, Ian Alderman, Mine Altunay, Rachana Ananthakrishnan, Joe
Bester, Keith Chadwick, Vincenzo Ciaschini, Yuri Demchenko, Andrea Ferraro,
Alberto Forti, David L. Groep, Ted Hesselroth, John Hover, Oscar Koeroo, Chad
La Joie, Tanya Levshina, Zach Miller, Jay Packard, Håkon Sagehaug, Valery
Sergeev, Igor Sfiligoi, Neha Sharma, Frank Siebenlist, Valerio Venturi, John
Weigand,
"Definition and Implementation of a SAML-XACML Profile for Authorization
Interoperability Across Grid Middleware in OSG and EGEE",
<em>Journal of Grid Computing, Volume 7, Issue 3, Year 2009.</em>
<a href="{{ '/doc/SAML-XACML-profile-JGridComputing-2009.pdf' | relative_url }}">[PDF]</a>
</li>
<li>
Hao Wang, Somesh Jha, Miron Livny, and Patrick D. McDaniel,
"Security Policy Reconciliation in Distributed Computing Environments",
<em>IEEE Fifth International Workshop on Policies for Distributed
Systems and Networks (POLICY 2004)</em>,
June 2004, Yorktown Heights, New York.
<a href="{{ '/doc/policy_2004.pdf' | relative_url }}">[PDF]</a>
<a href="{{ '/doc/condor-bibtex.html#wang-security' | relative_url }}">[BibTeX Source for Citation]</a>
</li>
</ul>
<span id="scalability"></span>
<h3>Scalability and Performance</h3>
<ul>
<li>
E M Fajardo, J M Dost, B Holzman, T Tannenbaum, J Letts, A Tiradani, B Bockelman, J Frey and D Mason,
"How much higher can HTCondor fly?",
<em>Journal of Physics: Conference Series</em>, Vol. 664, 2015
<a href="{{ '/doc/jphys15-how-much-higher.pdf' | relative_url }}">[PDF]</a>
<a href="{{ '/doc/condor-bibtex.html#jphys15-how-much-higher' | relative_url }}">[BibTeX Source for Citation]</a>
</li>
<li>
Dan Bradley, Timothy St Clair, Matthew Farrellee, Ziliang Guo, Miron Livny, Igor Sfiligoi,
and Todd Tannenbaum,
"An update on the scalability limits of the Condor batch system",
<em>Journal of Physics: Conference Series</em>, Vol. 331, No. 6, 2011.
<a href="{{ '/doc/chep10_condor_scalability.pdf' | relative_url }}">[PDF]</a>
<a href="{{ '/doc/condor-bibtex.html#chep10_scalability' | relative_url }}">[BibTeX Source for Citation]</a>
</li>
<li>
D Bradley, I Sfiligoi, S Padhi, J Frey and T Tannenbaum,
"Scalability and interoperability within glideinWMS",
<em>Journal of Physics: Conference Series</em>, Vol. 219, No. 6, 2010
<a href = "doc/jphys10-scalability.pdf">[PDF]</a>
<a href="{{ '/doc/condor-bibtex.html#jphys10-scalability' | relative_url }}">[BibTeX Source for Citation]</a>
</li>
<li>
D Bradley, S Dasu, M Livny, A Mohapatra, T Tannenbaum and G Thain,
"Condor enhancements for a rapid-response adaptive computing environment for LHC",
<em>Journal of Physics: Conference Series</em> Vol. 219, No. 6, 2010.
<a href="{{ '/doc/chep09_condor_scalability.pdf' | relative_url }}">[PDF]</a>
<a href="{{ '/doc/condor-bibtex.html#chep09_scalability' | relative_url }}">[BibTeX Source for Citation]</a>
</li>
</ul>
<span id="experience"></span>
<h3>Experience</h3>
<ul>
<li>
Michael Litzkow and Miron Livny,
"Experience With The Condor Distributed Batch System",
<em>IEEE Workshop on Experimental Distributed Systems</em>, Oct 1990, Huntsville, Al.
<a href="{{ '/doc/experience.ps' | relative_url }}">[Postscript]</a>
<a href="{{ '/doc/experience.pdf' | relative_url }}">[PDF]</a>
<a href="{{ '/doc/condor-bibtex.html#condor-experience' | relative_url }}">[BibTeX Source for Citation]</a>
</li>
</ul>
<span id="science"></span>
<h3>Scientific Applications</h3>
<ul>
<!--
Removed because it wasn't actually published.
<li>
Douglas Thain, Sander Klous, and Miron Livny,
"Deploying Complex Applications in Unfriendly Systems with Parrot",
<em>Journal of Supercomputing</em>,