Skip to content

Migrate collector to a new machine #2169

Closed
@Kobzol

Description

@Kobzol

We have a new benchmarking machine available, which we would like to use instead of the old collector. This is orthogonal to the current Project Goal where we implement support for multiple collector machines.

Current plan:

The move to the new machine was documented here.

Executed the following SQL scripts to handle switchover of stable results:

UPDATE artifact
SET name = CONCAT('ax41-', name)
WHERE type = 'release' AND name NOT LIKE '%-ax42';

To give prefix to old artifacts (the dashboard only loads release artifacts starting with "1." or "beta-"

And then

UPDATE artifact
SET name = SUBSTRING(name, 1, LENGTH(name) - 5)
WHERE type = 'release' AND name LIKE '%-ax42';

The first master PR benchmarked by the new machine was rust-lang/rust#141875 (commit rust-lang/rust@6988a8f).

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions