Open
Description
While using binlogreader, as in:
... = binlogReader.binlogSyncer.RegisterSlave(connectionConfig.Key.Hostname, uint16(connectionConfig.Key.Port), connectionConfig.User, connectionConfig.Password)
...
<time passes>
...
ev, err := this.binlogStreamer.GetEvent()
I get a non nil err
, which says "connection was bad"
This happens when enough time passes for the connection to invalidate. I'm trying to figure out if there is support for the equivalent MASTER_CONNECT_RETRY
, MASTER_RETRY_COUNT
, such that I would be able to configure the connection to retry as much as I want, with as small interval that I want.
I haven't figured this out yet -- is there such support?
Kind regards