Re: Defrag?

2021-06-28 Thread Ilya Kasnacheev
. Regards, -- Ilya Kasnacheev пн, 28 июн. 2021 г. в 17:34, Ryan Trollip : > Is this why the native disk storage just keeps growing and does not reduce > after we delete from ignite using SQL? > We are up to 80GB on disk now on some instances. We implemented a custom > archiving feature t

Re: Defrag?

2021-06-24 Thread Ilya Kasnacheev
Hello! You can probably drop the entire cache and then re-populate it via loadCache(), etc. Regards, -- Ilya Kasnacheev ср, 23 июн. 2021 г. в 21:47, Ryan Trollip : > Thanks, Ilya, we may have to consider moving back to non-native storage > and caching more selectively as the perfo

Re: Defrag?

2021-06-23 Thread Ilya Kasnacheev
Hello! I don't think there's anything ready to use, but "killing performance" from fragmentation is also not something reported too often. Regards, -- Ilya Kasnacheev ср, 16 июн. 2021 г. в 04:39, Ryan Trollip : > We see continual very large growth to data with ignite native. We

Re: Ignite client hangs forever when performing cache operation with 6 servers, works with 3 servers

2021-06-23 Thread Ilya Kasnacheev
Hello! Unfortunately, these links are dead (404). If it's still relevant, please consider re-uploading. Regards, -- Ilya Kasnacheev пн, 14 июн. 2021 г. в 21:59, mapeters : > Problem: Ignite client hangs forever when performing a cache operation. We > have 6 ignite servers r

Re: Restoring Ignite cluster from the persistent store

2021-06-23 Thread Ilya Kasnacheev
Hello! Why do you need to change the consistent id of the restored node at all? Regards, -- Ilya Kasnacheev чт, 17 июн. 2021 г. в 13:52, Naveen : > Hi > > AM using Ignite 2.8.1, am trying to bring up new cluster by restoring the > persistent store, wal, work directory of an exis

Re: Conditional data Preloading from third party persistence

2021-06-22 Thread Ilya Kasnacheev
Hello! I guess that your cache store implementation is using BinaryObject to populate cache instead of POJO. You can try ((BinaryObject)v).deserialize(). Regards, -- Ilya Kasnacheev пн, 21 июн. 2021 г. в 14:55, Kamlesh Joshi : > Hi Igniters, > > > > Am trying to preload ce

Re: Scan query ClassNotFoundException

2021-06-21 Thread Ilya Kasnacheev
Hello! Key/value classes need to be manually deployed to server node but the listener code itself may be peer loaded from client. Regards, -- Ilya Kasnacheev пт, 18 июн. 2021 г. в 10:31, ict.management.trexon < ict.management.tre...@gmail.com>: > If I were to do this, it w

Re: Scan query ClassNotFoundException

2021-06-17 Thread Ilya Kasnacheev
Hello! I guess that SimplePojo class is loaded in a different classloader which is not Ignite's classloader. You can start IgniteConfiguration with .setClassLoader(SimplePojo.class.getClassLoader()); Regards. -- Ilya Kasnacheev чт, 17 июн. 2021 г. в 16:48, ict.management.trexon

Re: SQL EXPLAIN ANALYZE

2021-06-17 Thread Ilya Kasnacheev
Hello! This is unfortunate. Do we have a ticket for it? As a workaround, one may set query warning timeout to 1 ms and then see these detailed messages in the log. Regards, -- Ilya Kasnacheev чт, 17 июн. 2021 г. в 14:31, : > Actually this is true that neither plain explain nor expl

Re: peerClassLoadingEnabled not work

2021-06-17 Thread Ilya Kasnacheev
Hello! Peer class loading will not peer load entities (key/value types), it will only peer load compute units, listeners, services, etc. Regards, -- Ilya Kasnacheev ср, 16 июн. 2021 г. в 01:06, Vladislav Shipugin : > Hello! > > I’m trying to use DataStreamer and have ClassNotFound

Re: SQL EXPLAIN ANALYZE

2021-06-17 Thread Ilya Kasnacheev
Hello! What happens if you just do EXPLAIN ? Regards, -- Ilya Kasnacheev пт, 11 июн. 2021 г. в 14:34, Devakumar J : > Hi, > > In general. I can see in server logs if any query executes longer, log > shows > Long running query with information about scan count and index usag

Re: Scan query ClassNotFoundException

2021-06-17 Thread Ilya Kasnacheev
Hello! Do you actually have the POJO class on the server side? Do you have peer class loading enabled? Regards, -- Ilya Kasnacheev пт, 11 июн. 2021 г. в 11:37, ict.management.trexon < ict.management.tre...@gmail.com>: > Hi, why the scanquery return me this error? > I've a cach

Re: Enable Native persistence only for one node of the cluster

2021-06-17 Thread Ilya Kasnacheev
er to hold baseline topology/metastore data between restarts. Regards, -- Ilya Kasnacheev пн, 14 июн. 2021 г. в 15:45, Krish : > Is it possible to have a cluster topology where native persistence is > enabled > only for one node and all other nodes use in-memory cache store *without &g

Re: Intermittent Error

2021-06-17 Thread Ilya Kasnacheev
Hello! What is the connection string of your JDBC connection? Regards. -- Ilya Kasnacheev ср, 16 июн. 2021 г. в 04:20, Moshe Rosten : > Greetings, > > I'm attempting to retrieve a list of values from this query line: > > List> res = conn.sqlQuery("select * from TW

Re: AtomicReference issue with different userVersions

2021-06-17 Thread Ilya Kasnacheev
Hello! Tricky exception message leading to usability issues is a bug all right. Especially if it is possible to check for this case earlier and give a proper warning/not face the issue. Regards, -- Ilya Kasnacheev пт, 11 июн. 2021 г. в 10:59, tanshuai : > I don't think we should tr

Re: Split brain in 2.9.0?

2021-06-11 Thread Ilya Kasnacheev
as opposed to two surviving ones, which seem to have restarted and rejoined to it. What's the specific ordering of events? Regards, -- Ilya Kasnacheev пт, 11 июн. 2021 г. в 04:30, Devin Bost : > We encountered a situation after a node unexpectedly went down and came > back up. > After it came b

Re: SQL EXPLAIN ANALYZE

2021-06-11 Thread Ilya Kasnacheev
Hello! I can remember seeing scan count in regular EXPLAINs. Regards, -- Ilya Kasnacheev пт, 11 июн. 2021 г. в 08:22, Devakumar J : > Hi, > > I see the ANALYZE syntax doesn't show the scan count. > > Is this not supported in ignite? > > Thanks & Regards, > Devaku

Re: unsubscibe

2021-06-10 Thread Ilya Kasnacheev
Hello! You need to send a message to user-unsubscr...@ignite.apache.org with subject “Unsubscribe" Regards, -- Ilya Kasnacheev чт, 10 июн. 2021 г. в 17:06, pinak sawhney : > >

Re: Namespace and DsicoverSpi Properties for Ignite running on Kubernetes

2021-06-10 Thread Ilya Kasnacheev
Hello! I don't think that you need to have exactly the same IP finder, however, due to how K8S works your nodes outside K8S may not be able to connect to nodes within K8S (including thick clients). Regards, -- Ilya Kasnacheev ср, 26 мая 2021 г. в 23:58, PunxsutawneyPhil3 : > I have

Re: Restart ignite on segmentation

2021-06-10 Thread Ilya Kasnacheev
Hello! It should be OK. Ignite tests start, stop and segment thousands of nodes in a single JVM. Regards, -- Ilya Kasnacheev чт, 10 июн. 2021 г. в 14:06, jenny winsor : > Is it okay to start ignite again on a segmentation without restarting the > JVM? StopNodeFailureHandler will jus

Re: Exception on CacheEntryProcessor invoke (2.10.0)

2021-06-10 Thread Ilya Kasnacheev
but not in server nodes'. Regards, -- Ilya Kasnacheev вт, 25 мая 2021 г. в 16:04, ihalilaltun : > Hi, > > here is the debug log ignite.zip > <http://apache-ignite-users.70518.x6.nabble.com/file/t2515/ignite.zip> > > in the mean time i'll try to simplfy u

Re: Bug in GridCacheWriteBehindStore

2021-06-10 Thread Ilya Kasnacheev
Hello! I guess so. I think you should file a ticket against Ignite JIRA. Regards, -- Ilya Kasnacheev ср, 9 июн. 2021 г. в 20:26, gigabot : > There's a bug in GridCacheWriteBehindStore in the flusher method. > > > https://github.com/apache/ignite/blob/master/modules/core/src/m

Re: Programmatically triggering of write behind

2021-06-09 Thread Ilya Kasnacheev
Hello! You may call org.apache.ignite.internal.processors.cache.store.GridCacheWriteBehindStore#forceFlush when deciding to evict some entries, assuming you are doing it manually. Regards, -- Ilya Kasnacheev ср, 9 июн. 2021 г. в 11:21, r_s : > Hello All, > I am running a partitioned

Re: Sorting result of ScanQuery

2021-06-09 Thread Ilya Kasnacheev
Hello! It sounds like you need some data normalization plus SQL secondary indexes. Regards, -- Ilya Kasnacheev чт, 3 июн. 2021 г. в 17:11, Taner Ilyazov : > That's my concern. Because the requirements I have is persisting an Object > with a complex nested structure, which can't be chan

Re: getOrCreateCache hangs when cacheStore uses spring resources

2021-06-09 Thread Ilya Kasnacheev
is ready and Ignite initialization has finished. Regards, -- Ilya Kasnacheev чт, 27 мая 2021 г. в 14:20, Orange : > Calling ignite.getOrCreateCache(cacheConfig) results in the thread getting > blocked. I've noticed this does not happen when the cacheStore does not use > spring resource

Re: Clients got disconnected during the endurance testing

2021-06-09 Thread Ilya Kasnacheev
Hello! This may happen if your cluster has a long PME and connection pool is exhausted. You need to check server nodes' logs for suspicious messages. Regards, -- Ilya Kasnacheev чт, 3 июн. 2021 г. в 10:35, Naveen : > HI All > > We are using Ignite 2.8.1 and carrying the endur

