Mondrian模式缓存控制



我在BI服务器上清除Mondrian架构缓存时遇到了困难。我去工具 -> 刷新 -> Mondrian Cache 。但是 clear_mondrian_schema_cache.xaction 似乎没有清除缓存。

我需要结果才能随着源数据的更改而更新,但是每次发布查询时,我似乎都会继续缓存结果。

有人可以帮助我使用API启用定期架构缓存刷新?

我使用以下bash脚本。在没有任何API FAFF的情况下效果很好:)。它等效于在控制台中单击tools > refresh > mondrian cache

变量schema是您在架构工作台应用程序中看到的模式的名称

#!bin/bash
#
# script to clean pentaho cache
user=XXX
pass=XXX
host=localhost
schema=Reporting%20schemas
wget --no-check-certificate http://${host}:2310/pentaho/content/analyzer/ajax/clearCache?catalog=${schema}&userid=${user}&password=${pass}

信用pentaho支持

最新更新