-
Notifications
You must be signed in to change notification settings - Fork 2
/
example_config.json
153 lines (153 loc) · 4.4 KB
/
example_config.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
{
"TemplateData": {
"HBIR": {
"args": [
"Tag",
"Kit Version",
"JDK",
"RTSTART",
"JVM Options",
"NUMA Nodes",
"Data Collection",
"T1",
"T2",
"T3"
],
"annotations" : {
"Tag" : "Name of the run",
"Kit Version" : "Version of SpecJBB",
"JDK" : "Version of the JVM that will run SpecJBB",
"RTSTART" : "What percentage of total output will we start at",
"JVM Options" : "What additional arguments, if any, will be passed to the JVM",
"NUMA Nodes" : "How many NUMA nodes will SpecJBB use",
"Data Collection" : "What data collection process will monitor while running SpecJBB",
"T1" : "How many threads does Tier 1 have access to",
"T2" : "How many threads does Tier 2 have access to",
"T3" : "How many threads does Tier 3 have access to"
},
"prop_options": {
"specjbb.controller.type": "HBIR",
"specjbb.time.server": false,
"specjbb.comm.connect.client.pool.size": 192,
"specjbb.comm.connect.selector.runner.count": 4,
"specjbb.comm.connect.timeouts.connect": 650000,
"specjbb.comm.connect.timeouts.read": 650000,
"specjbb.comm.connect.timeouts.write": 650000,
"specjbb.comm.connect.worker.pool.max": 320,
"specjbb.customerDriver.threads": 64,
"specjbb.customerDriver.threads.saturate": 144,
"specjbb.customerDriver.threads.probe": 96,
"specjbb.mapreducer.pool.size": 27
},
"types": {
"Tag": "string",
"Kit Version": "string",
"JDK": "string",
"RTSTART": "integer",
"JVM Options": "string",
"NUMA Nodes": "integer",
"Data Collection": "string",
"T1": "integer",
"T2": "integer",
"T3": "integer"
},
"translations": {
"RTSTART": "specjbb.controller.rtcurve.start",
"T1": "specjbb.forkjoin.workers.Tier1",
"T2": "specjbb.forkjoin.workers.Tier2",
"T3": "specjbb.forkjoin.workers.Tier3",
"NUMA Nodes": "specjbb.group.count"
}
},
"HBIR_RT": {
"args": [
"Tag",
"Kit Version",
"JDK",
"RTSTART",
"JVM Options",
"NUMA Nodes",
"Data Collection",
"T1",
"T2",
"T3"
],
"annotations" : {
"Tag" : "Name of the run",
"Kit Version" : "Version of SpecJBB",
"JDK" : "Version of the JVM that will run SpecJBB",
"RTSTART" : "What percentage of total output will we start at",
"JVM Options" : "What additional arguments, if any, will be passed to the JVM",
"NUMA Nodes" : "How many NUMA nodes will SpecJBB use",
"Data Collection" : "What data collection process will monitor while running SpecJBB",
"T1" : "How many threads does Tier 1 have access to",
"T2" : "How many threads does Tier 2 have access to",
"T3" : "How many threads does Tier 3 have access to"
},
"prop_options": {
"specjbb.controller.type": "HBIR_RT",
"specjbb.time.server": false,
"specjbb.comm.connect.client.pool.size": 192,
"specjbb.comm.connect.selector.runner.count": 4,
"specjbb.comm.connect.timeouts.connect": 650000,
"specjbb.comm.connect.timeouts.read": 650000,
"specjbb.comm.connect.timeouts.write": 650000,
"specjbb.comm.connect.worker.pool.max": 320,
"specjbb.customerDriver.threads": 64,
"specjbb.customerDriver.threads.saturate": 144,
"specjbb.customerDriver.threads.probe": 96,
"specjbb.mapreducer.pool.size": 27
},
"types": {
"Tag": "string",
"Kit Version": "string",
"JDK": "string",
"RTSTART": "integer",
"JVM Options": "string",
"NUMA Nodes": "integer",
"Data Collection": "string",
"T1": "integer",
"T2": "integer",
"T3": "integer"
},
"translations": {
"RTSTART": "specjbb.controller.rtcurve.start",
"T1": "specjbb.forkjoin.workers.Tier1",
"T2": "specjbb.forkjoin.workers.Tier2",
"T3": "specjbb.forkjoin.workers.Tier3",
"NUMA Nodes": "specjbb.group.count"
}
}
},
"RunList": [{
"template_type": "HBIR",
"args": {
"Tag": "TAG",
"Kit Version": "15",
"JDK": 7,
"RTSTART": "4",
"JVM Options": "options -x -y",
"NUMA Nodes": "2",
"Data Collection": "TRUE",
"T1": 1,
"T2": 2,
"T3": 3
}
},
{
"template_type": "HBIR_RT",
"args": {
"Tag" : "specjbb",
"Kit Version": "RC3",
"RTSTART" : 30,
"JDK": "jdk.8-u121",
"JVM Options": "-Xms29g -Xmx29g -Xmn27g -XX:ParallelGCThreads=48",
"NUMA Nodes": 4,
"Data Collection": "NONE",
"T1" : 154,
"T2" : 45,
"T3" : 23
}
}
]
}