Hi, The connection parameters are set by the thin client connector. see: https://ignite.apache.org/docs/latest/thin-clients/getting-started-with-thin-clients#configuring-thin-client-connector
all attributes are listed here: https://ignite.apache.org/releases/2.9.0/javadoc/org/apache/ignite/configuration/ClientConnectorConfiguration.html see: https://ignite.apache.org/releases/latest/javadoc/org/apache/ignite/configuration/ClientConnectorConfiguration.html#getThreadPoolSize-- (this specifies the number of threads set to process client requests) Simple C++ put/get example: https://github.com/apache/ignite/blob/master/modules/platforms/cpp/examples/thin-client-put-get-example/src/thin_client_put_get_example.cpp connection resources should released when you destroy the IgniteClient object. monitor the Server logs to see what is happening. see if the app is still connected using netstat. try to connect via other thin clients to see if connection requests are honored or not. Thanks, Alex -- Sent from: http://apache-ignite-users.70518.x6.nabble.com/
