-
Notifications
You must be signed in to change notification settings - Fork 5.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
pessimistictest: dedicated package for pessimistic txn tests (#34353)
close #28325
- Loading branch information
Showing
6 changed files
with
894 additions
and
501 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,35 @@ | ||
name: Real TiKV Tests | ||
|
||
on: | ||
push: | ||
branches: [master] | ||
pull_request: | ||
branches: [master] | ||
|
||
concurrency: | ||
group: ${{ github.ref }}-${{ github.workflow }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
pessimistic-test: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/setup-go@v2 | ||
with: | ||
go-version: 1.18 | ||
- name: Setup TiKV cluster | ||
run: | | ||
# Disable pipelined pessimistic lock temporarily until tikv#11649 is resolved | ||
echo -e "[pessimistic-txn]\npipelined = false\n" > tikv.toml | ||
echo -e "[raftdb]\nmax-open-files = 10240\n" >> tikv.toml | ||
echo -e "[rocksdb]\nmax-open-files = 10240\n" >> tikv.toml | ||
curl --proto '=https' --tlsv1.2 -sSf https://tiup-mirrors.pingcap.com/install.sh | sh | ||
$HOME/.tiup/bin/tiup playground nightly --mode tikv-slim --kv 3 --pd 3 --without-monitor --kv.config tikv.toml & | ||
curl --retry-connrefused --retry 5 --retry-delay 5 http://127.0.0.1:2379 | ||
- name: Run Tests | ||
run: | | ||
export log_level=error | ||
make failpoint-enable | ||
go test ./tests/pessimistictest -v -with-real-tikv -timeout 20m |
Oops, something went wrong.