-
Notifications
You must be signed in to change notification settings - Fork 5.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
*: implement CANCEL/DROP LOAD DATA JOB (#42137)
ref #40499
- Loading branch information
Showing
14 changed files
with
295 additions
and
23 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
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
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,118 @@ | ||
// Copyright 2023 PingCAP, Inc. | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
package asyncloaddata_test | ||
|
||
import ( | ||
"fmt" | ||
"sync" | ||
"time" | ||
|
||
"github.com/fsouza/fake-gcs-server/fakestorage" | ||
. "github.com/pingcap/tidb/executor/asyncloaddata" | ||
"github.com/pingcap/tidb/parser/auth" | ||
"github.com/pingcap/tidb/testkit" | ||
"github.com/stretchr/testify/require" | ||
) | ||
|
||
func (s *mockGCSSuite) TestOperateRunningJob() { | ||
s.tk.MustExec("DROP DATABASE IF EXISTS test_operate;") | ||
s.tk.MustExec("CREATE DATABASE test_operate;") | ||
s.tk.MustExec("CREATE TABLE test_operate.t (i INT PRIMARY KEY);") | ||
s.server.CreateObject(fakestorage.Object{ | ||
ObjectAttrs: fakestorage.ObjectAttrs{ | ||
BucketName: "test-operate", | ||
Name: "t.tsv", | ||
}, | ||
Content: []byte("1\n2\n3\n4\n5\n6\n7\n8\n9\n10"), | ||
}) | ||
|
||
backup := HeartBeatInSec | ||
HeartBeatInSec = 1 | ||
s.T().Cleanup(func() { | ||
HeartBeatInSec = backup | ||
}) | ||
|
||
s.enableFailpoint("github.com/pingcap/tidb/executor/AfterCreateLoadDataJob", `sleep(1000)`) | ||
s.enableFailpoint("github.com/pingcap/tidb/executor/AfterStartJob", `sleep(1000)`) | ||
s.enableFailpoint("github.com/pingcap/tidb/executor/AfterCommitOneTask", `sleep(1000)`) | ||
sql := fmt.Sprintf(`LOAD DATA INFILE 'gs://test-operate/t.tsv?endpoint=%s' | ||
INTO TABLE test_operate.t WITH batch_size = 1;`, gcsEndpoint) | ||
|
||
// DROP can happen anytime | ||
user := &auth.UserIdentity{ | ||
AuthUsername: "test-load-3", | ||
AuthHostname: "test-host", | ||
} | ||
s.tk.Session().GetSessionVars().User = user | ||
tk2 := testkit.NewTestKit(s.T(), s.store) | ||
tk2.Session().GetSessionVars().User = user | ||
var wg sync.WaitGroup | ||
wg.Add(1) | ||
go func() { | ||
defer wg.Done() | ||
tk2.MustContainErrMsg(sql, "failed to keepalive") | ||
}() | ||
|
||
// TODO: remove this sleep after moving mysql.load_data_jobs to bootstrap | ||
time.Sleep(3 * time.Second) | ||
rows := s.tk.MustQuery("SHOW LOAD DATA JOBS;").Rows() | ||
require.Greater(s.T(), len(rows), 0) | ||
jobID := rows[len(rows)-1][0].(string) | ||
s.tk.MustExec("DROP LOAD DATA JOB " + jobID) | ||
wg.Wait() | ||
|
||
// test CANCEL | ||
|
||
sql = fmt.Sprintf(`LOAD DATA INFILE 'gs://test-operate/t.tsv?endpoint=%s' | ||
REPLACE INTO TABLE test_operate.t;`, gcsEndpoint) | ||
wg.Add(1) | ||
go func() { | ||
defer wg.Done() | ||
tk2.MustContainErrMsg(sql, "failed to keepalive") | ||
}() | ||
|
||
time.Sleep(3 * time.Second) | ||
rows = s.tk.MustQuery("SHOW LOAD DATA JOBS;").Rows() | ||
require.Greater(s.T(), len(rows), 0) | ||
jobID = rows[len(rows)-1][0].(string) | ||
s.tk.MustExec("CANCEL LOAD DATA JOB " + jobID) | ||
wg.Wait() | ||
rows = s.tk.MustQuery("SHOW LOAD DATA JOB " + jobID).Rows() | ||
require.Len(s.T(), rows, 1) | ||
row := rows[0] | ||
e := expectedRecord{ | ||
jobID: jobID, | ||
dataSource: "gs://test-operate/t.tsv", | ||
targetTable: "`test_operate`.`t`", | ||
importMode: "logical", | ||
createdBy: "test-load-3@test-host", | ||
jobState: "loading", | ||
jobStatus: "canceled", | ||
sourceFileSize: row[10].(string), | ||
loadedFileSize: row[11].(string), | ||
resultCode: "0", | ||
resultMessage: "canceled by user", | ||
} | ||
e.checkIgnoreTimes(s.T(), row) | ||
|
||
// cancel again is OK | ||
|
||
err := s.tk.ExecToErr("CANCEL LOAD DATA JOB " + jobID) | ||
require.ErrorContains(s.T(), err, "The current job status cannot perform the operation. need status running or paused, but got canceled") | ||
rows = s.tk.MustQuery("SHOW LOAD DATA JOB " + jobID).Rows() | ||
require.Len(s.T(), rows, 1) | ||
row = rows[0] | ||
e.checkIgnoreTimes(s.T(), row) | ||
} |
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
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
Oops, something went wrong.