Re: How to prevent Ignite downtime when adding tables & caches

2020-02-26 Thread devinbost
Sorry, ignore my last message. -- Sent from: http://apache-ignite-users.70518.x6.nabble.com/

Re: How to prevent Ignite downtime when adding tables & caches

2020-02-26 Thread devinbost
akurbanov wrote > Hello, > > There is no need to restart the cluster if you want to create a new cache > as > dynamic cache creation is supported: > https://apacheignite.readme.io/docs/jcache#section-dynamic-cache > > Do you use native persistence or do you run in-memory? > > If this doesn't

Re: How to prevent Ignite downtime when adding tables & caches

2020-02-21 Thread akorensh
Yes, Tables created dynamically in caches that use a persistent data region will be stored to disk. You can try by enabling persistence for the default data region. Create a test table, populate w/data, shutdown ignite then restart, data should be there. Thanks, Alex -- Sent

Re: How to prevent Ignite downtime when adding tables & caches

2020-02-21 Thread Devin Bost
We're using native persistence for each of them. Does dynamic cache creation work for tables? Is it possible to create tables dynamically that have persistence? Devin G. Bost On Wed, Feb 19, 2020 at 11:16 AM akurbanov wrote: > Hello, > > There is no need to restart the cluster if you want to

Re: How to prevent Ignite downtime when adding tables & caches

2020-02-19 Thread akurbanov
Hello, There is no need to restart the cluster if you want to create a new cache as dynamic cache creation is supported: https://apacheignite.readme.io/docs/jcache#section-dynamic-cache Do you use native persistence or do you run in-memory? If this doesn't work for you, could you please