blob: 889048f905655d4d7a559fa92ddbffd9ced87a3c [file] [log] [blame]
package brooklyn.demo;
import java.util.List;
import brooklyn.entity.basic.ApplicationBuilder;
import brooklyn.entity.basic.Entities;
import brooklyn.entity.messaging.kafka.KafkaCluster;
import brooklyn.entity.proxying.EntitySpec;
import brooklyn.launcher.BrooklynLauncher;
import brooklyn.util.CommandLineUtil;
import com.google.common.collect.Lists;
/** Kafka Cluster Application */
public class KafkaClusterExample extends ApplicationBuilder {
public static final String DEFAULT_LOCATION = "localhost";
/** Configure the application. */
protected void doBuild() {
addChild(EntitySpec.create(KafkaCluster.class)
.configure("startTimeout", 300) // 5 minutes
.configure("initialSize", 2));
// TODO set application display name?
}
public static void main(String[] argv) {
List<String> args = Lists.newArrayList(argv);
String port = CommandLineUtil.getCommandLineOption(args, "--port", "8081+");
String location = CommandLineUtil.getCommandLineOption(args, "--location", DEFAULT_LOCATION);
BrooklynLauncher launcher = BrooklynLauncher.newInstance()
.application(new KafkaClusterExample().appDisplayName("Kafka cluster application"))
.webconsolePort(port)
.location(location)
.start();
Entities.dumpInfo(launcher.getApplications());
}
}