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

session: Mising OptimizeWithPlanAndThenWarmUp in prepare-execute path #36347

Merged
merged 18 commits into from
Jul 21, 2022
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions session/session.go
Original file line number Diff line number Diff line change
Expand Up @@ -2267,6 +2267,9 @@ func (s *session) preparedStmtExec(ctx context.Context, execStmt *ast.ExecuteStm

is := sessiontxn.GetTxnManager(s).GetTxnInfoSchema()
st, tiFlashPushDown, tiFlashExchangePushDown, err := executor.CompileExecutePreparedStmt(ctx, s, execStmt, is)
if err == nil {
err = sessiontxn.OptimizeWithPlanAndThenWarmUp(s, st.Plan)
Copy link
Contributor

Choose a reason for hiding this comment

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

Why not put it after the if err != nil below, so that the if err == nill is not needed?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

It's the same. In that way, we have to deal with another if err != nil.

Copy link
Contributor

Choose a reason for hiding this comment

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

I think it would be more idiomatic?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Actually, it is written this way in text sql path in ExecuteStmt.

}
if err != nil {
return nil, err
}
Expand Down
14 changes: 14 additions & 0 deletions sessiontxn/failpoint.go
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,9 @@ var BreakPointBeforeExecutorFirstRun = "beforeExecutorFirstRun"
// Only for test
var BreakPointOnStmtRetryAfterLockError = "lockErrorAndThenOnStmtRetryCalled"

// TsoRequestCount is the key for recording tso request counts in some places
var TsoRequestCount stringutil.StringerStr = "tsoRequestCount"

// AssertLockErr is used to record the lock errors we encountered
// Only for test
var AssertLockErr stringutil.StringerStr = "assertLockError"
Expand Down Expand Up @@ -112,6 +115,17 @@ func AddAssertEntranceForLockError(sctx sessionctx.Context, name string) {
}
}

// TsoRequestCountInc is used only for test
// When it is called, there is a tso cmd request.
func TsoRequestCountInc(sctx sessionctx.Context) {
count, ok := sctx.Value(TsoRequestCount).(uint64)
if !ok {
count = 0
}
count += 1
sctx.SetValue(TsoRequestCount, count)
}

// ExecTestHook is used only for test. It consumes hookKey in session wait do what it gets from it.
func ExecTestHook(sctx sessionctx.Context, hookKey fmt.Stringer) {
c := sctx.Value(hookKey)
Expand Down
5 changes: 5 additions & 0 deletions sessiontxn/isolation/base.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ import (

"github.com/opentracing/opentracing-go"
"github.com/pingcap/errors"
"github.com/pingcap/failpoint"
"github.com/pingcap/tidb/config"
"github.com/pingcap/tidb/infoschema"
"github.com/pingcap/tidb/kv"
Expand Down Expand Up @@ -408,6 +409,10 @@ func newOracleFuture(ctx context.Context, sctx sessionctx.Context, scope string)
ctx = opentracing.ContextWithSpan(ctx, span1)
}

failpoint.Inject("requestTsoFromPD", func() {
sessiontxn.TsoRequestCountInc(sctx)
})

oracleStore := sctx.GetStore().GetOracle()
option := &oracle.Option{TxnScope: scope}

Expand Down
5 changes: 5 additions & 0 deletions sessiontxn/isolation/repeatable_read.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ import (
"context"

"github.com/pingcap/errors"
"github.com/pingcap/failpoint"
"github.com/pingcap/tidb/kv"
"github.com/pingcap/tidb/parser/ast"
"github.com/pingcap/tidb/parser/terror"
Expand Down Expand Up @@ -107,6 +108,10 @@ func (p *PessimisticRRTxnContextProvider) updateForUpdateTS() (err error) {
return errors.Trace(kv.ErrInvalidTxn)
}

failpoint.Inject("RequestTsoFromPD", func() {
sessiontxn.TsoRequestCountInc(sctx)
})

// Because the ForUpdateTS is used for the snapshot for reading data in DML.
// We can avoid allocating a global TSO here to speed it up by using the local TSO.
version, err := sctx.GetStore().CurrentVersion(sctx.GetSessionVars().TxnCtx.TxnScope)
Expand Down
89 changes: 89 additions & 0 deletions sessiontxn/txn_context_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ import (
"github.com/pingcap/tidb/testkit"
"github.com/pingcap/tidb/testkit/testfork"
"github.com/pingcap/tidb/testkit/testsetup"
"github.com/pingcap/tidb/types"
"github.com/stretchr/testify/require"
"go.uber.org/goleak"
)
Expand Down Expand Up @@ -882,3 +883,91 @@ func TestOptimisticTxnRetryInPessimisticMode(t *testing.T) {
}
})
}

