All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.yahoo.vespa.hosted.provision.maintenance.DirtyExpirer Maven / Gradle / Ivy

There is a newer version: 8.458.13
Show newest version
// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.hosted.provision.maintenance;

import com.yahoo.vespa.hosted.provision.Node;
import com.yahoo.vespa.hosted.provision.NodeRepository;
import com.yahoo.vespa.hosted.provision.node.Agent;
import com.yahoo.vespa.hosted.provision.node.History;

import java.time.Clock;
import java.time.Duration;
import java.util.List;
import java.util.stream.Collectors;

/**
 * This moves nodes from dirty to failed if they have been in dirty too long
 * with the assumption that a node is stuck in dirty because it has failed.
 * 

* As the nodes are moved back to dirty their failure count is increased, * and if the count is sufficiently low they will be attempted recycled to dirty again. * The upshot is nodes may get multiple attempts at clearing through dirty, but they will * eventually stay in failed. * * @author bratseth */ public class DirtyExpirer extends Expirer { private final NodeRepository nodeRepository; public DirtyExpirer(NodeRepository nodeRepository, Clock clock, Duration dirtyTimeout, JobControl jobControl) { super(Node.State.dirty, History.Event.Type.deallocated, nodeRepository, clock, dirtyTimeout, jobControl); this.nodeRepository = nodeRepository; } @Override protected void expire(List expired) { for (Node expiredNode : expired) nodeRepository.fail(expiredNode.hostname(), Agent.system, "Node is stuck in dirty"); } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy