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
(
runtime: (
thread_pools: [
(
id: "source_pool",
threads: 1,
),
(
id: "first_pool",
threads: 1,
),
(
id: "second_pool",
threads: 1,
),
],
),
logging: (
enable_task_logging: true,
slab_size_mib: 16,
keyframe_interval: 1,
),
tasks: [
(
id: "source",
type: "SlowSource",
background: (
pool: "source_pool",
),
config: {"sleep_ms": 80},
),
(
id: "first",
type: "SlowTask",
background: (
pool: "first_pool",
),
config: {"sleep_ms": 120},
),
(
id: "second",
type: "SlowTask",
background: (
pool: "second_pool",
),
config: {"sleep_ms": 160},
),
(
id: "sink",
type: "OutputSink",
),
],
cnx: [
(
src: "source",
dst: "first",
msg: "WorkMsg",
),
(
src: "first",
dst: "second",
msg: "WorkMsg",
),
(
src: "second",
dst: "sink",
msg: "WorkMsg",
),
],
)