Skip to content

Commit 41f55e8

Browse files
Merge pull request #31 from kamil-holubicki/DISTMYSQL-226-doc
Adjusted documentation with changes done for DISTMYSQL-226.
2 parents 1dc70ac + 95e6eda commit 41f55e8

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

docs/configuration-backend.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,23 @@ CREATE USER 'orchestrator_srv'@'orc_host' IDENTIFIED BY 'orc_server_password';
5252
GRANT 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

5774
Default backend is `MySQL`. To setup `SQLite`, use:

0 commit comments

Comments
 (0)