func TestTSOCmdCountForPrepareExecute(t *testing.T) {
// This is a mock workload mocks one which discovers that the tso request count is abnormal.
// After the bug fix, the tso request count recovers, so we use this workload to record the current tso request count
// to reject future works that accidentally causes tso request increasing.
// Note, we do not record all tso requests but some typical requests.
require.NoError(t, failpoint.Enable("github.com/pingcap/tidb/sessiontxn/isolation/requestTsoFromPD", "return"))
SpadeA-Tang marked this conversation as resolved.
Show resolved Hide resolved
store, clean := testkit.CreateMockStore(t)
defer clean()

ctx := context.Background()
tk := testkit.NewTestKit(t, store)

sctx := tk.Session()
sctx.SetValue(sessiontxn.TsoRequestCount, 0)
SpadeA-Tang marked this conversation as resolved.
Show resolved Hide resolved

tk.MustExec("use test")
tk.MustExec("drop table if exists t1")
tk.MustExec("drop table if exists t2")
tk.MustExec("drop table if exists t3")

tk.MustExec("create table t1(id int, v int, v2 int, primary key (id), unique key uk (v))")
tk.MustExec("create table t2(id int, v int, unique key i1(v))")
tk.MustExec("create table t3(id int, v int, key i1(v))")

sqlSelectId, _, _, _ := tk.Session().PrepareStmt("select * from t1 where id = ? for update")
sqlUpdateId, _, _, _ := tk.Session().PrepareStmt("update t1 set v = v + 10 where id = ?")
sqlInsertId1, _, _, _ := tk.Session().PrepareStmt("insert into t2 values(?, ?)")
sqlInsertId2, _, _, _ := tk.Session().PrepareStmt("insert into t3 values(?, ?)")

tk.MustExec("insert into t1 values (1, 1, 1)")

for i := 1; i < 100; i++ {
tk.MustExec("begin pessimistic")
stmt, err := tk.Session().ExecutePreparedStmt(ctx, sqlSelectId, []types.Datum{types.NewDatum(1)})
require.NoError(t, err)
require.NoError(t, stmt.Close())
_, err = tk.Session().ExecutePreparedStmt(ctx, sqlUpdateId, []types.Datum{types.NewDatum(1)})
SpadeA-Tang marked this conversation as resolved.
Show resolved Hide resolved
require.NoError(t, err)
val := i * 10
_, err = tk.Session().ExecutePreparedStmt(ctx, sqlInsertId1, []types.Datum{types.NewDatum(val), types.NewDatum(val)})
require.NoError(t, err)
_, err = tk.Session().ExecutePreparedStmt(ctx, sqlInsertId2, []types.Datum{types.NewDatum(val), types.NewDatum(val)})
require.NoError(t, err)
tk.MustExec("commit")
}

count := sctx.Value(sessiontxn.TsoRequestCount)
require.Equal(t, uint64(117), count)
}

func TestTSOCmdCountForTextSql(t *testing.T) {
// This is a mock workload mocks one which discovers that the tso request count is abnormal.
// After the bug fix, the tso request count recovers, so we use this workload to record the current tso request count
// to reject future works that accidentally causes tso request increasing.
// Note, we do not record all tso requests but some typical requests.
require.NoError(t, failpoint.Enable("github.com/pingcap/tidb/sessiontxn/isolation/requestTsoFromPD", "return"))
SpadeA-Tang marked this conversation as resolved.
Show resolved Hide resolved
store, clean := testkit.CreateMockStore(t)
defer clean()

tk := testkit.NewTestKit(t, store)

sctx := tk.Session()
sctx.SetValue(sessiontxn.TsoRequestCount, 0)

tk.MustExec("use test")
tk.MustExec("drop table if exists t1")
tk.MustExec("drop table if exists t2")
tk.MustExec("drop table if exists t3")

tk.MustExec("create table t1(id int, v int, v2 int, primary key (id), unique key uk (v))")
tk.MustExec("create table t2(id int, v int, unique key i1(v))")
tk.MustExec("create table t3(id int, v int, key i1(v))")
tk.MustExec("insert into t1 values (1, 1, 1)")

for i := 1; i < 100; i++ {
tk.MustExec("begin pessimistic")
tk.MustQuery("select * from t1 where id = 1 for update")
tk.MustExec("update t1 set v = v + 10 where id = 1")
val := i * 10
tk.MustExec(fmt.Sprintf("insert into t2 values(%v, %v)", val, val))
tk.MustExec(fmt.Sprintf("insert into t3 values(%v, %v)", val, val))
tk.MustExec("commit")
}

count := sctx.Value(sessiontxn.TsoRequestCount)
require.Equal(t, uint64(113), count)
}