com.yahoo.vespa.hosted.provision.node.Agent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of node-repository Show documentation
Show all versions of node-repository Show documentation
Keeps track of node assignment in a multi-application setup.
The newest version!
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.hosted.provision.node;
/**
* The enum of agents making changes to the system.
*
* @author bratseth
*/
public enum Agent {
operator, // A hosted Vespa operator. Some logic recognizes these events.
application, // An application package change deployment
system, // An unspecified system agent
nodeAdmin, // A hosted Vespa node
// Specific system agents:
NodeFailer,
NodeHealthTracker,
Rebalancer,
DirtyExpirer,
FailedExpirer,
InactiveExpirer,
ProvisionedExpirer,
ReservationExpirer,
ParkedExpirer,
HostCapacityMaintainer,
HostResumeProvisioner,
RetiringOsUpgrader,
RebuildingOsUpgrader,
SpareCapacityMaintainer,
SwitchRebalancer,
HostEncrypter,
HostFlavorUpgrader,
}