/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. */ package org.apache.brooklyn.policy.loadbalancing; import static com.google.common.base.Preconditions.checkNotNull; import java.io.Serializable; import org.apache.brooklyn.api.entity.Entity; import org.apache.brooklyn.api.entity.Group; import org.apache.brooklyn.api.entity.ImplementedBy; import org.apache.brooklyn.core.entity.trait.Resizable; import org.apache.brooklyn.core.sensor.BasicNotificationSensor; /** * Represents an elastic group of "container" entities, each of which is capable of hosting "item" entities that perform * work and consume the container's available resources (e.g. CPU or bandwidth). Auto-scaling and load-balancing policies can * be attached to this pool to provide dynamic elasticity based on workrates reported by the individual item entities. * <p> * The containers must be "up" in order to receive work, thus they must NOT follow the default enricher pattern * for groups which says that the group must be up to receive work. */ @ImplementedBy(BalanceableWorkerPoolImpl.class) public interface BalanceableWorkerPool extends Entity, Resizable { // FIXME Asymmetry between loadbalancing and followTheSun: ITEM_ADDED and ITEM_REMOVED in loadbalancing // are of type ContainerItemPair, but in followTheSun it is just the `Entity item`. /** Encapsulates an item and a container; emitted for {@code ITEM_ADDED}, {@code ITEM_REMOVED} and * {@code ITEM_MOVED} sensors. */ public static class ContainerItemPair implements Serializable { private static final long serialVersionUID = 1L; public final BalanceableContainer<?> container; public final Entity item; public ContainerItemPair(BalanceableContainer<?> container, Entity item) { this.container = container; this.item = checkNotNull(item); } @Override public String toString() { return ""+item+" @ "+container; } } // Pool constituent notifications. public static BasicNotificationSensor<Entity> CONTAINER_ADDED = new BasicNotificationSensor<Entity>( Entity.class, "balanceablepool.container.added", "Container added to balanceable pool"); public static BasicNotificationSensor<Entity> CONTAINER_REMOVED = new BasicNotificationSensor<Entity>( Entity.class, "balanceablepool.container.removed", "Container removed from balanceable pool"); public static BasicNotificationSensor<ContainerItemPair> ITEM_ADDED = new BasicNotificationSensor<ContainerItemPair>( ContainerItemPair.class, "balanceablepool.item.added", "Item added to balanceable pool"); public static BasicNotificationSensor<ContainerItemPair> ITEM_REMOVED = new BasicNotificationSensor<ContainerItemPair>( ContainerItemPair.class, "balanceablepool.item.removed", "Item removed from balanceable pool"); public static BasicNotificationSensor<ContainerItemPair> ITEM_MOVED = new BasicNotificationSensor<ContainerItemPair>( ContainerItemPair.class, "balanceablepool.item.moved", "Item moved in balanceable pool to the given container"); public void setResizable(Resizable resizable); public void setContents(Group containerGroup, Group itemGroup); public Group getContainerGroup(); public Group getItemGroup(); }