Switch to Memcached
To switch to Memcached, you must have your own pre-configured Memcached instance. You should have also installed the Analysis Enterprise Edition package to your Pentaho Server or standalone Mondrian engine.
If you already use the Memcached cache framework in your organization and would like to hook it up to the Pentaho Analysis OLAP engine, follow the directions below to switch from the default Infinispan cache framework configuration:
Pentaho and Mondrian developers recommend against using Memcached. You are almost certain to have better performance with Infinispan.
- If the Pentaho Server or standalone Mondrian engine are running, shut them down now.
- If you performed a default install of the Pentaho Analysis Enterprise Edition package, then you should have all of the required JARs installed to the Pentaho or Mondrian server. If you are not sure, verify now that the following JARs are present in the /WEB-INF/lib/ folder inside of your deployed
pentaho.war
or Mondrian engine:pentaho-analysis-ee
commons-lang
commons-io
commons-codec
pentaho-ee-dsc-core
memcached
- Edit
pentaho-analysis-config.xml
in the /WEB-INF/classes/ folder inside the deployedpentaho.war
or Mondrian engine, and change the value ofSEGMENT_CACHE_IMPL
to match the class name referenced below:<entry key="SEGMENT_CACHE_IMPL">com.pentaho.analysis.segmentcache.impl.memcached.MemcachedSegmentCache</entry>
- Edit
memcached-config.xml
in the /WEB-INF/classes/ folder inside the deployedpentaho.war
or Mondrian engine, and change the values ofSALT
,SERVERS
, andWEIGHT
to match your preference:<entry key="SALT">YOUR SECRET SALT VALUE HERE</entry> <entry key="SERVERS">192.168.0.1:1642,192.168.0.2:1642</entry> <entry key="WEIGHTS">1,1</entry>
Your Pentaho Analysis Enterprise Edition instance is now configured to use Memcached for OLAP segment caching.