如果数据发生变化,mondrian由于其cache的功能,查询出来的数据并不是最新的,因此,可以在kettle执行完ETL任务以后清空mondrian缓存。
做法是在ETL后连接Http client(核心对象-> 查询 -> Http client),在其URL中填写YourTomcatUrl/mondrian/testpage.jsp?query=flush
在tomcat里的webapps\mondrian\WEB-INF\queries目录下,新建一个flush.jsp 如下:
<%@ page session="true" contentType="text/html; charset=ISO-8859-1" %>
<%@ taglib uri="http://www.tonbeller.com/jpivot" prefix="jp" %>
<%@ taglib uri="http://www.tonbeller.com/wcf" prefix="wcf" %>
<%@ taglib prefix="c" uri="http://java.sun.com/jstl/core" %>
<%
java.util.Iterator<mondrian.rolap.RolapSchema> schemaIterator = mondrian.rolap.RolapSchema.getRolapSchemas();
while(schemaIterator.hasNext()){
mondrian.rolap.RolapSchema schema = schemaIterator.next();
mondrian.olap.CacheControl cacheControl = schema.getInternalConnection().getCacheControl(null);
for (mondrian.olap.Cube cube : schema.getCubes()) {
cacheControl.flush(cacheControl.createMeasuresRegion(cube));
}
}
String redirectURL = request.getHeader("Referer");
response.sendRedirect(redirectURL);
%>