Re: not able to change keyspace name when Using 3rd Party Persistence (Cassandra) Together with Ignite Native Persistence

2021-01-06 Thread xmw45688
Thanks for your clarifications, and appreciated your suggestions and guidance. My college and I went to ignite-cassandra module, commented two lines, */testing purpose/*, in org.apache.ignite.cache.store.cassandra.CassandraCacheStoreFactory.getPersistenceSettings(), see the changes below.

Re: Can we disable/enable WAL of a cache with thin client

2021-01-06 Thread Naveen
Thanks Stephen How do we verify from the SQL console that WAL is disabled or enabled. Because I did set to nologging and did some bulk data ingestion, but not much improvement in the ingestion process. So i just wanted to check whether it has disabled the wal with this alter cache statement.

Re: [External]Re: Exporter usage of Ignite 2.8.0

2021-01-06 Thread facundo.maldonado
Hi everyone, is there a way to set up this via XML configuration? -- Sent from: http://apache-ignite-users.70518.x6.nabble.com/

Re: Can we disable/enable WAL of a cache with thin client

2021-01-06 Thread Stephen Darlington
There’s no similar API currently as far as I know, but you might be able to use a SQL command: ALTER TABLE cachename NOLOGGING; To reenable: ALTER TABLE cachename LOGGING; Regards, Stephen > On 6 Jan 2021, at 13:34, Naveen wrote: > > HI > > I was just trying to disable WAL for one of the

Can we disable/enable WAL of a cache with thin client

2021-01-06 Thread Naveen
HI I was just trying to disable WAL for one of the bulk data ingestion use case and we are using Java thin client, am not finding any method to disable WAL for a cache. Using thick client, this is how we do ignite.cluster().disableWal(cacheStr); OR is it not there for thin clients ? Thanks

Re: Re[4]: Questions related to check pointing

2021-01-06 Thread Raymond Wilson
I checked our code that creates the primary data region, and it does set the minimum and maximum to 4Gb, meaning there will be 1,000,000 pages in that region. The secondary data region is much smaller, and is set to min/max = 128 Mb of memory. The checkpoints with the "too many dirty pages"

Re: Failed to generate REDUCE query. Data table found:"

2021-01-06 Thread siva
Hi, please find the below given cache config and models class details. cache config:https://github.com/CP-Ram/DotNetIgniteQueryTestApp/blob/main/DotNetIgniteQueryTestApp/Program.cs model classes:https://github.com/CP-Ram/DotNetIgniteQueryTestApp/tree/main/DotNetIgniteQueryTestApp/Models Thanks.