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

org.apache.brooklyn.entity.nosql.cassandra.CassandraFabric 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.nosql.cassandra;

import java.util.Set;

import org.apache.brooklyn.api.catalog.Catalog;
import org.apache.brooklyn.api.entity.Entity;
import org.apache.brooklyn.api.entity.ImplementedBy;
import org.apache.brooklyn.api.location.Location;
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.ConfigKeys;
import org.apache.brooklyn.core.effector.MethodEffector;
import org.apache.brooklyn.entity.group.DynamicFabric;

import com.google.common.base.Function;
import com.google.common.collect.Multimap;
import com.google.common.reflect.TypeToken;

/**
 * A fabric of {@link CassandraNode}s, which forms a cluster spanning multiple locations.
 * 

* Each {@link CassandraDatacenter} child instance is actually just a part of the whole cluster. It consists of the * nodes in that single location (which normally corresponds to a "datacenter" in Cassandra terminology). */ @Catalog(name="Apache Cassandra Database Fabric", description="Cassandra is a highly scalable, eventually " + "consistent, distributed, structured key-value store which provides a ColumnFamily-based data model " + "richer than typical key/value systems", iconUrl="classpath:///cassandra-logo.jpeg") @ImplementedBy(CassandraFabricImpl.class) public interface CassandraFabric extends DynamicFabric { ConfigKey INITIAL_QUORUM_SIZE = ConfigKeys.newIntegerConfigKey( "fabric.initial.quorumSize", "Initial fabric quorum size - number of initial nodes that must have been successfully started " + "to report success (if less than 0, then use a value based on INITIAL_SIZE of clusters)", -1); @SuppressWarnings("serial") ConfigKey> DATA_CENTER_NAMER = ConfigKeys.newConfigKey(new TypeToken>(){}, "cassandra.fabric.datacenter.namer", "Function used to provide the cassandra.replication.datacenterName for a given location"); int DEFAULT_SEED_QUORUM = 5; AttributeSensor> DATACENTER_USAGE = CassandraDatacenter.DATACENTER_USAGE; AttributeSensor> DATACENTERS = CassandraDatacenter.DATACENTERS; AttributeSensor> CURRENT_SEEDS = CassandraDatacenter.CURRENT_SEEDS; AttributeSensor HAS_PUBLISHED_SEEDS = CassandraDatacenter.HAS_PUBLISHED_SEEDS; AttributeSensor HOSTNAME = CassandraDatacenter.HOSTNAME; AttributeSensor THRIFT_PORT = CassandraDatacenter.THRIFT_PORT; MethodEffector UPDATE = new MethodEffector(CassandraFabric.class, "update"); @Effector(description="Updates the cluster members") void update(); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy