-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
MySQL driver: on connect try setting wsrep_sync_wait=4, swallow error…
… 1193 In Galera clusters wsrep_sync_wait=4 ensures inserted rows to be synced over all nodes before reporting success to their inserter. That allows inserting child rows immediately after that on another node without running into foreign key errors. MySQL single nodes will reject this with error 1193 "Unknown system variable" which is OK.
- Loading branch information
Showing
2 changed files
with
44 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
package driver | ||
|
||
import ( | ||
"database/sql/driver" | ||
"github.com/go-sql-driver/mysql" | ||
"github.com/pkg/errors" | ||
) | ||
|
||
// setGaleraOpts tries SET SESSION wsrep_sync_wait=4. | ||
// Error 1193 "Unknown system variable" is ignored to support MySQL single nodes. | ||
func setGaleraOpts(conn driver.Conn) error { | ||
const galeraOpts = "SET SESSION wsrep_sync_wait=4" | ||
|
||
stmt, err := conn.Prepare(galeraOpts) | ||
if err != nil { | ||
err = errors.Wrap(err, "can't prepare "+galeraOpts) | ||
//lint:ignore SA1019 StmtExecContext isn't mandatory, would fall back anyway | ||
} else if _, err = stmt.Exec(nil); err != nil { | ||
err = errors.Wrap(err, "can't execute "+galeraOpts) | ||
_ = stmt.Close() | ||
} else if err = stmt.Close(); err != nil { | ||
err = errors.Wrap(err, "can't close statement "+galeraOpts) | ||
} | ||
|
||
if err != nil { | ||
var me *mysql.MySQLError | ||
if errors.As(err, &me) && me.Number == 1193 { | ||
err = nil | ||
} | ||
} | ||
|
||
return err | ||
} |