Hi Naveen, Please refer to this page https://apacheignite.readme.io/docs/3rd-party-store. In short, you need to implement a CacheStore or use one of the standard implementations (CacheJdbcBlobStore, CacheJdbcPojoStore) and add it to your cache configuration. Also, you can set DataRegionConfiguration.persistenceEnabled=false to disable native persistence.
Thanks, Stan From: Naveen Sent: 9 марта 2018 г. 17:09 To: [email protected] Subject: Re: How to configure a cluster as a persistent, replicated SQLdatabase Hi Jose I was asking how can I configure Oracle DB as persistent layer. At the moment I am using the Ignite native persistence as persistent layer, but I would like to use Oracle DB as persistent layer. How can I do this, what changes I should do to the config file. My config file looks like this for native ignite persistence, what do I need to add for using Oracle as persistent layer <property name="dataStorageConfiguration"> <bean class="org.apache.ignite.configuration.DataStorageConfiguration"> <property name="defaultDataRegionConfiguration"> <bean class="org.apache.ignite.configuration.DataRegionConfiguration"> <property name="persistenceEnabled" value="true"/> </bean> </property> </bean> </property> Thanks Naveen -- Sent from: http://apache-ignite-users.70518.x6.nabble.com/
