You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When executed without connection parameters, the control script tries to connect to a node running on localhost (`localhost:11211`).
39
+
NOTE: Starting from Apache Ignite version 2.17, the utility by default uses a connection through the thin client protocol (configured on a node via `org.apache.ignite.configuration.ClientConnectorConfiguration`). See link:#migration-to-the-thin-client-protocol[Migration Notes] for more information.
40
+
41
+
When executed without connection parameters, the control script tries to connect to a node running on localhost (`localhost:10800`).
40
42
If you want to connect to a node that is running on a remove machine, specify the connection parameters.
41
43
42
44
[cols="2,3,1",opts="header"]
43
45
|===
44
46
|Parameter | Description | Default Value
45
-
46
47
| --host HOST_OR_IP | The host name or IP address of the node. | `localhost`
47
-
48
-
| --port PORT | The port to connect to. | `11211`
49
-
48
+
| --port PORT | The port to connect to. | `10800`
50
49
| --user USER | The user name. |
51
50
| --password PASSWORD |The user password. |
52
51
| --ping-interval PING_INTERVAL | The ping interval. | 5000
@@ -63,6 +62,105 @@ If you want to connect to a node that is running on a remove machine, specify th
63
62
| --ssl-factory SSL_FACTORY_PATH | Custom SSL factory Spring xml file path. |
64
63
|===
65
64
65
+
== Migration to the thin client protocol
66
+
67
+
With the default configuration of Ignite, no migration actions will be required. Additional configuration of the connector is no longer necessary.
68
+
69
+
If you connect to the wrong connector, you will receive an error and may see the message:
70
+
71
+
`Make sure you are connecting to the client connector (configured on a node via 'org.apache.ignite.configuration.ClientConnectorConfiguration'). Connection to the REST connector was deprecated and will be removed for the control utility in future releases. Set up the 'IGNITE_CONTROL_UTILITY_USE_CONNECTOR_CONNECTION' system property to 'true' to forcefully connect to the REST connector (configured on a node via 'org.apache.ignite.configuration.ConnectorConfiguration').`
72
+
73
+
To ensure backward compatibility, a system property has been added to provide the old behavior (note: it will be removed in version 2.18):
0 commit comments