Re: AtomicReference issue with different userVersions

2021-06-09 Thread Ilya Kasnacheev
Hello! Is this a bug which needs to be addressed? If so, can you file a ticket against Ignite JIRA? Thanks, -- Ilya Kasnacheev ср, 9 июн. 2021 г. в 11:19, tanshuai : > < > http://apache-ignite-users.70518.x6.nabble.com/file/t3172/20210609161010.jpg> > > > I may have

Re: Peer ClassLoading Issue | Apache Ignite 2.10 with Spring Boot 2.3

2021-06-09 Thread Ilya Kasnacheev
Hello! The "Failed to resolve class name" error also looks like the https://issues.apache.org/jira/browse/IGNITE-14856 Regards, -- Ilya Kasnacheev вс, 9 мая 2021 г. в 08:28, : > Hi, > > > > We are trying to use ignite for the first time in our project. We a

Re: ignite server restarted after Critical system error detected.

2021-06-09 Thread Ilya Kasnacheev
informative ^ No, REPLICATED caches will not replicate values loaded from the cache store. It is assumed that it may be fetched transparently from underlying store. For REPLICATED cache there's nothing to rebalance when node leaves. Regards, -- Ilya Kasnacheev чт, 3 июн. 2021 г. в 11:06, xmw45688

Re: Ignite throws "Failed to resolve class name" Exception

2021-06-09 Thread Ilya Kasnacheev
Hello! I can see a very similar issue filed: https://issues.apache.org/jira/browse/IGNITE-14856 There are hopes that it gets addresses in 2.11 Regards, -- Ilya Kasnacheev чт, 3 июн. 2021 г. в 14:37, Aleksandr Shapkin : > Hello! > > It seems that you are trying to deploy DTO using p

Re: Execute Ignite Callable Jobs with set priorities

2021-05-25 Thread Ilya Kasnacheev
Hello! I don't think so. Regards, -- Ilya Kasnacheev вт, 25 мая 2021 г. в 14:36, Krish : > ilya.kasnacheev wrote > > This means that Ignite prioritizing is a poor fit for you and you may > need > > to roll out your own, perhaps based on IgniteQueue. > > Does ignit

Re: Exception on CacheEntryProcessor invoke (2.10.0)

2021-05-25 Thread Ilya Kasnacheev
cannot be peer loaded. Since these errors do not seem to contain stack trace, some debugging may be needed. Regards, -- Ilya Kasnacheev пн, 24 мая 2021 г. в 18:47, ihalilaltun : > Hi, > > I've run more detailed tests during the weekend and i can surely tell that > problem is

Re: System.InvalidOperationException: 'No coercion operator is defined between types 'Apache.Ignite.Core.Impl.Binary.BinaryObjectBuilder' and 'System.DateTime'

2021-05-24 Thread Ilya Kasnacheev
Hello! Maybe you are doing something wrong which only becomes apparent in the persistent setup. Can you share a runnable reproducer project which exhibits the behavior? Regards, -- Ilya Kasnacheev пт, 21 мая 2021 г. в 20:20, Josh Katz : > Hi Ilya, > > > > I’m getting this

Re: Exception on CacheEntryProcessor invoke (2.10.0)

2021-05-24 Thread Ilya Kasnacheev
Hello! If you can provide steps to reproduce, I can try to do that. Regards, -- Ilya Kasnacheev пт, 21 мая 2021 г. в 18:45, ihalilaltun : > hi > > the case can be reproduced only by upgrading from 2.7.6 to 2.10.0 with > existing data. can you run that kind of re

Re: select * throws cannot find schema for object with compact footer

2021-05-24 Thread Ilya Kasnacheev
. Maybe you have lost the contents of binary_meta directory on the nodes or something like that. Regards, -- Ilya Kasnacheev пн, 24 мая 2021 г. в 15:50, Naveen : > HI > > We are using Ignite 2.8.1 > > when we run select * table, it throws below exception, how ever querying >

Re: Exception on CacheEntryProcessor invoke (2.10.0)

2021-05-21 Thread Ilya Kasnacheev
Hello! The class was probably not found. Without steps to reproduce I can't check anything further. Regards, -- Ilya Kasnacheev пт, 21 мая 2021 г. в 16:10, ihalilaltun : > Hi, > sorry but i cannot share such a project, company policies restrtics it. > > I tried to reproduce it w

Re: System.InvalidOperationException: 'No coercion operator is defined between types 'Apache.Ignite.Core.Impl.Binary.BinaryObjectBuilder' and 'System.DateTime'

2021-05-21 Thread Ilya Kasnacheev
Hello! For starters, it looks like you're putting a BinaryObjectBuilder into cache instead of BinaryObjectBilder.Build() return value. Regards, -- Ilya Kasnacheev пт, 21 мая 2021 г. в 01:46, Josh Katz : > Using .NET UnitTest to connect to the cluster and persistence enabled. > >

Re: Running sql query on partitioned cache

