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

*: support 2-phases flashback cluster #38164

Merged
merged 36 commits into from
Oct 26, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
4970a67
*: add startTS, commitTS and close auto analyze for flashback
Defined2014 Sep 15, 2022
e9e588f
improve error msg
Defined2014 Sep 20, 2022
4e7960d
update bazel
Defined2014 Sep 20, 2022
e6b48ad
fix teset
Defined2014 Sep 21, 2022
f58a8ac
Merge branch 'master' into flashback-auto
Defined2014 Sep 21, 2022
115adb5
delete useless code
Defined2014 Sep 22, 2022
fdc6653
kill non-flashback cluster query
Defined2014 Sep 26, 2022
5e5ccd7
update test
Defined2014 Sep 26, 2022
6e4922d
fix ut
Defined2014 Sep 26, 2022
12fa7a0
fix test
Defined2014 Sep 26, 2022
521a80b
support tiflash
Defined2014 Sep 27, 2022
feb6639
Merge branch 'master' into flashback-2-phase
Defined2014 Sep 27, 2022
b15b8c3
delete useless param
Defined2014 Sep 27, 2022
20892f0
Merge branch 'master' into flashback-2-phase
Defined2014 Sep 27, 2022
135e67c
update kvproto and client-go
Defined2014 Sep 28, 2022
f9ea4db
Merge branch 'master' into flashback-2-phase
Defined2014 Oct 8, 2022
135fe22
update DEPS
Defined2014 Oct 8, 2022
d88ec2a
fix test
Defined2014 Oct 8, 2022
6b19aae
fix auto analyze
Defined2014 Oct 9, 2022
b790fc5
add logs for working stats
Defined2014 Oct 9, 2022
610f631
update
Defined2014 Oct 12, 2022
5e9db08
improve code
Defined2014 Oct 12, 2022
6c21fd2
delete max auto analyze time
Defined2014 Oct 18, 2022
9a4b4f1
update
Defined2014 Oct 21, 2022
04d81db
Merge branch 'master' into flashback-2-phase
Defined2014 Oct 24, 2022
3bd34e8
update DEPS
Defined2014 Oct 24, 2022
76d3264
update lint
Defined2014 Oct 25, 2022
bae87ce
fix test
Defined2014 Oct 25, 2022
4c361f1
fix test
Defined2014 Oct 25, 2022
a2879e0
fix test
Defined2014 Oct 25, 2022
baee75d
save params
Defined2014 Oct 25, 2022
41a07ff
Merge branch 'master' into flashback-2-phase
Defined2014 Oct 25, 2022
c36f7a9
Update ddl/cluster.go
Defined2014 Oct 26, 2022
06bdda7
update test
Defined2014 Oct 26, 2022
acac5d6
Merge branch 'master' into flashback-2-phase
ti-chi-bot Oct 26, 2022
45054eb
follow comments
Defined2014 Oct 26, 2022
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
12 changes: 6 additions & 6 deletions DEPS.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -2825,8 +2825,8 @@ def go_deps():
name = "com_github_pingcap_kvproto",
build_file_proto_mode = "disable_global",
importpath = "github.com/pingcap/kvproto",
sum = "h1:ceg4xjEEXNgPsScTQ5dtidiltLF4h17Y/jUqfyLAy9E=",
version = "v0.0.0-20220929075948-06e08d5ed64c",
sum = "h1:McYxPhA8SHqfUtLfQHHN0fQl4dy93IkhlX4Pp2MKIFA=",
version = "v0.0.0-20221014081430-26e28e6a281a",
)
go_repository(
name = "com_github_pingcap_log",
Expand Down Expand Up @@ -3212,8 +3212,8 @@ def go_deps():
name = "com_github_shurcool_vfsgen",
build_file_proto_mode = "disable_global",
importpath = "github.com/shurcooL/vfsgen",
sum = "h1:y0cMJ0qjii33BnD6tMGcF/+gHYsoKQ6tbwQpy233OII=",
version = "v0.0.0-20180711163814-62bca832be04",
sum = "h1:ug7PpSOB5RBPK1Kg6qskGBoP3Vnj/aNYFTznWvlkGo0=",
version = "v0.0.0-20181202132449-6a9ea43bcacd",
)
go_repository(
name = "com_github_sirupsen_logrus",
Expand Down Expand Up @@ -3429,8 +3429,8 @@ def go_deps():
name = "com_github_tikv_client_go_v2",
build_file_proto_mode = "disable_global",
importpath = "github.com/tikv/client-go/v2",
sum = "h1:/13jzD/AR7v3dCLweFQ2JG8bihh3HLVIci2tbOHHGW0=",
version = "v2.0.1-0.20221012074856-6def8d7b90c4",
sum = "h1:5KLqhDGLc/mtemdS/odfOP717rn8ttsTj3jzZ8TZn9A=",
version = "v2.0.1-0.20221017092635-91be9c6ce6c0",
)
go_repository(
name = "com_github_tikv_pd_client",
Expand Down
Loading