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

[improve][broker] Introduce ThreadMonitor to check if thread is blocking for long time. #6

Open
wants to merge 26 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
5ea0ab2
add thread monitor and thread pool monitor
lifepuzzlefun Dec 11, 2022
b7f0706
add thread monitor first edition
lifepuzzlefun Dec 11, 2022
c5436b5
add thread monitor and thread pool monitor
lifepuzzlefun Dec 16, 2022
8a09896
add thread monitor and thread pool monitor
lifepuzzlefun Dec 16, 2022
1918fd6
add thread monitor and thread pool monitor
lifepuzzlefun Dec 16, 2022
2bf598e
add thread monitor and thread pool monitor
lifepuzzlefun Dec 16, 2022
52335b6
add thread monitor and thread pool monitor
lifepuzzlefun Dec 16, 2022
bc32c83
add thread monitor and thread pool monitor
lifepuzzlefun Dec 16, 2022
e783410
add thread monitor and thread pool monitor
lifepuzzlefun Dec 16, 2022
00abcb5
add thread monitor and thread pool monitor
lifepuzzlefun Dec 16, 2022
ec86ae4
add thread monitor and thread pool monitor
lifepuzzlefun Dec 16, 2022
ceff16c
add thread monitor and thread pool monitor
lifepuzzlefun Dec 16, 2022
792f446
add thread monitor and thread pool monitor
lifepuzzlefun Dec 16, 2022
c99860a
add doc.
lifepuzzlefun Dec 16, 2022
f0c70a0
fix metric print
lifepuzzlefun Dec 16, 2022
0d7c434
fix metric print
lifepuzzlefun Dec 16, 2022
1fd48cf
fix metric print
lifepuzzlefun Dec 16, 2022
991a16f
fix metric print
lifepuzzlefun Dec 16, 2022
fa0f4b1
change `Executors.newSingleScheduleThreadPool` to `ScheduledExecutorP…
lifepuzzlefun Dec 16, 2022
75ee8d6
fix checkstyle
lifepuzzlefun Dec 16, 2022
14837d1
Merge branch 'master' into thread_monitor
lifepuzzlefun Dec 16, 2022
17d6930
fix checkstyle
lifepuzzlefun Dec 16, 2022
047bc53
fix checkstyle
lifepuzzlefun Dec 18, 2022
bd0ea20
fix checkstyle
lifepuzzlefun Dec 18, 2022
60ce767
fix checkstyle
lifepuzzlefun Dec 19, 2022
a37ceb9
fix checkstyle
lifepuzzlefun Dec 31, 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
Prev Previous commit
Next Next commit
add thread monitor and thread pool monitor
  • Loading branch information
lifepuzzlefun committed Dec 16, 2022
commit 00abcb5db16b40989fa8f0c543b58df7a69f1f04
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;
import java.util.concurrent.ScheduledExecutorService;

import lombok.extern.slf4j.Slf4j;
import org.apache.pulsar.common.util.ThreadPoolMonitor;

Expand Down