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
Copy file name to clipboardExpand all lines: go/config/config.go
+4Lines changed: 4 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -103,6 +103,7 @@ type Configuration struct {
103
103
MySQLTopologySSLSkipVerifybool// If true, do not strictly validate mutual TLS certs for Topology mysql instances
104
104
MySQLTopologyUseMutualTLSbool// Turn on TLS authentication with the Topology MySQL instances
105
105
MySQLTopologyUseMixedTLSbool// Mixed TLS and non-TLS authentication with the Topology MySQL instances
106
+
MySQLTopologyMaxAllowedPacketint32// max_allowed_packet value to use when connecting to the Topology mysql instance
106
107
TLSCacheTTLFactoruint// Factor of InstancePollSeconds that we set as TLS info cache expiry
107
108
BackendDBstring// EXPERIMENTAL: type of backend db; either "mysql" or "sqlite3"
108
109
SQLite3DataFilestring// when BackendDB == "sqlite3", full path to sqlite3 datafile
@@ -129,6 +130,7 @@ type Configuration struct {
129
130
MySQLOrchestratorUseMutualTLSbool// Turn on TLS authentication with the Orchestrator MySQL instance
130
131
MySQLOrchestratorReadTimeoutSecondsint// Number of seconds before backend mysql read operation is aborted (driver-side)
131
132
MySQLOrchestratorRejectReadOnlybool// Reject read only connections https://github.com/go-sql-driver/mysql#rejectreadonly
133
+
MySQLOrchestratorMaxAllowedPacketint32// max_allowed_packet to use when connecting to the Orchestrator mysql instance
132
134
MySQLConnectTimeoutSecondsint// Number of seconds before connection is aborted (driver-side)
133
135
MySQLDiscoveryReadTimeoutSecondsint// Number of seconds before topology mysql read operation is aborted (driver-side). Used for discovery queries.
134
136
MySQLTopologyReadTimeoutSecondsint// Number of seconds before topology mysql read operation is aborted (driver-side). Used for all but discovery queries.
0 commit comments