-
Notifications
You must be signed in to change notification settings - Fork 3.3k
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
[Enhancement] (nereids)implement showBackendsCommand in nereids #43121
Open
Vallishp
wants to merge
2
commits into
apache:master
Choose a base branch
from
Vallishp:nereids_backends
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.
+129
−1
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
Thank you for your contribution to Apache Doris. Since 2024-03-18, the Document has been moved to doris-website. |
run buildall |
TPC-H: Total hot run time: 41290 ms
|
TPC-DS: Total hot run time: 196793 ms
|
ClickBench: Total hot run time: 31.85 s
|
Vallishp
force-pushed
the
nereids_backends
branch
3 times, most recently
from
November 14, 2024 05:52
d3e1f1c
to
ffea06f
Compare
run buildall |
fe/fe-core/src/main/java/org/apache/doris/nereids/trees/plans/commands/ShowBackendsCommand.java
Outdated
Show resolved
Hide resolved
Co-authored-by: starocean999 <[email protected]>
Vallishp
force-pushed
the
nereids_backends
branch
from
November 15, 2024 02:25
c0cf293
to
1ec7c10
Compare
run buildall |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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?
Support Show Backends in nereids
Issue Number: close #42762
Related PR: #xxx
Problem Summary:
Check List (For Committer)
Test
Already testcase present test_backend.groovy
RemoteUsedCapacity:0.000 , BackendId:10002, CpuCores:8, LastStartTime:2024-11-01 17:45:25, Tag:{"location" : "default"}]]
2024-11-01 17:49:17.647 INFO [non-concurrent-thread-1] (Suite.groovy:384) - Execute sql: ALTER SYSTEM DECOMMISSION BACKEND "10002"
2024-11-01 17:49:17.666 INFO [non-concurrent-thread-1] (test_backend.groovy:60) - ALTER SYSTEM DECOMMISSION BACKEND [[0]]
2024-11-01 17:49:17.667 INFO [non-concurrent-thread-1] (Suite.groovy:451) - Execute sql: SHOW BACKENDS;
2024-11-01 17:49:17.694 INFO [non-concurrent-thread-1] (Suite.groovy:384) - Execute sql: CANCEL DECOMMISSION BACKEND "10002"
2024-11-01 17:49:17.707 INFO [non-concurrent-thread-1] (test_backend.groovy:71) - CANCEL DECOMMISSION BACKEND [[0]]
2024-11-01 17:49:17.708 INFO [non-concurrent-thread-1] (Suite.groovy:451) - Execute sql: SHOW BACKENDS;
2024-11-01 17:49:17.718 INFO [non-concurrent-thread-1] (Suite.groovy:451) - Execute sql: show frontends
2024-11-01 17:49:17.805 INFO [non-concurrent-thread-1] (DebugPoint.groovy:162) - disable debug point SystemHandler.decommission_no_check_replica_num for FE 172.20.80.1:8030
2024-11-01 17:49:17.819 INFO [non-concurrent-thread-1] (Http.groovy:85) - http post url=http://172.20.80.1:8030/api/debug_point/remove/SystemHandler.decommission_no_check_replica_num, data=null, isJson=true, response code=200, text={"msg":"success","code":0,"data":null,"count":0}
2024-11-01 17:49:17.820 INFO [non-concurrent-thread-1] (Suite.groovy:384) - Execute sql: admin set frontend config("drop_backend_after_decommission" = "true")
2024-11-01 17:49:17.825 INFO [non-concurrent-thread-1] (ScriptContext.groovy:120) - Run test_backend in /root/doris/workspace/doris/regression-test/suites/node_p0/test_backend.groovy succeed
2024-11-01 17:49:25.546 INFO [main] (RegressionTest.groovy:410) - Success suites:
/root/doris/workspace/doris/regression-test/suites/node_p0/test_backend.groovy: group=nonConcurrent,p0, name=test_backend
2024-11-01 17:49:25.547 INFO [main] (RegressionTest.groovy:492) - All suites success.
Behavior changed:
Does this need documentation?
Release note
None
Check List (For Reviewer who merge this PR)