/* * 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.proxy; import java.net.URI; import java.util.Map; import org.apache.brooklyn.api.entity.Entity; import org.apache.brooklyn.api.entity.Group; 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.config.BasicConfigKey; import org.apache.brooklyn.core.effector.MethodEffector; import org.apache.brooklyn.core.entity.Attributes; import org.apache.brooklyn.core.entity.trait.Startable; import org.apache.brooklyn.core.sensor.BasicAttributeSensorAndConfigKey; import org.apache.brooklyn.core.sensor.PortAttributeSensorAndConfigKey; import org.apache.brooklyn.core.sensor.Sensors; import org.apache.brooklyn.entity.webapp.WebAppService; import org.apache.brooklyn.util.core.flags.SetFromFlag; import com.google.common.collect.ImmutableList; import com.google.common.reflect.TypeToken; /** * A load balancer that routes requests to set(s) of servers. * * There is an optional "serverPool" that will have requests routed to it (e.g. as round-robin). * This is a group whose members are appropriate servers; membership of that group will be tracked * to automatically update the load balancer's configuration as appropriate. * * There is an optional urlMappings group for defining additional mapping rules. Members of this * group (of type UrlMapping) will be tracked, to automatically update the load balancer's configuration. * The UrlMappings can give custom routing rules so that specific urls are routed (and potentially re-written) * to particular sets of servers. * * @author aled */ public interface LoadBalancer extends Entity, Startable { @SetFromFlag("serverPool") ConfigKey<Group> SERVER_POOL = new BasicConfigKey<Group>( Group.class, "loadbalancer.serverpool", "The default servers to route messages to"); @SetFromFlag("urlMappings") ConfigKey<Group> URL_MAPPINGS = new BasicConfigKey<Group>( Group.class, "loadbalancer.urlmappings", "Special mapping rules (e.g. for domain/path matching, rewrite, etc); not supported by all load balancers"); /** sensor for port to forward to on target entities */ @SuppressWarnings("serial") @SetFromFlag("portNumberSensor") public static final BasicAttributeSensorAndConfigKey<AttributeSensor<Integer>> PORT_NUMBER_SENSOR = new BasicAttributeSensorAndConfigKey<AttributeSensor<Integer>>( new TypeToken<AttributeSensor<Integer>>() {}, "member.sensor.portNumber", "Port number sensor on members (defaults to http.port; not supported in all implementations)", Attributes.HTTP_PORT); /** sensor for hostname to forward to on target entities */ @SuppressWarnings("serial") @SetFromFlag("hostnameSensor") public static final BasicAttributeSensorAndConfigKey<AttributeSensor<String>> HOSTNAME_SENSOR = new BasicAttributeSensorAndConfigKey<AttributeSensor<String>>( new TypeToken<AttributeSensor<String>>() {}, "member.sensor.hostname", "Hostname/IP sensor on members (defaults to host.subnet.hostname; not supported in all implementations)", Attributes.SUBNET_HOSTNAME); /** sensor for hostname to forward to on target entities */ @SuppressWarnings("serial") @SetFromFlag("hostAndPortSensor") public static final BasicAttributeSensorAndConfigKey<AttributeSensor<String>> HOST_AND_PORT_SENSOR = new BasicAttributeSensorAndConfigKey<AttributeSensor<String>>( new TypeToken<AttributeSensor<String>>() {}, "member.sensor.hostandport", "host:port sensor on members (invalid to configure this and the portNumber or hostname sensors)", null); @SetFromFlag("port") /** port where this controller should live */ public static final PortAttributeSensorAndConfigKey PROXY_HTTP_PORT = new PortAttributeSensorAndConfigKey( "proxy.http.port", "Main port where this proxy listens if using HTTP", ImmutableList.of(8000, "8001+")); @SetFromFlag("httpsPort") /** port where this controller should live */ public static final PortAttributeSensorAndConfigKey PROXY_HTTPS_PORT = new PortAttributeSensorAndConfigKey( "proxy.https.port", "Main port where this proxy listens if using HTTPS", ImmutableList.of(8443, "8443+")); @SetFromFlag("protocol") public static final BasicAttributeSensorAndConfigKey<String> PROTOCOL = new BasicAttributeSensorAndConfigKey<String>( String.class, "proxy.protocol", "Main URL protocol this proxy answers (typically http or https)", null); public static final AttributeSensor<String> HOSTNAME = Attributes.HOSTNAME; public static final AttributeSensor<URI> MAIN_URI = Attributes.MAIN_URI; public static final AttributeSensor<String> ROOT_URL = WebAppService.ROOT_URL; @SuppressWarnings("serial") public static final AttributeSensor<Map<Entity, String>> SERVER_POOL_TARGETS = Sensors.newSensor( new TypeToken<Map<Entity, String>>() {}, "proxy.serverpool.targets", "The downstream targets in the server pool"); public static final MethodEffector<Void> RELOAD = new MethodEffector<Void>(LoadBalancer.class, "reload"); public static final MethodEffector<Void> UPDATE = new MethodEffector<Void>(LoadBalancer.class, "update"); @Effector(description="Forces reload of the configuration") public void reload(); @Effector(description="Updates the entities configuration, and then forces reload of that configuration") public void update(); /** * Opportunity to do late-binding of the cluster that is being controlled. Must be called before start(). * Can pass in the 'serverPool'. */ public void bind(Map<?,?> flags); }