2021-05-21 Thread Ilya Kasnacheev
Hello! 1. You can try to reproduce the same issue in Java. 2. You should almost exclusively use cache.Size(). Regards, -- Ilya Kasnacheev пт, 21 мая 2021 г. в 12:02, rakshita04 : > Hi Ilya, > > 1. We cant share the running exe as its for ARM plus it requires some > specific

Re:

2021-05-21 Thread Ilya Kasnacheev
Hello! Please send mail to user-unsubscr...@ignite.apache.org to unsubscribe from the list. Regards, -- Ilya Kasnacheev пт, 21 мая 2021 г. в 11:11, Hitesh Nandwana : > Unsubscribe >

Re: Execute Ignite Callable Jobs with set priorities

2021-05-20 Thread Ilya Kasnacheev
Hello! It just sounds that you want to prioritize some other resource rather than Ignite compute capacity, if you want cluster-wide priorities. This means that Ignite prioritizing is a poor fit for you and you may need to roll out your own, perhaps based on IgniteQueue. Regards, -- Ilya

Re: Data replication from kafka-topic to ignite cluster

2021-05-20 Thread Ilya Kasnacheev
Hello! Maybe you should ask on Kafka list about the specifics of its class loading. "org.apache.kafka.connect.runtime.isolation" suggests that there may be some limitations. Regards, -- Ilya Kasnacheev пн, 17 мая 2021 г. в 13:32, shubhamshirur : > Thank you sir for replying.

Re: Migration from Apache ignite 2.7.0 to 2.10.0

2021-05-20 Thread Ilya Kasnacheev
Hello! 2.10.0 is definitely more stable than 2.7.0. Regards, -- Ilya Kasnacheev пн, 17 мая 2021 г. в 08:00, BEELA GAYATRI : > Dear Team, > >We are planning to migrate Apache 2.7.0 to 2.10.0. We have seen few > warnings in 2.10.0 release notes. Can we move to 2.10.0 i

Re: Running sql query on partitioned cache

2021-05-20 Thread Ilya Kasnacheev
Hello! 1. Hard to say what happens here. Do you have a runnable reproducer for this behavior? Can you share? 2. https://ignite.apache.org/releases/latest/cppdoc/classignite_1_1cache_1_1Cache.html#a03574797da901a76180aad88476ef8ce - Cache.Size()? Regards, -- Ilya Kasnacheev чт, 20 мая 2021 г

Re: Partitioned cache behaviour when saving the same key on different nodes

2021-05-20 Thread Ilya Kasnacheev
Hello! For every key there is a primary node. Both puts will happen on that node in some order. Please see https://ignite.apache.org/docs/latest/data-modeling/data-partitioning Regards, -- Ilya Kasnacheev чт, 20 мая 2021 г. в 18:10, r_s : > Hi all, > > I am trying to understand wha

Re: Multiple ignite nodes crashed at the same time due to "Maximum number of retries 100000 reached for Put operation" error

2021-05-20 Thread Ilya Kasnacheev
Hello! This looks like a PDS corruption to me. Can you by chance share persistence files from problematic node? I am assuming that it fails every time on restart? Regards, -- Ilya Kasnacheev чт, 20 мая 2021 г. в 12:52, Lo, Marcus : > Hi, > > > > We have a 4 node ignite clust

Re: Exception on CacheEntryProcessor invoke (2.10.0)

2021-05-20 Thread Ilya Kasnacheev
Hello! Can you please share a runnable reproducer project which works on previous version but fails on 2.10? Regards, -- Ilya Kasnacheev чт, 20 мая 2021 г. в 17:08, ihalilaltun : > Hi igniters, > > recenlty we have upgraded from 2.7.6 to 2.10.0 and some of > cacheentryproces

Re: ignite read stale data from backup node

2021-05-19 Thread Ilya Kasnacheev
Hello! Can you please share a runnable reproducer project? You may use github. Regards, -- Ilya Kasnacheev вт, 18 мая 2021 г. в 14:55, guetsxjm : > Hi Ignites, > > I ran into in-consistency data issues on version 2.8.1. I have three nodes > run as a cluster and the cache c

Re: Failed to Scan query data by partition index after insert data using DML

2021-05-13 Thread Ilya Kasnacheev
Hello! You need to either use .withKeepBinary(), or provide a Java class with same fields as your table value has, so that it can be natively mapped. Please see https://www.gridgain.com/docs/latest/developers-guide/SQL/sql-key-value-storage Regards, -- Ilya Kasnacheev сб, 8 мая 2021 г. в 03

Re: Client node disconnected from cluster

2021-05-13 Thread Ilya Kasnacheev
Hello! For some reason the client node failed to send metrics in 30,000 ms (half minute). Not sure what to do here. Insufficient memory? Laptop went to sleep? Disk swapping? Garbage collection? You can also increase the listed parameter. Regards, -- Ilya Kasnacheev чт, 6 мая 2021 г. в 14:46

Re: Peer ClassLoading Issue | Apache Ignite 2.10 with Spring Boot 2.3

2021-05-13 Thread Ilya Kasnacheev
Hello! Peer class loading will not peer load key-value classes so you need to have them on server side if running code there (or use cache.withKeepBinary()). Regards, -- Ilya Kasnacheev ср, 12 мая 2021 г. в 09:57, Vasily Laktionov : > Hi, > Try cacheConfiguration.setPeerClassLoadingE

Re: Ignite throws "Failed to resolve class name" Exception

2021-05-13 Thread Ilya Kasnacheev
to reference them in server-running code. Regards, -- Ilya Kasnacheev чт, 13 мая 2021 г. в 15:20, Ilya Kasnacheev : > Hello! > > Can you share a sample of code which causes the issue, as well as cache > configuration? > > Regards, > -- > Ilya Kasnacheev > > > пт, 7

Re: Ignite throws "Failed to resolve class name" Exception

2021-05-13 Thread Ilya Kasnacheev
Hello! Can you share a sample of code which causes the issue, as well as cache configuration? Regards, -- Ilya Kasnacheev пт, 7 мая 2021 г. в 21:04, tsipporah22 : > Hi experts, > > I'm running ignite server node in k8s and recently I upgraded ignite to > 2.10.0. Ignite is starte

Re: Execute Ignite Callable Jobs with set priorities

2021-05-13 Thread Ilya Kasnacheev
Hello! Just make sure to use new PriorityQueueCollisionSpi().setStarvationPreventionEnabled(false); otherwise you may get sorting errors on newer JVMs. Regards, -- Ilya Kasnacheev чт, 13 мая 2021 г. в 11:31, Stephen Darlington < stephen.darling...@gridgain.com>: > Yes, it’s con

Re: Query with join hangs on ignite thick client

2021-05-13 Thread Ilya Kasnacheev
Hello! Are you sure that your thick client has enough memory for reduce phase? It may boil down to the fact that servers have more RAM doing join/aggregation. Can you collect heap/thread dumps during the hanging and check it to see what happens? Regards, -- Ilya Kasnacheev ср, 5 мая 2021 г

Re: Please unsubscribe me

2021-05-13 Thread Ilya Kasnacheev
Hello! You need to send an email to user-unsubscr...@ignite.apache.org Regards, -- Ilya Kasnacheev ср, 12 мая 2021 г. в 19:13, Bellrose, Brian : > I tried to unsubscribe through the site, but I still get emails. Please > unsubscribe my email. > > Brian > *This email and

Re: ClassNotFoundException in Ignite cron occasionally

2021-05-12 Thread Ilya Kasnacheev
Hello! Did you come around to solve the issue? Can you please share your findings with our community? Regards, -- Ilya Kasnacheev ср, 14 апр. 2021 г. в 17:39, mohdgadi : > I am running ignite cron in ignite version 2.8.1. But I am facing the below > exception occasionally on cor

Re: Kafka connector module

2021-05-11 Thread Ilya Kasnacheev
Hello! Please take a look at https://github.com/apache/ignite-extensions/tree/master/modules/kafka-ext Regards, -- Ilya Kasnacheev вт, 11 мая 2021 г. в 16:03, facundo.maldonado : > In many posts here I saw a reference to this repository > https://github.com/apache/ignite/tree/master/m

Re: [GridCacheMapEntry] Failed to update counter for atomic cache

2021-05-07 Thread Ilya Kasnacheev
Hello! Can you please share complete log from that node? It seems that the cache for which this Continuous Query was triggered suddenly went away. Regards, -- Ilya Kasnacheev пт, 7 мая 2021 г. в 01:09, Jigna : > Hi Team, I got below exception on my ignite server node. Would you ple

Re: JMX Exporters with Ignite

2021-05-06 Thread Ilya Kasnacheev
Hello! It will always add this number by default. You need to restart all nodes with this setting to get rid of it. Regards, -- Ilya Kasnacheev ср, 5 мая 2021 г. в 14:31, Naveen : > Thanks Ilya, it works and resolve my issue to an extent, but need to > restart > all the nod

Re: Setting the threshold limits for SQL oeprations

2021-05-05 Thread Ilya Kasnacheev
tune query pool to change how many parallel query threads may utilize CPU, you may also tune query parallelism to uptick CPU usage by some queries. Regards, -- Ilya Kasnacheev вс, 2 мая 2021 г. в 16:33, Naveen : > Hello Everyone > > I have seen somewhere that we can set the limi

Re: Help with affinityRun on collocated ignite queue

2021-05-05 Thread Ilya Kasnacheev
Hello! I don't understand your question. A collocated queue is located on a single node, but you still need a method to run code on that specific node, don't you? The benefit is presumably shorter round-trip times. Regards, -- Ilya Kasnacheev вт, 4 мая 2021 г. в 18:50, ps594 : > I am try

Re: JMX Exporters with Ignite

2021-05-05 Thread Ilya Kasnacheev
: -DIGNITE_MBEAN_APPEND_CLASS_LOADER_ID=false Regards, -- Ilya Kasnacheev ср, 5 мая 2021 г. в 10:40, Naveen : > Hello ALl > > We are using Ignite 2.8.1 and have JMX exporters running on each node and > everything seems to be working fine. > > Earlier it used to generate the metrics with the below 3

Re: Regarding CQ monitoring and alerting

2021-05-04 Thread Ilya Kasnacheev
Hello! I guess that CQ may stop working on node reconnect. You may need to handle EVT_CLIENT_NODE_RECONNECTED and re-register all of your continuous queries. Regards, -- Ilya Kasnacheev сб, 1 мая 2021 г. в 11:32, Devakumar J : > Hi, > > We have wide usage of CQ listeners in the ap

Re: IgniteCheckedException: Requesting mapping from grid failed for [platformId=0, typeId=-1220482121]

2021-05-04 Thread Ilya Kasnacheev
Hello! Can you please share some simple reproducer project which highlights the issue? You can put it on github or similar. Did you enable simple name mapper, btw? The error is what you can expect when type names on Java and C# side do not match. Regards, -- Ilya Kasnacheev вт, 4 мая 2021 г

Re: Too many TCP discovery accepted incoming connections

2021-05-04 Thread Ilya Kasnacheev
Hello! I'm not sure. Why? Regards, -- Ilya Kasnacheev вс, 2 мая 2021 г. в 11:13, VeenaMithare : > Hi Ilya, > > Could the issue be as mentioned here : > > > http://apache-ignite-users.70518.x6.nabble.com/2-8-1-INFO-org-apache-ignite-spi-communication-tcp-TcpCommunicationSpi

Re: [External]Re: Cluster becomes unresponsive if multiple clients join at a time

2021-05-04 Thread Ilya Kasnacheev
Hello! I think the relevant ticket is https://issues.apache.org/jira/browse/IGNITE-9558 It is poorly documented, I believe the prime condition is that client node should not define any caches in its configuration. Regards, -- Ilya Kasnacheev чт, 22 апр. 2021 г. в 16:07, Kamlesh Joshi

Re: rebalancing & K8

2021-04-28 Thread Ilya Kasnacheev
Hello! Usually you need to adjust (or auto-adjust) baseline topology after scaling the cluster up or down. You also need to make sure that nodes stay in one cluster. Regards, -- Ilya Kasnacheev пн, 26 апр. 2021 г. в 15:02, narges saleh : > Hi folks > > If I am deploying my ignit

Re: Too many TCP discovery accepted incoming connections

2021-04-28 Thread Ilya Kasnacheev
behind NAT or firewall. Consider enabling NAT traversal feature: https://ignite.apache.org/docs/latest/clustering/running-client-nodes-behind-nat Regards, -- Ilya Kasnacheev чт, 22 апр. 2021 г. в 21:58, Gangaiah Gundeboina : > HI Ilya, > > Please find attached full log file. >

Re: Understanding SQL join performance

2021-04-28 Thread Ilya Kasnacheev
Hello! If you had any images in your email, we are not seeing them. Please provide links. Regards, -- Ilya Kasnacheev сб, 24 апр. 2021 г. в 03:24, William.L : > Hi, > > I am trying to understand why my colocated join between two tables/caches > are taking so long compare to th

Re: Designing Affinity Key for more locality

2021-04-28 Thread Ilya Kasnacheev
, -- Ilya Kasnacheev вт, 27 апр. 2021 г. в 09:01, Pavel Tupitsyn : > Hi William, > > Can you describe the use case and domain model in more detail? > > 1. AffinityKey is used to colocate some data with other data. >What do you achieve with user-id being the affinity key? > >

Re: Ignite 2.10. Performance tests in Azure

2021-04-23 Thread Ilya Kasnacheev
more than one client (VM and all) to drive load in order to saturate it. What is the CPU usage during the test on server nodes, per cluster size? Regards, -- Ilya Kasnacheev пт, 23 апр. 2021 г. в 10:59, jjimeno : > Hello all, > > For our project we need a distributed database with tran

Re: AccessControlException

2021-04-22 Thread Ilya Kasnacheev
Hello! I guess this is what JVM creates for us. If you expect that Ignite would have dedicated support for security policy: it doesn't. Regards, -- Ilya Kasnacheev чт, 22 апр. 2021 г. в 16:58, Nico : > More info: it looks like the threads that are created are of t

Re: Too many TCP discovery accepted incoming connections

2021-04-22 Thread Ilya Kasnacheev
Hello! I can see that a node has just joined, but I'm not sure why there are all those messages. However, the log file seems truncated. Can you provide the rest? Regards, -- Ilya Kasnacheev чт, 22 апр. 2021 г. в 16:47, Gangaiah Gundeboina : > Hi Ilya, > > There is no jvm pause,

Re: AccessControlException

2021-04-22 Thread Ilya Kasnacheev
Hello! Obviously, you need to grant to all Ignite code permission to read any system properties. Obviously, granting all permissions didn't work in your case. I'm not sure why. Regards, -- Ilya Kasnacheev чт, 22 апр. 2021 г. в 14:33, Nico : > Hi, > > I'm using Ignite in embe

Re: Too many TCP discovery accepted incoming connections

2021-04-22 Thread Ilya Kasnacheev
Hello! Can you share complete logs from that node? You can also search them for "JVM pause" messages or just for any reason why these connections were closed in the first place. Regards, -- Ilya Kasnacheev чт, 22 апр. 2021 г. в 14:39, Gangaiah Gundeboina : > Hi Igniters, >

Re: [External]Re: Cluster becomes unresponsive if multiple clients join at a time

2021-04-22 Thread Ilya Kasnacheev
Hello! Yes, it should no longer be blocking assuming some conditions are met. Regards, -- Ilya Kasnacheev чт, 22 апр. 2021 г. в 08:26, Kamlesh Joshi : > Hi Ilya, > > > > Yeah even that’s what we were suspecting, PME triggering might be causing > issue. We are using 2.7.6 v

Re: Buffer Overflow on ARM with persistency enabled

2021-04-22 Thread Ilya Kasnacheev
Hello! You can also configure your system to save core dumps on application crash, then you can open the core dump with debugger. Regards, -- Ilya Kasnacheev чт, 22 апр. 2021 г. в 07:07, rakshita04 : > Hi , > > We have 2 GB RAM. > we unfortunately could not attached debugger,

Re: Creating a Lucene index thru SQL DDL

2021-04-21 Thread Ilya Kasnacheev
Hello! You cannot add QueryEntity to DDL, but you can add it to CacheConfiguration and it will create tables for you, so it's just as good as DDL. Regards, -- Ilya Kasnacheev ср, 21 апр. 2021 г. в 17:43, Naveen : > Hi Ilya > > How do we add QueryEntity in a DDL, can you please

Re: Ignite node heap gradually increasing and not getting stabilized

2021-04-21 Thread Ilya Kasnacheev
Hello! You need to find out which objects keep references to these, eventually tracing their usage to some large component of Ignite or your application. Regards, -- Ilya Kasnacheev ср, 21 апр. 2021 г. в 13:37, Naveen : > HI Ilya > > We hardly have 20 tables, data around 10 to 15

Re: Cluster becomes unresponsive if multiple clients join at a time

2021-04-21 Thread Ilya Kasnacheev
Hello! What is the version used? Usually, adding a new thick client would trigger a PME (a global blocking operation). In recent versions, they should be able to join without exchange. You could use flavors of thin client if you need a massive number of those. Regards, -- Ilya Kasnacheev ср

Re: Generated affinity key from multiple fields and SQL partition pruning

2021-04-21 Thread Ilya Kasnacheev
to be done. Maybe we could have composite affinity keys eventually, but I can't bet on that. Regards, -- Ilya Kasnacheev ср, 14 апр. 2021 г. в 16:12, : > Hello team, > > > > If we generate @AffinityKeyMapped field from multiple other fields and > then use those original f

Re: Several problems with persistence

2021-04-21 Thread Ilya Kasnacheev
. Regards, -- Ilya Kasnacheev ср, 7 апр. 2021 г. в 22:26, facundo.maldonado : > Hi everyone, kind of frustrated/disappointed here. > > I have a small cluster on a test environment where I'm trying to take some > measures so > I can size the cluster I will need in production and esti

Re: Creating a Lucene index thru SQL DDL

2021-04-21 Thread Ilya Kasnacheev
Hello! You can use QueryEntity, they will let you add FULLTEXT indexes. Regards, -- Ilya Kasnacheev ср, 21 апр. 2021 г. в 15:52, Naveen : > Hello All > > We are using ignite 2.8.1, trying to evaluate full text search thru Lucene. > > Can we create a Lucene index on a specific

Re: Historical rebalance doesn't work for caches with rebalanceDelay > 0

2021-04-21 Thread Ilya Kasnacheev
Hello again! I have filed a ticket to mark this setting as deprecated: https://issues.apache.org/jira/browse/IGNITE-14613 Regards, -- Ilya Kasnacheev ср, 21 апр. 2021 г. в 13:33, Ilya Kasnacheev : > Hello! > > 1) I think that rebalanceDelay is an outdated option, now that we have &

Re: Historical rebalance doesn't work for caches with rebalanceDelay > 0

2021-04-21 Thread Ilya Kasnacheev
will have to recreate. Regards, -- Ilya Kasnacheev сб, 10 апр. 2021 г. в 19:22, Dmitry Lazurkin : > Hello, folks. > > I have big cache with configured rebalanceMode = ASYNC, rebalanceDelay = > 10_000ms. Persistence is enabled, maxWalArchiveSize = 10GB.

Re: Ignite Server Upgrade While Keeping Data

2021-04-21 Thread Ilya Kasnacheev
ion and then check that a newer Ignite versions can be started using this state. WRT compatibility matrix, I don't think there are any gaps there between 2.x releases. Regards, -- Ilya Kasnacheev пн, 19 апр. 2021 г. в 13:42, starlight : > Hello, > > Thank you for the answer. > > Is th

Re: Ignite node heap gradually increasing and not getting stabilized

2021-04-20 Thread Ilya Kasnacheev
Hello! How many tables do you have? I don't see why you there are so many. I'm not sure who holds all those CipherSuite's. Can you check? If you have a ton of thin client connections with SSL which are doing MERGE on many tables, I guess this may be OKish though. Regards, -- Ilya Kasnacheev

Re: Ignite node heap gradually increasing and not getting stabilized

2021-04-19 Thread Ilya Kasnacheev
Hello! Did you try to trigger a full GC and see what is the low level of heap usage? Please try collecting a heap dump from the node after some heap growth, and checking it with Eclipse MAT for example. Regards, -- Ilya Kasnacheev пн, 19 апр. 2021 г. в 14:46, Naveen : > Hello All >

Re: Abrupt stop of application on using sql

2021-04-19 Thread Ilya Kasnacheev
Hello! This sounds like https://issues.apache.org/jira/browse/IGNITE-8702 Maybe there are some issues left with poll versus select, or maybe it is your own code that is using select() instead of poll() Regards, -- Ilya Kasnacheev пн, 19 апр. 2021 г. в 15:30, rakshita04 : > hello I

Re: Abrupt stop of application on using sql

2021-04-19 Thread Ilya Kasnacheev
Hello! You still did not respond about the return code of the process. I recommend attaching a debugger to the process to see what happens. Regards, -- Ilya Kasnacheev чт, 15 апр. 2021 г. в 15:16, rakshita04 : > Hi Ilya, > > How is decreasing maxSize of data region related t

Re: Vertx, Kotlin and Ignite "Failed to deserialize object"...

2021-04-19 Thread Ilya Kasnacheev
Hello! Apache Ignite will not peer load key/value type classes so you indeed have to hold them in classpath if you plan to do computations on them. Regards, -- Ilya Kasnacheev вс, 18 апр. 2021 г. в 23:37, Andreas Vogler : > Ok, just had to add vertx-core-4.0.3.jar and vertx-ignite-4.0.3.

Re: Ignite Server Upgrade While Keeping Data

2021-04-16 Thread Ilya Kasnacheev
, -- Ilya Kasnacheev пт, 16 апр. 2021 г. в 13:54, starlight : > Hello, > > What is the general procedure of upgrading Ignite Server from one version > to > another while maintaining data? > > Particularly I plan to upgrade the Server and Client from 2.7 to 2.10. The > serve

Re: Is Geo redundancy supported in Ignite

2021-04-15 Thread Ilya Kasnacheev
Hello! The one I know of, yes. Regards, -- Ilya Kasnacheev чт, 15 апр. 2021 г. в 09:30, Venkata Bhagavatula : > Hi Ilya Kasnacheev, > > We are also looking for this. > Can you please highlight the third party solution? I know that GridGain > supports this in their entre

Re: Ignite unable to understand recursive query.

2021-04-15 Thread Ilya Kasnacheev
Hello! As far as my understanding goes, Ignite does not support recursive CTE. You may still try running it as a local query by setting local=true in your connection/query settings. Regards, -- Ilya Kasnacheev чт, 15 апр. 2021 г. в 02:33, PunxsutawneyPhil3 : > I am having a prob

Re: Fastest way to iterate over a persistence cache

2021-04-14 Thread Ilya Kasnacheev
. Regards, -- Ilya Kasnacheev вт, 13 апр. 2021 г. в 21:28, Sebastian Macke : > Hi Ignite Team, > > I have stumbled across a problem when iterating over a persistence cache > that does not > fit into memory. > > The partitioned cache consists of 50M entries across 3 nodes

Re: Abrupt stop of application on using sql

2021-04-14 Thread Ilya Kasnacheev
Hello! You should probably decrease maxSize until you stop seeing this issue, and then some more. Regards, -- Ilya Kasnacheev ср, 14 апр. 2021 г. в 13:09, rakshita04 : > Hi Ilya, > > We only have one node. > Attached is our DataBaseConfig.xml file for your reference > Dat

Re: reading encrypted password from Ignite config file

2021-04-14 Thread Ilya Kasnacheev
Hello! There are a couple of third party implementations of security plugins, but I doubt that there are any walkthroughs on implementing your own. Regards, -- Ilya Kasnacheev вт, 13 апр. 2021 г. в 20:31, shivakumar : > Hi Ilya, > if I have to use username/password is it po

Re: Abrupt stop of application on using sql

2021-04-14 Thread Ilya Kasnacheev
to not trigger OOMKiller. Regards, -- Ilya Kasnacheev ср, 14 апр. 2021 г. в 07:39, rakshita04 : > Hi Ilya, > > we could find out the problem of the application stop. > We see "Buffer Overflow" error when application stops. > We commented out mCache.Put() in our code(

Re: Is Geo redundancy supported in Ignite

2021-04-13 Thread Ilya Kasnacheev
Hello! There is a third-party solution for geo-redundancy based on Apache Ignite. But as X Guest said, no native support in Apache Ignite. Regards, -- Ilya Kasnacheev пн, 12 апр. 2021 г. в 16:20, vbm : > Hi, > > Is geo-redundancy supported in Ignite ? > > Can we brin

Re: Re: SQL query performance with JOIN and ORDER BY or WHERE

2021-04-12 Thread Ilya Kasnacheev
Hello! I think you can try a (QUEUEID, STATUS) index. Or maybe a (STATUS, QUEUEID), probably makes sense to try both. Regards, -- Ilya Kasnacheev сб, 10 апр. 2021 г. в 00:22, : > The QUEUED field is a BIGINT that contains timestamp from > System.currentTimeMillis(), so it should be

  1   2   3   4   5   6   7   8   9   10   >