Buildbot Database Schema
Technical documentation describing the internal database structure used by Buildbot to store build history and metadata.
Accessing the database
Schema
The test_run table
test_run tableCREATE TABLE test_run(
id INT PRIMARY KEY AUTO_INCREMENT,
branch VARCHAR(100),
revision VARCHAR(32) NOT NULL,
platform VARCHAR(100) NOT NULL,
dt TIMESTAMP NOT NULL,
bbnum INT NOT NULL,
typ VARCHAR(32) NOT NULL,
info VARCHAR(255),
KEY (branch, revision),
KEY (dt),
KEY (platform, bbnum)
) ENGINE=innodbThe test_failure table
test_failure tableThe test_warnings table
test_warnings tableSample queries
Last updated
Was this helpful?

