This repository has been archived by the owner on Jul 24, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 101
Conversation
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
* enable tidb config by default
* backup,restore: work on progress to fix a bug that causes --checksum flag won't work properly. Some code of backup and restore ignored the flag (a.k.a. config.Checksum), so when checksum is disabled, we will face failure. * backup: backup will report total bytes and kvs when checksums check disabled. Some code of backup and restore ignored the flag (a.k.a. config.Checksum), so when checksum is disabled, we will face failure. * backup: backup will report total bytes and kvs when checksums check disabled. Some code of backup and restore ignored the flag (a.k.a. config.Checksum), so when checksum is disabled, we will face failure. * backup: add log to ChecksumMatches and new version of FastChecksum. Some of log has been lose. They are in ChecksumMatches now. * restore: restore could find non-checksum tables and skip them automatically. for backup, ChecksumMatches returns error now. * misc: add document for Table::NoChecksum. * backup: omit checksum progress bar when user specify `--checksum=false`. * backup: `CopyMetaFrom` overrides original `client.Schemes` instead of append at its end. * backup: refactor about checksum logic, fix a bug. the bug would cause: when multi tables are backup, the metadata contains only one table. * backup: do some lints. * backup,restore: do some refactor so that cyclomatic complexity won't be too large. * misc: don't use underscore on receiver. * backup: print "quick checksum success" message per table. ...to make br_full_index happy! * backup: refactor a MinInt pattern. * backup: Apply suggestions from code review Co-Authored-By: kennytm <[email protected]> Co-authored-by: 3pointer <[email protected]> Co-authored-by: kennytm <[email protected]>
* create with info during incremental restore * add test * fix log * address comment * fix ci * address commemnt
* redirect kvproto Signed-off-by: Yi Wu <[email protected]> * pass sse_kms_key_id Signed-off-by: Yi Wu <[email protected]> * fix hound Signed-off-by: Yi Wu <[email protected]> * update kvproto Signed-off-by: Yi Wu <[email protected]> * go mod tidy Signed-off-by: Yi Wu <[email protected]> Co-authored-by: kennytm <[email protected]>
3pointer
changed the title
merge master to release 4.0
cherry-pick master to release 4.0
Apr 26, 2020
Codecov Report
@@ Coverage Diff @@
## release-4.0 #250 +/- ##
===============================================
+ Coverage 70.13% 70.43% +0.29%
===============================================
Files 47 48 +1
Lines 4705 4817 +112
===============================================
+ Hits 3300 3393 +93
- Misses 966 978 +12
- Partials 439 446 +7
Continue to review full report at Codecov.
|
overvenus
reviewed
Apr 26, 2020
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Rest LGTM
Co-Authored-By: Neil Shen <[email protected]>
kennytm
approved these changes
Apr 26, 2020
overvenus
added
needs-cherry-pick-release-4.0
and removed
needs-cherry-pick-release-4.0
labels
Jan 18, 2021
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
What problem does this PR solve?
cherry-pick master recent changes to release-4.0 except #233 , because TiKV 4.0.0-rc.1 didn't merge tikv/tikv#7632
What is changed and how it works?
Check List
Tests