On Mon, Oct 2, 2017 at 7:28 PM, Denis Magda <dma...@apache.org> wrote:
> > >> <property name="dataStorageConfiguration"> > >> <bean class="org.apache.ignite.configuration. > DataStorageConfiguration"> > >> <property name="systemCacheInitialSize" value="#{100 * > 1024 * 1024}"/> > >> <property name="defaultRegionConfiguration"> > >> <bean class="org.apache.ignite.configuration. > DataRegionConfiguration"> > >> <property name="maxSize" value="#{5 * 1024 * 102 * > 1024}"/> > >> </bean> > >> </property> > >> </bean> > >> </property> > > > > In other data regions persistence will be disabled by default. > > Ivan, how to get an instance to the default region bean and change a > parameter? Obviously, if the goal is to enable the persistence I don’t want > to create the default region bean from scratch. > Denis, I think this is the only way. If we don't create the defaultRegionConfiguration, then we have to make sure that all the properties are inherited from DataStorageConfiguration. From the feedback I have seen so far, folks think that the inheritance can get really confusing here.