Re: C# Ignite thin client - how to connect specific grid

2023-01-12 Thread Charlin S
Hi All, Thank you very much. I am able to connect two different grid in one server with different port configuration as below Grid 1 Grid 2 One observation I am not able to point multiple server node( Endpoints = new

Re: C# Ignite thin client - how to connect specific grid

2023-01-12 Thread Charlin S
Hi, Thank you Stephen and Pavel. I will try these options and keep you posted. Regards, Charlin On Thu, 12 Jan 2023 at 17:45, Pavel Tupitsyn wrote: > Set different client connector ports for different grids like this: > > > > class="org.apache.ignite.configuration.C

Re: C# Ignite thin client - how to connect specific grid

2023-01-12 Thread Pavel Tupitsyn
Set different client connector ports for different grids like this: ... On Thu, Jan 12, 2023 at 2:01 PM Stephen Darlington < stephen.darling...@gridgain.com> wrote: > Those ports are for thick-clients and servers. Thin cli

Re: C# Ignite thin client - how to connect specific grid

2023-01-12 Thread Stephen Darlington
Those ports are for thick-clients and servers. Thin clients connect to 10800. The second server to start will be on 10801, etc. You can configure the thin-client port with ClientConnectorConfiguration: getting-started-with-thin-clients

Re: C# Ignite thin client - how to connect specific grid

2023-01-12 Thread Charlin S
Hi Pavel, Thanks for your reply. I am having two grids in one server and grid configuration as below. Which port should I use for connecting grid1 and grid2? [image: image.png] As per my understanding, I should be able to connect thin clients like this. Please correct me if I am wrong. //for Gri

Re: C# Ignite thin client - how to connect specific grid

2023-01-12 Thread Pavel Tupitsyn
C# thin client can connect to any port, specify it in the endpoint string like this: var clientCfg = new IgniteClientConfiguration("127.0.0.1:10901"); var client = Ignition.StartClient(clientCfg); or var clientCfg2 = new IgniteClientConfiguration { Endpoints = new[] { "127.0.0.1:10901" } };

C# Ignite thin client - how to connect specific grid

2023-01-12 Thread Charlin S
Hi All, My requirement is to connect a specific grid(server has multiple grids) from c# thin client, since its support only 10800 ports. Regards, Charlin