blob: bf62eb9e2d20d5d0e310b4929110bcacae4e77ad [file] [log] [blame]
/*
* 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.
*/
namespace Apache.Ignite.Core.Cache.Configuration
{
/// <summary>
/// Cache rebalance mode. When rebalancing is enabled (i.e. has value other than <see cref="None"/>),
/// distributed caches will attempt to rebalance all necessary values from other grid nodes.
/// <para />
/// Replicated caches will try to load the full set of cache entries from other nodes,
/// while partitioned caches will only load the entries for which current node is primary or backup.
/// <para />
/// The rebalance mode affects both <see cref="CacheMode.Replicated"/> and
/// <see cref="CacheMode.Partitioned"/> caches.
/// </summary>
public enum CacheRebalanceMode
{
/// <summary>
/// Synchronous rebalance mode. Distributed caches will not start until all necessary data
/// is loaded from other available grid nodes.
/// </summary>
Sync,
/// <summary>
/// Asynchronous rebalance mode. Distributed caches will start immediately and will load all necessary
/// data from other available grid nodes in the background.
/// </summary>
Async,
/// <summary>
/// In this mode no rebalancing will take place which means that caches will be either loaded on
/// demand from persistent store whenever data is accessed, or will be populated explicitly.
/// </summary>
None
}
}