<div dir="ltr">If the cache is empty but you get MDX results back, then yes, something is wrong. Could be ghosts, or worse, giant-zombie-ghosts; Half giant, half zombie, half ghost.<div><br></div><div style>Can you give more details on how things are setup? I&#39;m not certain I understand exactly how you&#39;ve setup things. How are you creating the Mondrian instance? Are you using the olap4j-xmlaservet project? Have you subclasses the servlet with your own code?</div>

</div><div class="gmail_extra"><br><br><div class="gmail_quote">On Wed, Jul 10, 2013 at 11:10 AM, Martijn van den Broek <span dir="ltr">&lt;<a href="mailto:martijn@basesoft.com" target="_blank">martijn@basesoft.com</a>&gt;</span> wrote:<br>

<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
  
    
  
  <div text="#000000" bgcolor="#FFFFFF">
    <div>Thanks for your quick reply. I forgot
      to mention I also have tried the JdbcConnectionUuid. Ive tried
      again:<br>
      <br>
      If I understand correctly, for XMLA no changes are needed except a
      modification in datasources.xml which now looks like:<br>
      <br>
             
&lt;DataSourceInfo&gt;Provider=mondrian;JdbcDrivers=com.mysql.jdbc.Driver;Jdbc=jdbc:mysql://<a href="http://127.0.0.1:3306/iqportal?user=xxx&amp;password=xxx;Catalog=" target="_blank">127.0.0.1:3306/iqportal?user=xxx&amp;amp;password=xxx;Catalog=</a><a>file:///home/martijn/workspace_ee/.metadata/.plugins/org.eclipse.wst.server.core/tmp2/wtpwebapps/iqube/WEB-INF/queries/basesoft.settings.martijn.IQuest.xml;UseContentChecksum=true;JdbcConnectionUuid=basesoft.settings.martijn.IQuest</a>&lt;/DataSourceInfo&gt;<br>


      <br>
      The datasource_info that the XMLRPC servlet uses is now: <br>
      <br>
Provider=mondrian;JdbcDrivers=com.mysql.jdbc.Driver;Jdbc=jdbc:mysql://<a href="http://127.0.0.1:3306/iqportal?user=root&amp;password=f00b4r;Catalog=" target="_blank">127.0.0.1:3306/iqportal?user=root&amp;password=f00b4r;Catalog=</a><a>file:///home/martijn/workspace_ee/.metadata/.plugins/org.eclipse.wst.server.core/tmp2/wtpwebapps/iqube/WEB-INF/queries/basesoft.settings.martijn.IQuest.xml;UseContentChecksum=true;JdbcConnectionUuid=basesoft.settings.martijn.IQuest</a><br>


      <br>
      However XMLRPC servlet cache still seems to be empty. Also
      re-executing the MDX query does no SQL queries against the
      database. Could anything else be wrong here?<div><div class="h5"><br>
      <br>
      <br>
      <br>
      <br>
      On 10/07/13 15:37, Luc Boudreau wrote:<br>
    </div></div></div><div><div class="h5">
    <blockquote type="cite">
      <div dir="ltr">You might not be hitting the same schema in cache.
        Using the datasource + checksum is tricky. If a single character
        changes in the schema, the checksum changes and you can&#39;t get a
        cache hit anymore, thus fragmenting your cache by creating a
        bunch of different schemas.
        <div>
          <br>
        </div>
        <div>One thing you might look into, the JdbcConnectionUuid
          connection property. If defined, it forces Mondrian to use a
          given schema from the pool. Be wary though, make sure that you
          don&#39;t assign the same UUID to two different schemas, or you&#39;ll
          get weird things happening.</div>
        <div><br>
        </div>
        <div>Luc</div>
      </div>
      <div class="gmail_extra"><br>
        <br>
        <div class="gmail_quote">On Wed, Jul 10, 2013 at 5:08 AM,
          Martijn van den Broek <span dir="ltr">&lt;<a href="mailto:martijn@basesoft.com" target="_blank">martijn@basesoft.com</a>&gt;</span> wrote:<br>
          <blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Hello
            fellow mondrians,<br>
            <br>
            We are running Mondrian using XMLA (compiled current git
            master) in a<br>
            Tomcat 6 instance defined as following in web.xml:<br>
            <br>
              &lt;servlet&gt;<br>
               
            &lt;servlet-name&gt;MondrianXmlaServlet&lt;/servlet-name&gt;<br>
            <br>
&lt;servlet-class&gt;mondrian.xmla.impl.DynamicDatasourceXmlaServlet&lt;/servlet-class&gt;<br>
                 ...<br>
              &lt;/servlet&gt;<br>
            <br>
            Next to that in the same web.xml, we have our own XMLRPC
            servlet for<br>
            controlling various mondrian tasks like writing schema files
            and<br>
            controlling cache:<br>
            <br>
              &lt;servlet&gt;<br>
               
            &lt;servlet-name&gt;IQubeXmlRpcServlet&lt;/servlet-name&gt;<br>
               
&lt;servlet-class&gt;com.basesoft.iqube.xml.IQubeXmlRpcServlet&lt;/servlet-class&gt;<br>
                 ...<br>
             &lt;/servlet&gt;<br>
            <br>
            In that second xmlrpc servlet a clearCache method is defined
            which<br>
            accepts a mondrian connectionstring similar as the code
            below:<br>
            <br>
                    String datasource_info =<br>
