Hi,

We set up a cache in the default-config.xml file, but we're having trouble
getting visibility into the cache's data. We'd like to be able to use SQL
queries (or something we can run in an ad-hoc CLI or web tool) to
occasionally inspect the data. 
1. Is there a way to inspect the data in an ad-hoc way without converting
the cache to a table?
2. How can we convert the cache to a table-representation? If we can do that
without losing data, that would be ideal. (We currently are using native
persistence on the cache.)

Here's the config for the cache. (I'm omitting the other parts of the
default-config.xml file.)

<bean class="org.apache.ignite.configuration.CacheConfiguration">
                <property name="name" value="ignite-internal-cache-0"/>
                <property name="atomicityMode" value="ATOMIC"/>
                <property name="backups" value="2"/>
                <property name="eagerTtl" value="true"/>
                <property name="cacheMode" value="PARTITIONED"/> 
                <property name="statisticsEnabled" value="true"/>
                <property name="expiryPolicyFactory">
                  <bean class="javax.cache.expiry.CreatedExpiryPolicy"
factory-method="factoryOf">
                      <constructor-arg>
                          <bean class="javax.cache.expiry.Duration">
                              <constructor-arg value="HOURS"/>
                              <constructor-arg value="12"/>
                          </bean>
                      </constructor-arg>
                  </bean>
              </property>
            </bean>






--
Sent from: http://apache-ignite-users.70518.x6.nabble.com/

Reply via email to