Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix for reserved connection usage with transaction #7646

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
24 changes: 24 additions & 0 deletions go/test/endtoend/vtgate/unsharded/main_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -165,6 +165,7 @@ func TestMain(m *testing.M) {
SchemaSQL: SchemaSQL,
VSchema: VSchema,
}
clusterInstance.VtTabletExtraArgs = []string{"-queryserver-config-transaction-timeout", "3"}
if err := clusterInstance.StartUnshardedKeyspace(*Keyspace, 0, false); err != nil {
log.Fatal(err.Error())
return 1
Expand Down Expand Up @@ -367,6 +368,29 @@ func TestTempTable(t *testing.T) {
execAssertError(t, conn2, `show create table temp_t`, `Table 'vt_customer.temp_t' doesn't exist (errno 1146) (sqlstate 42S02)`)
}

func TestReservedConnDML(t *testing.T) {
defer cluster.PanicHandler(t)
ctx := context.Background()
vtParams := mysql.ConnParams{
Host: "localhost",
Port: clusterInstance.VtgateMySQLPort,
}
conn, err := mysql.Connect(ctx, &vtParams)
require.NoError(t, err)
defer conn.Close()

exec(t, conn, `set default_week_format = 1`)
exec(t, conn, `begin`)
exec(t, conn, `insert into allDefaults () values ()`)
exec(t, conn, `commit`)

time.Sleep(6 * time.Second)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't suppose this can be made any faster?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

transaction timeout is 3 seconds and this is to ensure that transaction killer is run.


exec(t, conn, `begin`)
exec(t, conn, `insert into allDefaults () values ()`)
exec(t, conn, `commit`)
}

func exec(t *testing.T, conn *mysql.Conn, query string) *sqltypes.Result {
t.Helper()
qr, err := conn.ExecuteFetch(query, 1000, true)
Expand Down
53 changes: 53 additions & 0 deletions go/vt/vtgate/executor_dml_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ import (

"github.com/stretchr/testify/assert"

"vitess.io/vitess/go/mysql"

"vitess.io/vitess/go/test/utils"

"github.com/stretchr/testify/require"
Expand Down Expand Up @@ -1731,3 +1733,54 @@ func TestDeleteLookupOwnedEqual(t *testing.T) {
utils.MustMatch(t, sbc1.Queries, sbc1wantQueries, "")
utils.MustMatch(t, sbc2.Queries, sbc2wantQueries, "")
}

func TestReservedConnDML(t *testing.T) {
executor, _, _, sbc := createExecutorEnv()

logChan := QueryLogger.Subscribe("TestReservedConnDML")
defer QueryLogger.Unsubscribe(logChan)

ctx := context.Background()
session := NewAutocommitSession(&vtgatepb.Session{EnableSystemSettings: true})

_, err := executor.Execute(ctx, "TestReservedConnDML", session, "use "+KsTestUnsharded, nil)
require.NoError(t, err)

wantQueries := []*querypb.BoundQuery{
{Sql: "select 1 from dual where @@default_week_format != 1", BindVariables: map[string]*querypb.BindVariable{}},
}
sbc.SetResults([]*sqltypes.Result{
sqltypes.MakeTestResult(sqltypes.MakeTestFields("id", "int64"), "1"),
})
_, err = executor.Execute(ctx, "TestReservedConnDML", session, "set default_week_format = 1", nil)
require.NoError(t, err)
utils.MustMatch(t, wantQueries, sbc.Queries)

_, err = executor.Execute(ctx, "TestReservedConnDML", session, "begin", nil)
require.NoError(t, err)

wantQueries = append(wantQueries,
&querypb.BoundQuery{Sql: "set @@default_week_format = 1", BindVariables: map[string]*querypb.BindVariable{}},
&querypb.BoundQuery{Sql: "insert into simple values ()", BindVariables: map[string]*querypb.BindVariable{}})
_, err = executor.Execute(ctx, "TestReservedConnDML", session, "insert into simple() values ()", nil)
require.NoError(t, err)
utils.MustMatch(t, wantQueries, sbc.Queries)

_, err = executor.Execute(ctx, "TestReservedConnDML", session, "commit", nil)
require.NoError(t, err)

_, err = executor.Execute(ctx, "TestReservedConnDML", session, "begin", nil)
require.NoError(t, err)

sbc.EphemeralShardErr = mysql.NewSQLError(mysql.CRServerGone, mysql.SSNetError, "connection gone")
// as the first time the query fails due to connection loss i.e. reserved conn lost. It will be recreated to set statement will be executed again.
wantQueries = append(wantQueries,
&querypb.BoundQuery{Sql: "set @@default_week_format = 1", BindVariables: map[string]*querypb.BindVariable{}},
&querypb.BoundQuery{Sql: "insert into simple values ()", BindVariables: map[string]*querypb.BindVariable{}})
_, err = executor.Execute(ctx, "TestReservedConnDML", session, "insert into simple() values ()", nil)
require.NoError(t, err)
utils.MustMatch(t, wantQueries, sbc.Queries)

_, err = executor.Execute(ctx, "TestReservedConnDML", session, "commit", nil)
require.NoError(t, err)
}
28 changes: 26 additions & 2 deletions go/vt/vtgate/scatter_conn.go
Original file line number Diff line number Diff line change
Expand Up @@ -227,13 +227,25 @@ func (stc *ScatterConn) ExecuteMultiShard(
innerqr, reservedID, alias, err = qs.ReserveExecute(ctx, rs.Target, session.SetPreQueries(), queries[i].Sql, queries[i].BindVariables, 0 /*transactionId*/, opts)
}
if err != nil {
return nil, err
return info.updateReservedID(reservedID, alias), err
}
}
case begin:
innerqr, transactionID, alias, err = qs.BeginExecute(ctx, rs.Target, session.Savepoints, queries[i].Sql, queries[i].BindVariables, info.reservedID, opts)
if err != nil {
return info.updateTransactionID(transactionID, alias), err
if transactionID != 0 {
return info.updateTransactionID(transactionID, alias), err
}
shouldRetry := checkAndResetShardSession(info, err, session)
if shouldRetry {
// we seem to have lost our connection. if it was a reserved connection, let's try to recreate it
info.actionNeeded = reserveBegin
innerqr, transactionID, reservedID, alias, err = qs.ReserveBeginExecute(ctx, rs.Target, session.SetPreQueries(), queries[i].Sql, queries[i].BindVariables, opts)
}
if err != nil {
return info.updateTransactionAndReservedID(transactionID, reservedID, alias), err
}

}
case reserve:
innerqr, reservedID, alias, err = qs.ReserveExecute(ctx, rs.Target, session.SetPreQueries(), queries[i].Sql, queries[i].BindVariables, info.transactionID, opts)
Expand Down Expand Up @@ -727,14 +739,26 @@ type shardActionInfo struct {
}

func (sai *shardActionInfo) updateTransactionID(txID int64, alias *topodatapb.TabletAlias) *shardActionInfo {
if txID == 0 {
// As transaction id is ZERO, there is nothing to update in session shard sessions.
return nil
}
return sai.updateTransactionAndReservedID(txID, sai.reservedID, alias)
}

func (sai *shardActionInfo) updateReservedID(rID int64, alias *topodatapb.TabletAlias) *shardActionInfo {
if rID == 0 {
// As reserved id is ZERO, there is nothing to update in session shard sessions.
return nil
}
return sai.updateTransactionAndReservedID(sai.transactionID, rID, alias)
}

func (sai *shardActionInfo) updateTransactionAndReservedID(txID int64, rID int64, alias *topodatapb.TabletAlias) *shardActionInfo {
if txID == 0 && rID == 0 {
// As transaction id and reserved id is ZERO, there is nothing to update in session shard sessions.
return nil
}
newInfo := *sai
newInfo.reservedID = rID
newInfo.transactionID = txID
Expand Down
2 changes: 1 addition & 1 deletion go/vt/vttablet/sandboxconn/sandboxconn.go
Original file line number Diff line number Diff line change
Expand Up @@ -447,7 +447,7 @@ func (sbc *SandboxConn) HandlePanic(err *error) {
//ReserveBeginExecute implements the QueryService interface
func (sbc *SandboxConn) ReserveBeginExecute(ctx context.Context, target *querypb.Target, preQueries []string, sql string, bindVariables map[string]*querypb.BindVariable, options *querypb.ExecuteOptions) (*sqltypes.Result, int64, int64, *topodatapb.TabletAlias, error) {
reservedID := sbc.reserve(ctx, target, preQueries, bindVariables, 0, options)
result, transactionID, alias, err := sbc.BeginExecute(ctx, target, preQueries, sql, bindVariables, reservedID, options)
result, transactionID, alias, err := sbc.BeginExecute(ctx, target, nil, sql, bindVariables, reservedID, options)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why was this change needed?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this was wrong test setup, so fixed it.
prequeries were getting logged twice which was wrong.

if transactionID != 0 {
sbc.setTxReservedID(transactionID, reservedID)
}
Expand Down
3 changes: 3 additions & 0 deletions go/vt/vttablet/tabletserver/tx_pool.go
Original file line number Diff line number Diff line change
Expand Up @@ -231,6 +231,9 @@ func (tp *TxPool) Begin(ctx context.Context, options *querypb.ExecuteOptions, re
var err error
if reservedID != 0 {
conn, err = tp.scp.GetAndLock(reservedID, "start transaction on reserve conn")
if err != nil {
return nil, "", vterrors.Errorf(vtrpcpb.Code_ABORTED, "transaction %d: %v", reservedID, err)
}
} else {
immediateCaller := callerid.ImmediateCallerIDFromContext(ctx)
effectiveCaller := callerid.EffectiveCallerIDFromContext(ctx)
Expand Down