File tree Expand file tree Collapse file tree 1 file changed +17
-0
lines changed
Expand file tree Collapse file tree 1 file changed +17
-0
lines changed Original file line number Diff line number Diff line change @@ -52,6 +52,23 @@ CREATE USER 'orchestrator_srv'@'orc_host' IDENTIFIED BY 'orc_server_password';
5252GRANT ALL ON orchestrator.* TO 'orchestrator_srv'@'orc_host';
5353```
5454
55+ #### Configuring max_allowed_packet size sent by Orchestrator
56+ When Orchestrator communicates with backend MySQL instance or with managed
57+ instances, it has to respect the instance's ` max_allowed_packet ` parameter
58+ value. The following two options allow configuring this area:
59+
60+ ```
61+ MySQLOrchestratorMaxAllowedPacket
62+ MySQLTopologyMaxAllowedPacket
63+ ```
64+ Allowed values are:
65+
66+ ` -1 ` - use the value hardcoded in the driver
67+
68+ ` 0 ` - let the driver to query the max packet value automatically from the server (only once per connection at the connection begin)
69+
70+ ` > 0 ` - use the value provided
71+
5572## SQLite backend
5673
5774Default backend is ` MySQL ` . To setup ` SQLite ` , use:
You can’t perform that action at this time.
0 commit comments