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

org.apache.brooklyn.entity.machine.pool.ServerPool Maven / Gradle / Ivy

There is a newer version: 1.1.0
Show newest version
/*
 * 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.entity.machine.pool;

import java.util.Collection;
import java.util.Map;

import org.apache.brooklyn.api.catalog.Catalog;
import org.apache.brooklyn.api.entity.Entity;
import org.apache.brooklyn.api.entity.EntitySpec;
import org.apache.brooklyn.api.entity.ImplementedBy;
import org.apache.brooklyn.api.location.MachineLocation;
import org.apache.brooklyn.api.location.NoMachinesAvailableException;
import org.apache.brooklyn.api.sensor.AttributeSensor;
import org.apache.brooklyn.config.ConfigKey;
import org.apache.brooklyn.core.annotation.Effector;
import org.apache.brooklyn.core.annotation.EffectorParam;
import org.apache.brooklyn.core.config.ConfigKeys;
import org.apache.brooklyn.core.effector.MethodEffector;
import org.apache.brooklyn.core.location.cloud.CloudLocationConfig;
import org.apache.brooklyn.core.location.dynamic.LocationOwner;
import org.apache.brooklyn.core.sensor.Sensors;
import org.apache.brooklyn.entity.group.DynamicCluster;
import org.apache.brooklyn.entity.machine.MachineEntity;

import com.google.common.annotations.Beta;

/**
 * A preallocated server pool is an entity that other applications can deploy to.
 * Behaving as a cluster, the machines it creates for its members are reused.
 * 

* Notes: *

    *
  • * The pool does not configure ports appropriately for applications subsequently * deployed. If an entity that is to be run in the pool requires any ports open * other than port 22 then thoses port should be configured with the * {@link CloudLocationConfig#INBOUND_PORTS INBOUND_PORTS} * config key as part of the pool's * {@link org.apache.brooklyn.entity.software.base.SoftwareProcess#PROVISIONING_PROPERTIES PROVISIONING_PROPERTIES}. * For example, in YAML: *
     *     - type: org.apache.brooklyn.entity.machine.pool.ServerPool
     *       brooklyn.config:
     *         # Suitable for TomcatServers
     *         provisioning.properties:
     *         inboundPorts: [22, 31880, 8443, 8080, 31001, 1099]
     *         
    * This is a limitation of Brooklyn that will be addressed in a future release. *
  • *
*/ @Catalog(name="Server Pool", description="Creates a pre-allocated server pool, which other applications can deploy to") @ImplementedBy(ServerPoolImpl.class) @Beta public interface ServerPool extends DynamicCluster, LocationOwner { ConfigKey LOCATION_NAME_PREFIX = ConfigKeys.newConfigKeyWithDefault(LocationOwner.LOCATION_NAME_PREFIX, "server-pool"); ConfigKey INITIAL_SIZE = ConfigKeys.newConfigKeyWithDefault(DynamicCluster.INITIAL_SIZE, 2); AttributeSensor AVAILABLE_COUNT = Sensors.newIntegerSensor( "pool.available", "The number of locations in the pool that are unused"); AttributeSensor CLAIMED_COUNT = Sensors.newIntegerSensor( "pool.claimed", "The number of locations in the pool that are in use"); ConfigKey> MEMBER_SPEC = ConfigKeys.newConfigKeyWithDefault(DynamicCluster.MEMBER_SPEC, EntitySpec.create(MachineEntity.class)); MethodEffector> ADD_MACHINES_FROM_SPEC = new MethodEffector>(ServerPool.class, "addExistingMachinesFromSpec"); public MachineLocation claimMachine(Map flags) throws NoMachinesAvailableException; public void releaseMachine(MachineLocation machine); /** * Sets the pool to use an existing {@link MachineLocation} as a member. Existing locations * will count towards the capacity of the pool but will not be terminated when the pool is * stopped. * @param machine An existing machine. * @return the new member of the pool, created with the configured {@link #MEMBER_SPEC}. */ public Entity addExistingMachine(MachineLocation machine); /** * Adds additional machines to the pool by resolving the given spec. * @param spec * A location spec, e.g. byon:(hosts="[email protected],[email protected],[email protected]") * @return the new members of the pool, created with the configured {@link #MEMBER_SPEC}. */ @Effector(description = "Adds additional machines to the pool by resolving the given spec.") public Collection addExistingMachinesFromSpec( @EffectorParam(name = "spec", description = "Spec") String spec); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy