|
Terracotta Distributed CacheIntroductionThe Terracotta Distributed Cache is an interface providing a simple distributed eviction solution for map elements. The Distributed Cache, implemented with the Terracotta Integration Module tim-map-evictor, provides a number of advantages over more complex solutions:
How to Implement and ConfigureUnder the appropriate conditions, the Terracotta Distributed Cache can be used in any Terracotta cluster. If your application can use the Distributed Cache's built-in Map implementation for a cache, you can avoid having to customize your own data structure. See A Simple Distributed Cache for instructions on using the Distributed Cache with the provided Map implementation. Characteristics and RequirementsThe Terracotta Distributed Cache has the following eviction characteristics:
To learn how to configure the eviction parameters, see Usage Pattern.
If you choose not to use the provided Map implementation, you must provide your own data structure and take the following steps:
See the following sections for an example of how the Terracotta Distributed Cache is intended to function with its built-in Map implementation. Installing the TIMTo use the Terracotta Distributed Cache, you must both install tim-map-evictor and include the evictor JAR file in your classpath. To install the TIM, run the following command from ${TERRACOTTA_HOME}: UNIX/Linux [PROMPT] bin/tim-get.sh install tim-map-evictor Microsoft Windows [PROMPT] bin\tim-get.bat install tim-map-evictor You should see output that appears similar to the following: Installing tim-map-evictor 1.3.0-SNAPSHOT and dependencies... INSTALLED: tim-map-evictor 1.3.0-SNAPSHOT - Ok INSTALLED: tim-concurrent-collections 1.3.0-SNAPSHOT - Ok Run the following command from ${TERRACOTTA_HOME} to update the Terracotta configuration file (tc-config.xml by default): UNIX/Linux [PROMPT] bin/tim-get.sh upgrade <path/to/Terracotta/configuration/file> Microsoft Windows [PROMPT] bin\tim-get.bat upgrade <path\to\Terracotta\configuration\file> For more information about installing and updating TIMs, see the TIM Update Center. Locking RequirementsTerracotta automatically provides locking for read (get) and write (put) operations on the distributed map. These locks last for the duration of the get or put operation. Mutating an object obtained from the distributed map requires a read/write lock to avoid race conditions and potential corruption to data. For example, assume a distributed map has an element <k1, v1> in it. The following operation does not require explicit locking: myObject = getFromMyDistributedMap(k1); // Terracotta provides a lock for the duration of getFromMyDistributedMap().
Adding a new element to the map also does not require explicit locking: putIntoMyDistributedMap(k2, v2); // Terracotta provides a lock for the duration of putIntoMyDistributedMap().
However, the following operation requires a read/write lock: myNewObject = myMutator(myObject); // myObject should be locked until it is put back into the map.
Note the following:
A Simple Distributed CacheClustered applications with a system of record (SOR) on the backend can benefit from a distributed cache that manages certain data in memory while reducing costly application-SOR interactions. However, using a cache can introduce increased complexity to software development, integration, operation, and maintenance. The Terracotta Distributed Cache includes a distributed Map that can be used as a simple distributed cache. This cache uses the Terracotta Distributed Cache, incorporating all of its benefits. It also takes both established and innovative approaches to the caching model, solving performance and complexity issues by:
Structure and CharacteristicsThe Terracotta distributed cache is an interface incorporating a distributed map with standard map operations: public interface DistributedMap<K, V> { // Single item operations void put(K key, V value); V get(K key); V remove(K key); boolean containsKey(K key); // Multi item operations int size(); void clear(); Set<K> getKeys(); // For managing the background evictor thread void start(); void shutdown(); }
Usage PatternA typical usage pattern for the Terracotta Distributed Cache is shown in the MyStuff class below. The next section contains a full list of configuration parameters available to DistributedMapBuilder. import org.terracotta.modules.dmap.DistributedMap; import org.terracotta.modules.dmap.DistributedMapBuilder; import static org.terracotta.modules.dmap.DistributedMapBuilder.HOUR; import static org.terracotta.modules.dmap.DistributedMapBuilder.MINUTE; public class MyStuff { // Mark as Terracotta root private DistributedMap<String, Stuff> sharedMap; public MyStuff() { if(sharedMap == null) { DistributedMap<String, Stuff> newMap = new DistributedMapBuilder() .setMaxTTLMillis(6*HOUR) // Regardless of use, remove after 6 hours. .setMaxTTIMillis(30*MINUTE) // Remove after 30 minutes of none-use. .setEvictorSleepMillis(5*MINUTE) // Perform eviction every 5 minutes. .newMap(); // Set root - if this doesn't succeed, shutdown the newMap as it has a worthless background evictor thread. sharedMap = newMap; if(sharedMap != newMap) { newMap.shutdown(); } } public void putStuff(String key, Stuff stuff) { sharedMap.put(key, stuff); } public Stuff getStuff(String key) { return sharedMap.get(key); } } Evictor Configuration ParametersThe configuration parameters that can be set through DistributedMapBuilder() are summarized in the following table.
Usage ExampleThe following is an example of a cache that implements the Terracotta distributed cache: import org.terracotta.modules.dmap.*; import static org.terracotta.modules.dmap.DistributedMapBuilder.*; DisributedMap<String,String> map = new DistributedMapBuilder() .setMaxTTLMillis(10 * SECOND) .setMaxTTIMillis(5 * SECOND) .setConcurrency(16) .newMap(); map.start(); // start eviction thread map.put("Rabbit", "Carrots"); map.put("Dog", "Bone"); map.put("Owl", "Mouse"); // wait 3 seconds map.get("Rabbit"); // wait 2 seconds - expire Dog and Owl due to TTI assert ! map.containsKey("Dog"); assert ! map.containsKey("Owl"); assert map.containsKey("Rabbit"); // wait 5 seconds - expire Rabbit due to TTL assert ! map.containsKey("Rabbit"); Terracotta Distributed Cache in a Reference ApplicationThe [Examinator reference application] uses the Terracotta Distributed Cache to handle pending user registrations. This type of data has a "medium-term" lifetime which needs to be persisted long enough to give prospective registrants a chance to verify their registrations. If a registration isn't verified by the time TTL is reached, it can be evicted from the cache. Only if the registration is verified is it written to the database. The combination of Terracotta and the Terracotta Distributed Cache gives Examinator the following advantages:
|
Terracotta Distributed Cache
(None)