HCL Commerce Version 9.1.11.0 or later

maintenance

implements a number of required maintenance processes.

To support features such as invalidation by dependency ID, the maintains metadata information for each cache entry. This metadata cannot be expired or evicted by Redis because this would lead to inconsistencies such as missed invalidations.

implements a number of background processes to maintain the metadata information.

Expired maintenance
Removes metadata for objects that have expired.
Low memory maintenance
Triggers when Redis memory is close to full and removes soonest to expire cache entries to free up memory.
Inactivity maintenance
Optional maintenance that can be used to remove inactive cache entries.

For more details, see Memory Management in Redis.

The maintenance jobs can add overhead to the Redis servers. It is important that performance test environments accurately simulate production environments, exercising the maintenance processes in a similar manner. For example, if the production environment typically fills up the Redis memory, the performance environment should do the same. Short tests (e.g. one hour in duration) might not be long enough to simulate expired and inactivity maintenance processing conditions.

Self-Adjusting maintenance processes

All maintenance processes implement a similar technique to self-adjust the speed of maintenance. Executing maintenance too quickly can impact performance, while if it is done too slowly, new data can be added at a rate that is faster than it is removed, leading to out of memory (OOM) situations. For example, expired maintenance adjusts the speed of maintenance considering the time since expiry of the oldest expired cache entries. If the time since expiry increases, it means expired maintenance is not running at a fast enough rate, and the speed is increased.

The maintenance processes also have configurations to determine how many cache entries are removed at once. This is required because Redis is single-threaded, and a large maintenance operation can block Redis:

numCacheIdPerLUACall
This is the maximum number of cache entries that will be inspected and processed by a LUA script. Increasing the number speeds up maintenance but can also block the Redis thread for a longer period.
numLUACallsInPipeline
The number of LUA scripts that are sent together as a batch. The Redis thread is only locked during each individual script execution.

LUA is a scripting language supported by Redis for server-side operations. LUA scripts are atomic and blocking.

Due to the self-adjusting nature of the maintenance processes, tuning should not typically be required, but performance testing is critical to confirm they run at optimal speeds.

Expired maintenance (onlineExpiredEntriesmaintenance)

While Redis automatically removes expired cached values from memory, the expired maintenance process is responsible for removing expired cache entries from the metadata (dependency IDs). This process runs from all the pods and the speed is determined by the age of the oldest expired entry pending maintenance.

Expired maintenance cleanup rates
The speed of maintenance adjusts depending on the age of the oldest expired entry. For example, if the maintenance process finds cache entries that have been expired for seven minutes, it will use the maintenance configuration for objects from 5-8 minutes, which cleans at a rate of 20/ second.
newerThan:  180 secs (  3 mins) inLUA:  1 pipeline:  1 delayMs:  60000 -- speed:     0/sec,       1/min
newerThan:  300 secs (  5 mins) inLUA:  2 pipeline:  5 delayMs:    500 -- speed:    20/sec,   1,200/min
newerThan:  420 secs (  7 mins) inLUA:  3 pipeline:  5 delayMs:    125 -- speed:   120/sec,   7,200/min
newerThan:  540 secs (  9 mins) inLUA:  5 pipeline:  5 delayMs:    100 -- speed:   250/sec,  15,000/min
newerThan:  720 secs ( 12 mins) inLUA:  5 pipeline:  5 delayMs:     50 -- speed:   500/sec,  30,000/min
newerThan:  960 secs ( 16 mins) inLUA:  5 pipeline:  5 delayMs:     25 -- speed: 1,000/sec,  60,000/min
newerThan: ~ ALL ~              inLUA:  5 pipeline:  5 delayMs:     12 -- speed: 2,083/sec, 125,000/min

For details on updating the configuration see Updating the default maintenance values.

Expired maintenance details from the HCL Cache - Remote dashboard:

Low memory maintenance (onlineLowMemoryEntriesMaintenance)

with Redis does not perform well when memory is full. Processes, including maintenance processes, can fail with memory errors "command not allowed when used memory > 'maxmemory'". To prevent this situation, monitors the percentage of memory used and triggers low memory maintenance processing to reduce the size of each cache. The processing removes both cached values and their associated cache entry metadata. The keys selected for removal are those sooner to expire. The low memory maintenance job is scheduled from all the pods, but it can only be active from a single container at any one time.

Low memory maintenance in Redis Enterprise
Due to differences in architecture, Redis Enteprise does not make used memory statistics available to the application. But this is the trigger the low memory maintenance process uses to determine when and how much maintenance is required. As a result, with Redis Enterprise, the softMaxSize configuration must be manually configured for each cache to define a maximum size in number of entries.
Low memory maintenance default configurations

