Configure a region’s eviction-attributes
settings to keep your region within a specified limit.
Configure data eviction as follows. You do not need to perform these steps in the sequence shown.
Decide whether to evict based on:
local-max-memory
. In non-partitioned regions, it is set in eviction-attributes
.lru-heap-percentage
. Eviction continues until the manager calls a halt. Tanzu GemFire evicts the least recently used entry hosted by the member for the region. See Managing Heap and Off-heap Memory.Decide what action to take when the limit is reached:
Decide the maximum amount of data to allow in the member for the eviction measurement indicated. This is the maximum for all storage for the region in the member. For partitioned regions, this is the total for all buckets stored in the member for the region, including any secondary buckets used for redundancy.
org.apache.geode.cache.util.ObjectSizer
. See Requirements for Using Custom Classes in Data Caching.Examples:
Set an LRU memory eviction threshold of 1000 MB. Use a custom class for measuring the size of each object in the region:
gfsh>create region --name=myRegion --type=REPLICATE --eviction-max-memory=1000 \
--eviction-action=overflow-to-disk --eviction-object-sizer=com.myLib.MySizer
Create an eviction threshold on a partitioned region with a maximum entry count of 512:
gfsh>create region --name=myRegion --type=PARTITION --eviction-entry-count=512 \
--eviction-action=overflow-to-disk
To configure a partitioned region for heap LRU eviction, first configure the resource manager on server startup, then create a region with eviction enabled:
gfsh>start server --name=Server1 --eviction-heap-percentage=80
...
gfsh>create region --name=myRegion --type=PARTITION --eviction-action=overflow-to-disk