动态模式处理 - Pentaho Session

时间:2015-02-20 11:29:23

标签: security session pentaho cube

我在Pentaho中使用了动态模式处理。 我可以看到在Cube(saiku报告)中看到限制,但问题在于用户会话(我有最后一个连接用户的结果,直到我再次刷新立方体)

是否有可能摆脱刷新任务?

感谢。

1 个答案:

答案 0 :(得分:1)

<强>斋宫

我在Saiku遇到了同样的问题,我通过在biserver-ce/pentaho-solutions/system/saiku/plugin.spring.xml上将属性userAware设置为true来解决它:

<bean id="connectionManager" class="org.saiku.plugin.PentahoSecurityAwareConnectionManager" init-method="init">
     <property name="dataSourceManager" ref="pentahoDsManager" />
     <property name="userAware" value="true" />
     <property name="connectionPooling" value="true" />
</bean>

<强> CDA

我也遇到了与CDA相同的问题,它在用户登录时没有刷新/更新架构。它始终使用登录的第一个用户使用相同的架构。我还没有找到解决办法......