The default configurations are as follows. For details on updating the configuration see Updating the default maintenance values .

Configuration Default Use
intervalSecs 120 Interval at which the low-memory maintenance job runs on each pod to check for memory conditions.
maxMemoryPercentage 93 If the percentage of memory used is at or above this configuration, the maintenance process must execute.
maintenancePercentageBuffer 5 The percentage of the cache that is removed. For example, if maxMemoryPercentage is 93% and maintenancePercentageBuffer is 5%, the target memory used after maintenance is 88%.
putOperationPausePercentage 5 This percentage is added to the maxMemoryPercentage. For example, if maxMemoryPercentage is 93% and putOperationPausePercentage is 5%, when used memory reaches 98%, caches stop inserting to the remote cache to allow maintenance to catch up.
softMaxSize -1 Used to set a maximum size in entries. It can be used in combination with maxMemoryPercentage.
softMaxSizeAsPercentFull 93 Used to map the current cache size in entries for softMaxSize to a cleanupRate that is specified as a cache percentage. In this case, when the cache size is equal to softMaxSize, the used % is asumed to be 93%. This makes the calculations equivalent to maxMemoryPercentage.
Low memory maintenance cleanup rates
The speed of maintenance adjusts depending on the percentage of memory free. Maintenance starts at 500/ sec. If memory reaches 100%, maintenance could run as fast as 4,000/ sec.
used: >= 100%  inLUA:  5 pipeline: 10 delayMs:  5 -- speed: 10,000/sec,   600,000/min
used: >=  99%  inLUA:  5 pipeline: 10 delayMs:  7 -- speed:  7,143/sec,   430,000/min
used: >=  98%  inLUA:  5 pipeline: 10 delayMs: 10 -- speed:  5,000/sec,   300,000/min
used: >=  97%  inLUA:  5 pipeline:  5 delayMs: 10 -- speed:  2,500/sec,   150,000/min
used: >=  96%  inLUA:  5 pipeline:  5 delayMs: 20 -- speed:  1,250/sec,    75,000/min
used: >=  95%  inLUA:  5 pipeline:  5 delayMs: 25 -- speed:  1,000/sec,    60,000/min
used: >=  94%  inLUA:  4 pipeline:  5 delayMs: 25 -- speed:    800/sec,    48,000/min
used: >=  93%  inLUA:  4 pipeline:  5 delayMs: 40 -- speed:    500/sec,    30,000/min
used: >=   0%  inLUA:  3 pipeline:  5 delayMs: 40 -- speed:    375/sec,    22,500/min

Inactivity maintenance (onlineInactiveEntriesMaintenance)

Inactivity configuration enables to track and evict entries that are not seeing reuse. By removing idle entries before their expiry time, total cache memory use is reduced, helping caches run more efficiently.

Inactivity maintenance is disabled by default. It must be enabled by specifying an inactivity threshold in minutes (inactivityMins) for each remote cache. For details see Remote Cache Tuning Configurations.

Inactivity maintenance runs from all containers (concurrently). The default rate of clean up is defined as follows:

newerThan:  180 secs (  3 mins) inLUA:  1 pipeline:  1 delayMs:  60000 -- speed:     0/sec,       1/min
newerThan:  300 secs (  5 mins) inLUA:  2 pipeline:  5 delayMs:    500 -- speed:    20/sec,   1,200/min
newerThan:  420 secs (  7 mins) inLUA:  3 pipeline:  5 delayMs:    125 -- speed:   120/sec,   7,200/min
newerThan:  540 secs (  9 mins) inLUA:  5 pipeline:  5 delayMs:    100 -- speed:   250/sec,  15,000/min
newerThan:  720 secs ( 12 mins) inLUA:  5 pipeline:  5 delayMs:     50 -- speed:   500/sec,  30,000/min
newerThan:  960 secs ( 16 mins) inLUA:  5 pipeline:  5 delayMs:     25 -- speed: 1,000/sec,  60,000/min
newerThan: ~ ALL ~              inLUA:  5 pipeline:  5 delayMs:     12 -- speed: 2,083/sec, 125,000/min

Updating the default maintenance values

Although due to the self-adjusting nature of the scripts, tuning may not be required, configurations can be changed by updating the Cache YAML configuration files. Configurations can be changed at the cache level, or for all caches by using defaultCacheConfig:

cacheConfigs:
   defaultCacheConfig:
     remoteCache:
       onlineExpiredEntriesMaintenance:
         ...
       onlineLowMemoryMaintenance:
         ...
       onlineInactiveEntriesMaintenance:

Use the default configuration in /SETUP/hcl-cache/cache_cfg.yaml as a starting point.

For list configurations such as cleanupRate, customizations must re-define the whole list instead of individual elements.