-
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.
Merge branch 'master' into issue#25842
- Loading branch information
Showing
911 changed files
with
126,969 additions
and
397 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,22 @@ | ||
codecov: | ||
require_ci_to_pass: yes | ||
|
||
comment: | ||
layout: "reach, diff, flags, files" | ||
behavior: default | ||
require_changes: false # if true: only post the comment if coverage changes | ||
require_base: no # [yes :: must have a base report to post] | ||
require_head: yes # [yes :: must have a head report to post] | ||
branches: # branch names that can post comment | ||
- "master" | ||
|
||
coverage: | ||
status: | ||
project: | ||
default: | ||
# Allow the coverage to drop by 3% | ||
target: 85% | ||
threshold: 3% | ||
branches: | ||
- master | ||
patch: off |
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 @@ | ||
.gitignore |
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,10 @@ | ||
[*] | ||
end_of_line = lf | ||
insert_final_newline = true | ||
charset = utf-8 | ||
|
||
# tab_size = 4 spaces | ||
[*.go] | ||
indent_style = tab | ||
indent_size = 4 | ||
trim_trailing_whitespace = true |
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 @@ | ||
*_generated.go linguist-generated=true |
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,45 @@ | ||
--- | ||
name: "🐛 Bug Report" | ||
about: Something isn't working as expected | ||
title: '' | ||
labels: 'type/bug ' | ||
--- | ||
|
||
Please answer these questions before submitting your issue. Thanks! | ||
|
||
1. What did you do? | ||
If possible, provide a recipe for reproducing the error. | ||
|
||
|
||
2. What did you expect to see? | ||
|
||
|
||
|
||
3. What did you see instead? | ||
|
||
|
||
|
||
4. What version of BR and TiDB/TiKV/PD are you using? | ||
|
||
<!-- | ||
br -V | ||
tidb-lightning -V | ||
tidb-server -V | ||
tikv-server -V | ||
pd-server -V | ||
--> | ||
|
||
5. Operation logs | ||
- Please upload `br.log` for BR if possible | ||
- Please upload `tidb-lightning.log` for TiDB-Lightning if possible | ||
- Please upload `tikv-importer.log` from TiKV-Importer if possible | ||
- Other interesting logs | ||
|
||
|
||
6. Configuration of the cluster and the task | ||
- `tidb-lightning.toml` for TiDB-Lightning if possible | ||
- `tikv-importer.toml` for TiKV-Importer if possible | ||
- `topology.yml` if deployed by TiUP | ||
|
||
|
||
7. Screenshot/exported-PDF of Grafana dashboard or metrics' graph in Prometheus if possible |
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,19 @@ | ||
--- | ||
name: "🚀 Feature Request" | ||
about: I have a suggestion | ||
labels: 'type/feature-request' | ||
--- | ||
|
||
## Feature Request | ||
|
||
### Describe your feature request related problem: | ||
<!-- A description of what the problem is. --> | ||
|
||
### Describe the feature you'd like: | ||
<!-- A description of what you want to happen. --> | ||
|
||
### Describe alternatives you've considered: | ||
<!-- A description of any alternative solutions or features you've considered. --> | ||
|
||
### Teachability, Documentation, Adoption, Migration Strategy: | ||
<!-- If you can, explain some scenarios how users might use this, or situations in which it would be helpful. Any API designs, mockups, or diagrams are also helpful. --> |
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,24 @@ | ||
--- | ||
name: "\U0001F914 Question" | ||
labels: "type/question" | ||
about: Usage question that isn't answered in docs or discussion | ||
|
||
--- | ||
|
||
## Question | ||
|
||
|
||
<!-- | ||
Before asking a question, make sure you have: | ||
- Searched existing Stack Overflow questions. | ||
- Googled your question. | ||
- Searched open and closed [GitHub issues](https://github.com/pingcap/br/issues?q=is%3Aissue) | ||
- Read the documentation: | ||
* [BR documentation](https://docs.pingcap.com/tidb/stable/backup-and-restore-tool) | ||
* [Lightning documentation](https://docs.pingcap.com/tidb/stable/tidb-lightning-overview) | ||
* [BR 中文文档](https://docs.pingcap.com/zh/tidb/stable/backup-and-restore-tool) | ||
* [Lightning 中文文档](https://docs.pingcap.com/zh/tidb/stable/tidb-lightning-overview) | ||
--> |
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 @@ | ||
defaultSigLabel: sig/migrate |
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,42 @@ | ||
<!-- | ||
Thank you for working on BR! Please read BR's [CONTRIBUTING](https://github.com/pingcap/br/blob/master/CONTRIBUTING.md) document **BEFORE** filing this PR. | ||
--> | ||
|
||
### What problem does this PR solve? <!--add issue link with summary if exists--> | ||
|
||
|
||
### What is changed and how it works? | ||
|
||
|
||
### Check List <!--REMOVE the items that are not applicable--> | ||
|
||
Tests <!-- At least one of them must be included. --> | ||
|
||
- Unit test | ||
- Integration test | ||
- Manual test (add detailed scripts or steps below) | ||
- No code | ||
|
||
Code changes | ||
|
||
- Has exported function/method change | ||
- Has exported variable/fields change | ||
- Has interface methods change | ||
- Has persistent data change | ||
|
||
Side effects | ||
|
||
- Possible performance regression | ||
- Increased code complexity | ||
- Breaking backward compatibility | ||
|
||
Related changes | ||
|
||
- Need to cherry-pick to the release branch | ||
- Need to update the documentation | ||
|
||
### Release note | ||
|
||
- | ||
|
||
<!-- fill in the release note, or just write "No release note" --> |
Oops, something went wrong.