Github user isurulucky commented on a diff in the pull request: https://github.com/apache/stratos/pull/419#discussion_r36925340 --- Diff: extensions/load-balancer/gce-extension/src/main/java/org/apache/stratos/gce/extension/GCELoadBalancer.java --- @@ -0,0 +1,391 @@ +/* + * 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.stratos.gce.extension; + +import org.apache.commons.logging.Log; +import org.apache.commons.logging.LogFactory; +import org.apache.stratos.gce.extension.config.GCEClusterConfigurationHolder; +import org.apache.stratos.gce.extension.config.GCEContext; +import org.apache.stratos.gce.extension.util.GCEOperations; +import org.apache.stratos.load.balancer.common.domain.*; +import org.apache.stratos.load.balancer.extension.api.LoadBalancer; +import org.apache.stratos.load.balancer.extension.api.exception.LoadBalancerExtensionException; + +import java.io.IOException; +import java.security.GeneralSecurityException; +import java.util.*; + +public class GCELoadBalancer implements LoadBalancer { + + private static final Log log = LogFactory.getLog(GCELoadBalancer.class); + //PROTOCOL should be TCP or UDP + private static final String PROTOCOL = "TCP"; + private GCEOperations gceOperations; + /** + * One configuration object per cluster will be created + * One cluster has one target pool,one forwarding rule and a health check + * This hash map is used to hold cluster IDs and corresponding configuration + */ + private Map<String, GCEClusterConfigurationHolder> clusterToLoadBalancerConfigurationMap; + + public GCELoadBalancer() throws IOException, GeneralSecurityException { + gceOperations = new GCEOperations(); + clusterToLoadBalancerConfigurationMap = new HashMap<String, GCEClusterConfigurationHolder>(); + + } + + /** + * Listen to latest topology and update load balancer configuration + * + * @param topology latest topology to be configured + * @return - true - if the load balancer was successfully configured. else false + * @throws LoadBalancerExtensionException + */ + @Override + public boolean configure(Topology topology) throws LoadBalancerExtensionException { + log.info("Complete topology received. Configuring Load balancer "); + + //this list is used to hold the current clusters available in topology and which has at least one member. + List<String> activeClusterIdList = new ArrayList<String>(); + + for (Service service : topology.getServices()) { + for (Cluster cluster : service.getClusters()) { //for each cluster + + //check whether this cluster has a load balancer configuration or not + if (clusterToLoadBalancerConfigurationMap.containsKey(cluster.getClusterId())) { + + if (log.isDebugEnabled()) { + log.debug("Reconfiguring the existing cluster: " + cluster.getClusterId()); + } + + //It already has a entry in clusterToLoadBalancerConfigurationMap. + //Take it and update it as the given topology. + GCEClusterConfigurationHolder gceClusterConfigurationHolder = clusterToLoadBalancerConfigurationMap. + get(cluster.getClusterId()); + + //if the cluster contains at least one member + if (!cluster.getMembers().isEmpty()) { + //that cluster contains at least one member + + if (log.isDebugEnabled()) { + log.debug("Cluster " + cluster.getClusterId() + " has one or more members"); + } + activeClusterIdList.add(cluster.getClusterId()); --- End diff -- Add a log to show what cluster id is added to the activeClusterIdList.
--- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastruct...@apache.org or file a JIRA ticket with INFRA. ---