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
|
# Manifest Runtime Data Format Documentation
This document describes the JSON file formats created by `fetch-manifest-data.js`.
## Overview
The script generates two types of JSON files:
1. **Detailed data**: `manifests.json` - Contains all individual manifest runs with task IDs and commit hashes
2. **Runtimes data**: `manifests-runtimes.json` - Smaller file grouping runtimes by manifest and job
Both formats use string tables and index-based lookups to minimize file size.
---
## Detailed Data Format (`manifests.json`)
### Top-Level Structure
```json
{
"metadata": { ... },
"manifests": [ ... ],
"jobNames": [ ... ],
"commits": [ ... ],
"prefixes": [ ... ],
"tasks": { ... },
"runs": { ... }
}
```
### metadata
Contains information about the data collection:
```json
{
"date": "2025-02-04",
"repository": "mozilla-central",
"generatedAt": "2025-02-05T14:24:33.451Z",
"processedJobCount": 1234,
"failedJobCount": 56,
"skippedJobCount": 789,
"manifestCount": 3456,
"jobNameCount": 45,
"timingCount": 12345
}
```
### String Tables
All strings are deduplicated and stored once:
```json
{
"manifests": [
"dom/tests/mochitest/general/mochitest.toml",
"toolkit/components/extensions/test/mochitest/mochitest.toml",
...
],
"jobNames": [
"test-linux2404-64/debug-mochitest-browser-chrome",
"test-macosx1470-64/opt-mochitest-plain",
...
],
"commits": [
"f37a6863f87aeeb870b16223045ea7614b1ba0a7",
"abc123def456789012345678901234567890abcd",
...
],
"prefixes": [
"mochitest-browser-chrome",
"mochitest-plain",
"wpt",
"xpcshell",
"reftest",
...
]
}
```
### tasks
Object containing parallel arrays with task metadata:
```json
{
"tasks": {
"id": [
"YJJe4a0CRIqbAmcCo8n63w",
"XPPf5b1DRJrcBndDp9o74x.1",
...
],
"jobName": [5, 12, 8, 15, ...],
"commitId": [0, 0, 1, 1, ...],
"prefix": [0, 1, 2, 1, ...]
}
}
```
All arrays are parallel - index `i` corresponds to the same task:
- `id[i]`: Task ID string (includes retry suffix when retry > 0, e.g., `taskId.1`)
- `jobName[i]`: Index into `jobNames` array (full job name including chunk number)
- `commitId[i]`: Index into `commits` array
- `prefix[i]`: Index into `prefixes` array (artifact type used)
**Note**: The `jobNames` table contains both base names (without chunks, used in `runs.jobNameIds`) and full names (with chunks, used in `tasks.jobName`).
### runs
Parallel arrays containing timing data:
```json
{
"runs": {
"manifestIds": [0, 1, 0, 2, ...],
"jobNameIds": [0, 0, 1, 1, ...],
"taskIds": [0, 1, 2, 3, ...],
"durations": [1234, 5678, 2345, ...]
}
}
```
All arrays are parallel - index `i` in each array corresponds to the same manifest run:
- `manifestIds[i]`: Index into `manifests` array
- `jobNameIds[i]`: Index into `jobNames` array (base name without chunk)
- `taskIds[i]`: Index into `tasks.id` array
- `durations[i]`: Runtime in milliseconds
**Example lookup:**
```javascript
const i = 5;
const manifest = data.manifests[data.runs.manifestIds[i]];
const jobBaseName = data.jobNames[data.runs.jobNameIds[i]];
const duration = data.runs.durations[i];
// Get task details
const taskIdx = data.runs.taskIds[i];
const taskId = data.tasks.id[taskIdx];
const fullJobName = data.jobNames[data.tasks.jobName[taskIdx]];
const commitIdx = data.tasks.commitId[taskIdx];
const commit = data.commits[commitIdx];
const prefixIdx = data.tasks.prefix[taskIdx];
const prefix = data.prefixes[prefixIdx];
// Open in Treeherder
const treeherderUrl = `https://treeherder.mozilla.org/#/jobs?repo=${data.metadata.repository}&revision=${commit}&selectedTaskRun=${taskId}`;
```
---
## Runtimes Data Format (`manifests-runtimes.json`)
### Top-Level Structure
```json
{
"metadata": { ... },
"jobNames": [ ... ],
"manifests": { ... }
}
```
### metadata
```json
{
"date": "2025-02-04",
"repository": "mozilla-central",
"generatedAt": "2025-02-05T14:24:33.451Z",
"manifestCount": 3456,
"jobNameCount": 45
}
```
### jobNames
String table for job names:
```json
{
"jobNames": [
"test-linux2404-64/debug-mochitest-browser-chrome",
"test-macosx1470-64/opt-mochitest-plain",
...
]
}
```
### manifests
Object where keys are manifest names and values are objects containing parallel arrays:
```json
{
"manifests": {
"dom/tests/mochitest/general/mochitest.toml": {
"jobs": [0, 1],
"runtimes": [
[1200, 1234, 1250, 1280, 1300],
[2100, 2150, 2200]
]
},
"toolkit/components/extensions/test/mochitest/mochitest.toml": {
"jobs": [0],
"runtimes": [
[3400, 3500, 3600]
]
},
...
}
}
```
Each manifest has an object containing parallel arrays:
- `jobs`: Array of indices into the `jobNames` array
- `runtimes`: Array of arrays, where `runtimes[i]` is the sorted runtime values in milliseconds for the manifest on `jobs[i]`
**Example lookup:**
```javascript
const manifest = "dom/tests/mochitest/general/mochitest.toml";
const manifestData = data.manifests[manifest];
for (let i = 0; i < manifestData.jobs.length; i++) {
const jobName = data.jobNames[manifestData.jobs[i]];
const runtimes = manifestData.runtimes[i];
const median = runtimes[Math.floor(runtimes.length / 2)];
const mean = runtimes.reduce((a, b) => a + b) / runtimes.length;
console.log(`${jobName}: median=${median}ms, mean=${mean}ms, runs=${runtimes.length}`);
}
```
---
## Use Cases
### Detailed File
**Purpose**: Deep analysis with full traceability to specific CI runs
**Use cases:**
- Link to specific Treeherder jobs for investigation
- Track timing changes across commits
- Identify which specific runs were slow
- Debug timing regressions
**Example: Find all slow runs for a manifest**
```javascript
const targetManifest = "dom/tests/mochitest/general/mochitest.toml";
const manifestId = data.manifests.indexOf(targetManifest);
const threshold = 5000; // ms
const slowRuns = [];
for (let i = 0; i < data.runs.durations.length; i++) {
if (data.runs.manifestIds[i] === manifestId && data.runs.durations[i] > threshold) {
slowRuns.push({
duration: data.runs.durations[i],
job: data.jobNames[data.runs.jobNameIds[i]],
commit: data.commits[data.runs.commitIds[i]],
taskId: data.taskIds[data.runs.taskIds[i]],
});
}
}
```
### Runtimes File
**Purpose**: Fast dashboard loading and statistical analysis
**Use cases:**
- Calculate median/mean runtimes per manifest
- Compare timing distributions across jobs
- Identify consistently slow manifests
- Generate runtime estimates for scheduling
**Example: Find slowest manifests by median runtime**
```javascript
const manifestStats = [];
for (const [manifestName, manifestData] of Object.entries(data.manifests)) {
let totalMedian = 0;
for (const runtimes of manifestData.runtimes) {
const median = runtimes[Math.floor(runtimes.length / 2)];
totalMedian += median;
}
manifestStats.push({
manifest: manifestName,
avgMedian: totalMedian / manifestData.runtimes.length,
});
}
manifestStats.sort((a, b) => b.avgMedian - a.avgMedian);
const slowest = manifestStats.slice(0, 10);
```
---
## Data Characteristics
### Job Names
Job names in the `jobNames` table have chunk numbers removed. For example:
- `test-linux2404-64/debug-mochitest-browser-chrome-5` → `test-linux2404-64/debug-mochitest-browser-chrome`
- `test-macosx1470-64/opt-web-platform-tests-12` → `test-macosx1470-64/opt-web-platform-tests`
### Task IDs
Task IDs in the detailed file format:
- Retry 0: `"taskId"` (no suffix)
- Retry > 0: `"taskId.N"` (includes retry number)
### Durations
All duration values are in **milliseconds** and are integers.
### Filtering
The data only includes:
- Jobs from `test-*` (actual test jobs, not build jobs)
- Jobs with `state === "completed"` and `result` in `["success", "testfailed"]`
- Test harnesses that produce manifest-level timing data (excludes `cppunittest`, `marionette`, `gtest`, etc.)
### Manifests
Manifest names are the full path to the manifest file, typically ending in:
- `mochitest.toml`
- `browser.toml`
- `chrome.toml`
- `xpcshell.toml`
For web-platform-tests, manifest names may be test directory paths.
---
## File Size Comparison
Typical file sizes for one day of mozilla-central data:
- **Detailed file**: ~8 MB (contains all individual runs)
- **Runtimes file**: ~3 MB (grouped and sorted)
---
## Notes
- Runtimes in the runtimes file are **sorted** for efficient percentile calculations
- The detailed file allows reconstruction of the runtimes file
- Both files share the same `jobNames` table for consistency
- Commit hashes are full 40-character SHA-1 hashes from mozilla-central
- Task IDs can be used with the TaskCluster API or Treeherder UI
|