-
Notifications
You must be signed in to change notification settings - Fork 412
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
Stats inner/inter zone network traffic for mpp tasks #9747
Open
yibin87
wants to merge
17
commits into
pingcap:master
Choose a base branch
from
yibin87:network_stats
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+308
−76
Open
Changes from all commits
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
b9f28a2
update tipb protocol
yibin87 b1d26ce
update tipb code
yibin87 0c93629
update tipb commit
yibin87 9f9b8fa
Stats exchange sender network traffic
yibin87 33d9a7c
Save work
yibin87 0478e75
Handle exchange receiver network traffic
yibin87 d3406a3
Little refact
yibin87 e50801a
Little refact
yibin87 90c023a
Add coprocessor remote read connection network stats
yibin87 607a7ba
Get store zone label using basic way
yibin87 214ebf2
Merge branch 'master' into network_stats
JaySon-Huang 2b716f4
Save work
yibin87 32e2bb4
refine tableScan statistics
yibin87 0dd55a6
Little refact
yibin87 99227ba
Fix incorrect update issue
yibin87 e26fd33
Little fix and refact
yibin87 fbf99bf
Address comments
yibin87 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Submodule tipb
updated
34 files
+1 −0 | .gitignore | |
+16 −10 | Makefile | |
+1 −1 | cpp/CMakeLists.txt | |
+0 −15 | generate-go.sh | |
+1,511 −957 | go-tipb/analyze.pb.go | |
+280 −186 | go-tipb/checksum.pb.go | |
+4,313 −2,379 | go-tipb/executor.pb.go | |
+821 −555 | go-tipb/explain.pb.go | |
+813 −663 | go-tipb/expression.pb.go | |
+309 −186 | go-tipb/metadata.pb.go | |
+137 −112 | go-tipb/resourcetag.pb.go | |
+389 −273 | go-tipb/schema.pb.go | |
+1,012 −601 | go-tipb/select.pb.go | |
+657 −401 | go-tipb/topsql_agent.pb.go | |
+33 −20 | go-tipb/trace.pb.go | |
+4 −4 | go.mod | |
+20 −6 | go.sum | |
+8 −0 | include/gogoproto/gogo.proto | |
+47 −0 | include/rustproto.proto | |
+6 −0 | proto/analyze.proto | |
+6 −1 | proto/checksum.proto | |
+18 −0 | proto/executor.proto | |
+5 −1 | proto/explain.proto | |
+5 −1 | proto/expression.proto | |
+5 −0 | proto/metadata.proto | |
+5 −0 | proto/resourcetag.proto | |
+5 −0 | proto/schema.proto | |
+7 −1 | proto/select.proto | |
+6 −1 | proto/topsql_agent.proto | |
+5 −0 | proto/trace.proto | |
+86 −0 | scripts/check.sh | |
+6 −2 | scripts/generate-cpp.sh | |
+18 −0 | scripts/generate-go.sh | |
+7,514 −0 | scripts/proto.lock |
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
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
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.
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.
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.
Can we break the loop if got the zone lable?
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.
Good catch, updated