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

com.gemstone.gemfire.cache.server.ServerLoadProbe Maven / Gradle / Ivy

There is a newer version: 2.0-BETA
Show newest version
/*
 * Copyright (c) 2010-2015 Pivotal Software, Inc. All rights reserved.
 *
 * 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. See accompanying
 * LICENSE file.
 */
package com.gemstone.gemfire.cache.server;

import com.gemstone.gemfire.cache.CacheCallback;


/**
 * A load probe is installed in a bridge server to measure the load on the
 * bridge server for balancing load between multiple bridge servers.
 * 
 * 

* The getLoad method will be called once per poll interval see * {@link CacheServer#setLoadPollInterval(long)} The {@link ServerLoad} object * returned by the getLoad method will be sent to the locator every time the * load for this server changes. To conserve bandwidth, it's a good idea to * round the load calculations so that the load will not be sent too frequently. *

*

* The {@link ServerLoad} object contains two floating point numbers indicating * the load on the server due to client to server connections and due to * subscription connections. When routing a connection, the locator will choose * the server that has the lowest load. *

*

* It is generally a good idea to pick a load function where 0 connections * corresponds to 0 load. The default gemfire load probes return a fraction * between 0 and 1, where 0 indicates no load, and 1 indicates the server is * completely loaded. *

*

* Because cache servers can be stopped, reconfigured, and restarted, the open * and close methods on this callback can be called several times. If the same * callback object is installed on multiple cache servers, open and close will * be called once for each bridge server. *

* * @author dsmith * @since 5.7 * */ public interface ServerLoadProbe extends CacheCallback { /** * Get the load on this server. This method will be called once every pool * interval. * * @return The current load on this server. */ ServerLoad getLoad(ServerMetrics metrics); /** Signals that a bridge server * using this load probe has been started. */ void open(); /** * Signals that a bridge server * using this load probe has been closed. */ void close(); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy