-
Notifications
You must be signed in to change notification settings - Fork 46
Expand file tree
/
Copy pathpage_terminology.html
More file actions
566 lines (524 loc) · 23 KB
/
page_terminology.html
File metadata and controls
566 lines (524 loc) · 23 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
---
layout: page
title: Terminology
permalink: /terminology
image: /images/terminology/terminology.png
---
<style>
.terminology-page {
--term-primary: #db8e1b;
--term-ink: #1b1b1b;
--term-muted: #5b5b5b;
--term-surface: #ffffff;
--term-surface-alt: #ffffff;
--term-line: #eadfce;
--term-accent: #0c5a6a;
color: var(--term-ink);
}
.terminology-hero {
background: #ffffff;
border-bottom: 1px solid var(--term-line);
padding: 3.5rem 0 3rem;
}
.terminology-hero .eyebrow {
color: var(--term-accent);
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.15em;
font-size: 0.8rem;
}
.terminology-hero h2 {
font-size: clamp(2rem, 3.2vw, 3rem);
line-height: 1.1;
margin: 0.6rem 0 1rem;
}
.terminology-hero .lead {
font-size: 1.1rem;
max-width: 780px;
color: var(--term-muted);
}
.hero-actions {
display: flex;
flex-wrap: wrap;
gap: 0.75rem;
margin-top: 1.5rem;
}
.hero-actions a {
padding: 0.6rem 1.1rem;
border-radius: 999px;
border: 1px solid var(--term-line);
background: var(--term-surface);
color: var(--term-ink);
font-weight: 600;
text-decoration: none;
}
.hero-actions a.primary {
background: var(--term-primary);
color: #1a1508;
border-color: transparent;
}
.hero-panels {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
gap: 1rem;
margin-top: 2rem;
}
.hero-panel {
background: var(--term-surface);
border: 1px solid var(--term-line);
border-radius: 1rem;
padding: 1rem 1.2rem;
}
.hero-panel h4 {
font-size: 0.95rem;
margin-bottom: 0.4rem;
color: var(--term-accent);
}
.terminology-section {
padding: 2.5rem 0;
background: transparent;
}
.section-title {
font-size: 1.7rem;
margin-bottom: 0.6rem;
}
.section-lead {
color: var(--term-muted);
max-width: 800px;
}
.toc-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
gap: 1rem;
margin-top: 1.5rem;
}
.toc-card {
background: var(--term-surface);
border: 1px solid var(--term-line);
border-radius: 1rem;
padding: 1rem 1.2rem;
text-decoration: none;
color: inherit;
box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.toc-card:hover {
transform: translateY(-3px);
box-shadow: 0 16px 35px rgba(0, 0, 0, 0.08);
}
.axis {
background: var(--term-surface);
border: 1px solid var(--term-line);
border-radius: 1.5rem;
padding: 2rem;
margin-bottom: 2rem;
box-shadow: 0 20px 45px rgba(0, 0, 0, 0.05);
}
.axis-header {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
gap: 1.5rem;
align-items: center;
margin-bottom: 1.5rem;
}
.axis-header img {
max-width: 100%;
background: #fff;
transform: scale(1.08);
transform-origin: center;
}
.term-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
gap: 1.2rem;
}
.term-card {
background: var(--term-surface-alt);
border: 1px solid var(--term-line);
border-radius: 1rem;
padding: 1rem 1.1rem;
}
.term-card h4 {
font-size: 1rem;
margin-bottom: 0.6rem;
color: var(--term-accent);
}
.term-card ul {
padding-left: 1.1rem;
margin: 0;
}
.term-card li {
margin-bottom: 0.6rem;
}
.term-card span {
font-weight: 600;
}
.publication {
background: #ffffff;
border-radius: 1rem;
border: 1px solid var(--term-line);
padding: 1.2rem 1.4rem;
margin-top: 2rem;
font-size: 0.95rem;
}
.publication strong {
text-transform: uppercase;
letter-spacing: 0.08em;
font-size: 0.75rem;
color: var(--term-accent);
}
.usage-steps {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
gap: 1rem;
margin-top: 1.5rem;
}
.usage-step {
padding: 1rem 1.2rem;
border-radius: 1rem;
border: 1px solid var(--term-line);
background: var(--term-surface);
}
.usage-step h4 {
margin-bottom: 0.4rem;
color: var(--term-primary);
}
@media (max-width: 768px) {
.axis {
padding: 1.5rem;
}
.axis-header img {
transform: scale(1);
}
.terminology-hero {
padding: 2.5rem 0;
}
}
</style>
<div class="terminology-page">
<section class="terminology-hero">
<div class="container" data-aos="fade-up">
<div class="eyebrow">Scientific Workflow Systems</div>
<h2>A Shared Terminology for Comparing Workflow Systems</h2>
<p class="lead">A community-built framework that helps researchers describe workflow management systems in
consistent terms. Use it to compare tools based on structure, composition, execution, data handling, and
metadata practices instead of reputation or familiarity.</p>
<div class="hero-actions">
<a class="primary" href="https://arxiv.org/pdf/2506.07838" target="_blank">Read the research paper</a>
<a href="/groups/terminology">Terminology working group</a>
</div>
<div class="hero-panels">
<div class="hero-panel">
<h4>Purpose</h4>
<p>Provide a common vocabulary to describe and compare workflow management systems without ranking
them.</p>
</div>
<div class="hero-panel">
<h4>Audience</h4>
<p>Workflow system developers, domain scientists, and infrastructure teams evaluating WMS fit.</p>
</div>
<div class="hero-panel">
<h4>Outcome</h4>
<p>Clearer system selection, better design discussions, and more transparent reporting.</p>
</div>
</div>
<div class="publication">
<strong>Research Publication</strong><br />
Suter, F., Coleman, T., Altintas, Í., Badia, R. M., Balis, B., Chard, K., Colonnelli, I., Deelman, E.,
Tommaso, P. D., Fahringer, T., Goble, C., Jha, S., Katz, D. S., Köster, J., Leser, U., Mehta, K.,
Oliver, H., Peterson, J.-L., Pizzi, G., Pottier, L., Sirvent, R., Suchyta, E., Thain, D., Wilkinson, S.
R., Wozniak, J. M., Ferreira da Silva, R. (2025). <a href="https://arxiv.org/pdf/2506.07838"
target="_blank">A Terminology for Scientific Workflow Systems</a>. Future Generation Computer
Systems.
</div>
</div>
</section>
<section class="terminology-section">
<div class="container" data-aos="fade-up">
<h3 class="section-title">How to use the terminology</h3>
<p class="section-lead">Use the axes below as a checklist when documenting a system or comparing candidates
for a new project.</p>
<div class="usage-steps">
<div class="usage-step">
<h4>1. Describe the workflow shape</h4>
<p>Clarify how tasks, data, and dependencies are organized and whether the workflow can adapt at
runtime.</p>
</div>
<div class="usage-step">
<h4>2. Capture how it is expressed</h4>
<p>Note whether users define workflows via schema files, APIs, or GUIs and how much detail is
required.</p>
</div>
<div class="usage-step">
<h4>3. Document execution + data behavior</h4>
<p>Summarize planning, orchestration, data movement, storage, and metadata capabilities.</p>
</div>
</div>
</div>
</section>
<section class="terminology-section">
<div class="container" data-aos="fade-up">
<h3 class="section-title">Five axes of comparison</h3>
<p class="section-lead">Each axis captures a core aspect of how a workflow system is designed and operates.
Select the section you need and jump directly to the details.</p>
<div class="toc-grid">
<a class="toc-card" href="#workflow-characteristics">
<h4>Workflow Characteristics</h4>
<p>Structure, coupling, and adaptability.</p>
</a>
<a class="toc-card" href="#composition">
<h4>Composition</h4>
<p>How workflows are described and modularized.</p>
</a>
<a class="toc-card" href="#orchestration">
<h4>Orchestration</h4>
<p>Planning, execution models, and coordination.</p>
</a>
<a class="toc-card" href="#data-management">
<h4>Data Management</h4>
<p>Movement, storage, and data handling granularity.</p>
</a>
<a class="toc-card" href="#metadata-capture">
<h4>Metadata Capture</h4>
<p>Provenance, monitoring, and anomaly insight.</p>
</a>
</div>
</div>
</section>
<section class="terminology-section" id="workflow-characteristics">
<div class="container" data-aos="fade-up">
<div class="axis">
<div class="axis-header">
<div>
<h3>Workflow Characteristics</h3>
<p class="section-lead">Fundamental structural aspects that shape how workflows run and adapt.
These characteristics influence scheduling, optimization, and resource efficiency.</p>
</div>
<img src="/images/terminology/workflow_characteristics.svg" alt="Workflow characteristics axis" />
</div>
<div class="term-grid">
<div class="term-card">
<h4>Flow</h4>
<ul>
<li><span>Task:</span> Components receive inputs, produce outputs, and terminate; WMSs manage
execution order and dependencies.</li>
<li><span>Iterative:</span> Tasks run multiple times, ending after each iteration and waiting
to be invoked again.</li>
<li><span>Data:</span> Execution is driven by data movement; operators remain active while
data is available.</li>
</ul>
</div>
<div class="term-card">
<h4>Granularity</h4>
<ul>
<li><span>Functions:</span> Workflows compose function calls; scripts and runtimes can be
viewed as workflows.</li>
<li><span>Standalone executables:</span> A common model where executables aggregate function
calls and process inputs to produce outputs.</li>
<li><span>Sub-workflows:</span> Hierarchical compositions break large workflows into reusable
modules.</li>
</ul>
</div>
<div class="term-card">
<h4>Coupling</h4>
<ul>
<li><span>Tight:</span> Tasks must run concurrently, often co-located or synchronized via
periodic data exchange.</li>
<li><span>Loose:</span> No concurrency constraints, enabling flexible scheduling.</li>
</ul>
</div>
<div class="term-card">
<h4>Dynamicity</h4>
<ul>
<li><span>Branches:</span> Conditional paths activate based on data, resource state, or
events.</li>
<li><span>Runtime interventions:</span> Users or external processes can modify execution
plans during runtime.</li>
</ul>
</div>
<div class="term-card">
<h4>Domain</h4>
<ul>
<li><span>Specific:</span> Systems tuned for a single scientific community or discipline.</li>
<li><span>Agnostic:</span> Systems designed to serve multiple domains.</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<section class="terminology-section" id="composition">
<div class="container" data-aos="fade-up">
<div class="axis">
<div class="axis-header">
<div>
<h3>Composition</h3>
<p class="section-lead">How workflows are defined, organized, and configured. This axis highlights
the tradeoff between expressiveness, abstraction, and accessibility.</p>
</div>
<img src="/images/terminology/composition.svg" alt="Composition axis" />
</div>
<div class="term-grid">
<div class="term-card">
<h4>Description Method</h4>
<ul>
<li><span>Schema:</span> Workflows described in files using specific formats (XML, JSON,
YAML, or a domain-specific language).
<ul>
<li><span>Ad-hoc:</span> Syntax understood only by a single WMS.</li>
<li><span>Standard:</span> Syntax aligned with shared standards such as CWL, IWIR, or
WfFormat.</li>
</ul>
</li>
<li><span>API:</span> Workflow descriptions built in code using languages or templating
engines, enabling loops and conditionals.</li>
<li><span>GUI:</span> Workflow authoring through a graphical interface.</li>
</ul>
</div>
<div class="term-card">
<h4>Level of Abstraction</h4>
<ul>
<li><span>Abstract:</span> Logical structure and resource needs only; no infrastructure
bindings.</li>
<li><span>Intermediate:</span> Mix of high-level structure with required execution details.</li>
<li><span>Concrete:</span> Fully specified workflow ready to run as described.</li>
<li><span>Implicit:</span> Structure inferred from API calls or dataset metadata.</li>
</ul>
</div>
<div class="term-card">
<h4>Modularity</h4>
<ul>
<li><span>Flat:</span> Single-layer description of components.</li>
<li><span>Hierarchical:</span> Nested sub-workflows support scalable design and reuse.</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<section class="terminology-section" id="orchestration">
<div class="container" data-aos="fade-up">
<div class="axis">
<div class="axis-header">
<div>
<h3>Orchestration</h3>
<p class="section-lead">Execution management approaches, from planning to the way tasks are
launched and coordinated across resources.</p>
</div>
<img src="/images/terminology/orchestration.svg" alt="Orchestration axis" />
</div>
<div class="term-grid">
<div class="term-card">
<h4>Planning</h4>
<ul>
<li><span>Static:</span> All scheduling decisions are made before execution starts.</li>
<li><span>Dynamic:</span> Scheduling adapts during execution based on runtime information.</li>
<li><span>Event-driven:</span> Execution reacts to triggers and conditions at runtime without
pre-planning the entire workflow.</li>
</ul>
</div>
<div class="term-card">
<h4>Execution</h4>
<ul>
<li><span>Runner:</span> WMS acquires resources and manages task execution directly.</li>
<li><span>Resource Manager:</span> Resource allocation is delegated to schedulers or container
orchestration systems.</li>
<li><span>Serverless:</span> Execution is delegated to cloud services that manage scaling and
infrastructure.</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<section class="terminology-section" id="data-management">
<div class="container" data-aos="fade-up">
<div class="axis">
<div class="axis-header">
<div>
<h3>Data Management</h3>
<p class="section-lead">How data moves through a workflow, how it is stored, and the granularity
of data exchange between components.</p>
</div>
<img src="/images/terminology/data_management.svg" alt="Data management axis" />
</div>
<div class="term-grid">
<div class="term-card">
<h4>Granularity</h4>
<ul>
<li><span>Batch:</span> Inputs are consumed and outputs produced in full at task boundaries.</li>
<li><span>Pipelined:</span> Components stream records as they run, common in in situ analysis.</li>
<li><span>Partitioned:</span> Data is divided into partitions for transfer and processing.</li>
</ul>
</div>
<div class="term-card">
<h4>Transport</h4>
<ul>
<li><span>File-based:</span> Intermediate data is written to and read from files.</li>
<li><span>Streaming:</span> Data is pushed directly between components.
<ul>
<li><span>In-memory:</span> Shared memory transfer for co-located components.</li>
<li><span>Network:</span> Data streams across networked nodes.</li>
</ul>
</li>
</ul>
</div>
<div class="term-card">
<h4>Storage</h4>
<ul>
<li><span>File System:</span>
<ul>
<li><span>Local:</span> Data stored on node-local storage.</li>
<li><span>Shared:</span> Centralized storage accessible across a cluster.</li>
</ul>
</li>
<li><span>Distributed:</span> Storage spread across multiple facilities for scalability and
resilience.</li>
<li><span>Replicated:</span> Redundant copies improve reliability and availability.</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<section class="terminology-section" id="metadata-capture">
<div class="container" data-aos="fade-up">
<div class="axis">
<div class="axis-header">
<div>
<h3>Metadata Capture</h3>
<p class="section-lead">Context captured during execution that supports reproducibility,
optimization, monitoring, and error handling.</p>
</div>
<img src="/images/terminology/metadata_capture.svg" alt="Metadata capture axis" />
</div>
<div class="term-grid">
<div class="term-card">
<h4>Provenance</h4>
<ul>
<li><span>Prospective:</span> Captures workflow design, configuration, and intended behavior.</li>
<li><span>Retrospective:</span> Captures what happened during execution, including lineage and
runtime data.</li>
</ul>
</div>
<div class="term-card">
<h4>Monitoring</h4>
<ul>
<li><span>Performance insights:</span> Tracks resource use and bottlenecks during execution.</li>
<li><span>Optimization input:</span> Data supports rescheduling and future workflow tuning.</li>
</ul>
</div>
<div class="term-card">
<h4>Anomaly Detection</h4>
<ul>
<li><span>Fault handling:</span> From logging warnings to retrying tasks or triggering
fallback branches.</li>
<li><span>User intervention:</span> Supports escalation when automation cannot resolve the
issue.</li>
</ul>
</div>
</div>
</div>
</div>
</section>
</div>