&quot;Provider=mondrian;JdbcDrivers=com.mysql.jdbc.Driver;Jdbc=jdbc:mysql://<a href="http://127.0.0.1:3306/iqportal?user=xxx&amp;password=xxx;Catalog=file:///home/martijn/workspace_ee/.metadata/.plugins/org.eclipse.wst.server.core/tmp2/wtpwebapps/iqube/WEB-INF/queries/basesoft.settings.martijn.IQuest.xml;UseContentChecksum=true" target="_blank">127.0.0.1:3306/iqportal?user=xxx&amp;password=xxx;Catalog=file:///home/martijn/workspace_ee/.metadata/.plugins/org.eclipse.wst.server.core/tmp2/wtpwebapps/iqube/WEB-INF/queries/basesoft.settings.martijn.IQuest.xml;UseContentChecksum=true</a>;&quot;;<br>


            <br>
                    Connection conn =
            DriverManager.getConnection(datasource_info,<br>
            null);<br>
                    PrintWriter pw = new PrintWriter(System.out, true);<br>
                    CacheControl cacheControl =
            conn.getCacheControl(pw);<br>
            <br>
                    for (Cube cube : conn.getSchema().getCubes()) {<br>
            <br>
                        CacheControl.CellRegion region =<br>
            cacheControl.createMeasuresRegion(cube);<br>
            <br>
                        System.out.println(&quot;!! clearMemberCache: cache
            state before:&quot;);<br>
                        cacheControl.printCacheState(pw, region);<br>
            <br>
                        cacheControl.flush(region);<br>
            <br>
                        System.out.println(&quot;!! clearMemberCache: cache
            state after:&quot;);<br>
                        cacheControl.printCacheState(pw, region);<br>
            <br>
                        System.out.println(&quot;Cleared cache for cube &#39;&quot; +<br>
            cube.getName() + &quot;&#39;&quot;);<br>
                    }<br>
            <br>
            Now if an MDX query is executed against the XMLA server and
            then the<br>
            clearCache() method on the XMLRPC servlet is called, the
            cache state is<br>
            printed as empty. It is not possible to clear the mondrian
            cache this<br>
            way anymore. This code used to work in mondrian 3.5 but it
            seems the API<br>
            has changed. My guess is that I am requesting the mondrian
            connection<br>
            wrong due to the recent olap4j changes.<br>
            <br>
            Any hints on how to get a proper connection? Any help is
            appreciated.<br>
            <br>
            <br>
            <br>
            <br>
            <br>
            <br>
            <br>
            <br>
            <br>
            --<br>
            Kind regards,<br>
            <br>
            Martijn van den Broek<br>
            BaseSoft Solutions B.V.<br>
            <br>
            Herengracht 564<br>
            1017 CH Amsterdam<br>
            The Netherlands<br>
            <br>
            <a href="http://www.basesoftsolutions.com/" target="_blank">http://www.basesoftsolutions.com/</a><br>
            +31(0)206847087<br>
            <br>
            Confidentiality notice<br>
**********************************************************************<br>
            This email and any files transmitted with it are
            confidential and<br>
            intended solely for the use of the individual or entity to
            whom they<br>
            are addressed. If you have received this email in error
            please notify<br>
            the system manager.<br>
**********************************************************************<br>
            <br>
            <br>
            <br>
            _______________________________________________<br>
            Mondrian mailing list<br>
            <a href="mailto:Mondrian@pentaho.org" target="_blank">Mondrian@pentaho.org</a><br>
            <a href="http://lists.pentaho.org/mailman/listinfo/mondrian" target="_blank">http://lists.pentaho.org/mailman/listinfo/mondrian</a><br>
          </blockquote>
        </div>
        <br>
      </div>
      <br>
      <fieldset></fieldset>
      <br>
      <pre>_______________________________________________
Mondrian mailing list
<a href="mailto:Mondrian@pentaho.org" target="_blank">Mondrian@pentaho.org</a>
<a href="http://lists.pentaho.org/mailman/listinfo/mondrian" target="_blank">http://lists.pentaho.org/mailman/listinfo/mondrian</a>
</pre>
    </blockquote>
    <br>
    <br>
    <pre cols="72">-- 
Kind regards,

Martijn van den Broek
BaseSoft Solutions B.V.

Herengracht 564
1017 CH Amsterdam
The Netherlands

<a href="http://www.basesoftsolutions.com/" target="_blank">http://www.basesoftsolutions.com/</a>
+31(0)206847087

Confidentiality notice
**********************************************************************
This email and any files transmitted with it are confidential and
intended solely for the use of the individual or entity to whom they
are addressed. If you have received this email in error please notify
the system manager.
**********************************************************************



</pre>
  </div></div></div>

<br>_______________________________________________<br>
Mondrian mailing list<br>
<a href="mailto:Mondrian@pentaho.org">Mondrian@pentaho.org</a><br>
<a href="http://lists.pentaho.org/mailman/listinfo/mondrian" target="_blank">http://lists.pentaho.org/mailman/listinfo/mondrian</a><br>
<br></blockquote></div><br></div>