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

brooklyn.entity.messaging.kafka.KafkaCluster Maven / Gradle / Ivy

There is a newer version: 0.7.0-M1
Show newest version
/*
 * Copyright 2013 by Cloudsoft Corp.
 *
 * Licensed 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 brooklyn.entity.messaging.kafka;

import brooklyn.catalog.Catalog;
import brooklyn.config.ConfigKey;
import brooklyn.entity.Entity;
import brooklyn.entity.Group;
import brooklyn.entity.basic.ConfigKeys;
import brooklyn.entity.group.Cluster;
import brooklyn.entity.group.DynamicCluster;
import brooklyn.entity.proxying.EntitySpec;
import brooklyn.entity.proxying.ImplementedBy;
import brooklyn.entity.trait.Resizable;
import brooklyn.entity.trait.Startable;
import brooklyn.entity.zookeeper.Zookeeper;
import brooklyn.event.AttributeSensor;
import brooklyn.event.basic.BasicAttributeSensor;
import brooklyn.event.basic.BasicAttributeSensorAndConfigKey;
import brooklyn.event.basic.BasicConfigKey;
import brooklyn.util.flags.SetFromFlag;

/**
 * Provides Kafka cluster functionality through a group of {@link KafkaBroker brokers} controlled
 * by a single {@link KafkaZookeeper zookeeper} entity.
 * 

* You can customise the Kafka zookeeper and brokers by supplying {@link EntitySpec entity specifications} * to be used when creating them. An existing {@link Zookeeper} entity may also be provided instead of the * Kafka zookeeper. *

* The contents of this entity are: *

    *
  • a {@link brooklyn.entity.group.DynamicCluster} of {@link KafkaBroker}s *
  • a {@link KafkaZookeeper} or {@link Zookeeper} *
  • a {@link brooklyn.policy.Policy} to resize the broker cluster *
* The {@link Group group} and {@link Resizable} interface methods are delegated to the broker cluster, so calling * {@link Resizable#resize(Integer) resize} will change the number of brokers. */ @SuppressWarnings({ "unchecked", "rawtypes" }) @Catalog(name="Kafka", description="Apache Kafka is a distributed publish-subscribe messaging system", iconUrl="classpath://brooklyn/entity/messaging/kafka/kafka-google-doorway.jpg") @ImplementedBy(KafkaClusterImpl.class) public interface KafkaCluster extends Entity, Startable, Resizable, Group { @SetFromFlag("startTimeout") ConfigKey START_TIMEOUT = ConfigKeys.START_TIMEOUT; @SetFromFlag("initialSize") ConfigKey INITIAL_SIZE = ConfigKeys.newConfigKeyWithDefault(Cluster.INITIAL_SIZE, 1); /** Zookeeper for the cluster. If null a default be will created. */ @SetFromFlag("zookeeper") BasicAttributeSensorAndConfigKey ZOOKEEPER = new BasicAttributeSensorAndConfigKey( Zookeeper.class, "kafka.cluster.zookeeper", "The zookeeper for the cluster; if null a default be will created"); /** Spec for creating the default Kafka zookeeper entity. */ @SetFromFlag("zookeeperSpec") BasicAttributeSensorAndConfigKey> ZOOKEEPER_SPEC = new BasicAttributeSensorAndConfigKey( EntitySpec.class, "kafka.cluster.zookeeperSpec", "Spec for creating the kafka zookeeper"); /** Spec for Kafka broker entities to be created. */ @SetFromFlag("brokerSpec") BasicAttributeSensorAndConfigKey> BROKER_SPEC = new BasicAttributeSensorAndConfigKey( EntitySpec.class, "kafka.cluster.brokerSpec", "Spec for Kafka broker entiites to be created"); /** Underlying Kafka broker cluster. */ AttributeSensor CLUSTER = new BasicAttributeSensor( DynamicCluster.class, "kafka.cluster.brokerCluster", "Underlying Kafka broker cluster"); Zookeeper getZookeeper(); DynamicCluster getCluster(); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy