Ignite configuration using .NET Thick client

2023-04-06 Thread satyajit.mandal.barclays.com via user
Hi Pavel, Need to understand one thing from you. Am using .NET thick client. What's the best way to put the Ignite configuration . Should this be put on code or in spring xml. If we put on code and lets say I need 4 nodes as part of cluster then do I ne

Re: Ignite configuration using .NET Thick client

2023-04-06 Thread Pavel Tupitsyn
Hi Satyajit, 1. You don't need to use Spring XML unless you have to set a property that is not exposed in .NET API 2. Do you want to start 4 nodes in one process? Or multiple processes on the same machine? What's your desired setup? Pavel On Thu, Apr 6, 2023 at 4:40 PM satyajit.mandal.barclays.c

RE: Ignite configuration using .NET Thick client

2023-04-06 Thread satyajit.mandal.barclays.com via user
Hi Pavel, I need to start cache in 4 different nodes using .NET Thick client in one process. Can you share me the sample Ignite Configuration and steps to do that. Previously I was using thin client and that time I used to start Ignite nodes using Spring.x

Re: Ignite configuration using .NET Thick client

2023-04-06 Thread Pavel Tupitsyn
using Apache.Ignite.Core; using Apache.Ignite.Core.Deployment; using Apache.Ignite.Core.Log; var serverCfg = new IgniteConfiguration { Localhost = "127.0.0.1", JvmOptions = new[] { "-DIGNITE_QUIET=true", "-DIGNITE_PERFORMANCE_SUGGESTIONS_DISABLED=true" }, Logger = new ConsoleLogger { MinLevel = Lo

RE: Ignite configuration using .NET Thick client

2023-04-06 Thread satyajit.mandal.barclays.com via user
Hi Pavel, Below code snippet doesn’t mentions the IP address of 4 different nodes( different machines) so how will this make the cache run in different node and form a cluster of 4 nodes. Do we need to start the thick client in all nodes one by one with

Re: Ignite configuration using .NET Thick client

2023-04-06 Thread Pavel Tupitsyn
You said you wanted 4 nodes in 1 process. Sorry, I'm not sure I understand the question. TcpDiscoveryMulticastIpFinder uses multicast, you don't need to specify endpoints. Nodes will find each other in the same subnet, no matter if on one machine or different ones. However, it is not recommended f

Spring (Boot) version

2023-04-06 Thread Humphrey Lopez
Currently we are running Ignite with spring boot 2.x version. Is any version of Spring (Boot) supported? Can we for example want to upgrade to spring boot 3.x ? Humphrey