-
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
[Fix]Add audit log event queue size limit #37786
Conversation
Thank you for your contribution to Apache Doris. Since 2024-03-18, the Document has been moved to doris-website. |
run buildall |
b30a8d7
to
8d18194
Compare
run buildall |
PR approved by at least one committer and no changes requested. |
PR approved by anyone and no changes requested. |
TPC-H: Total hot run time: 39786 ms
|
TPC-DS: Total hot run time: 171848 ms
|
ClickBench: Total hot run time: 30.37 s
|
run buildall |
TPC-H: Total hot run time: 39977 ms
|
TPC-DS: Total hot run time: 173995 ms
|
ClickBench: Total hot run time: 30.29 s
|
run buildall |
1 similar comment
run buildall |
TPC-H: Total hot run time: 39587 ms
|
TPC-DS: Total hot run time: 172751 ms
|
ClickBench: Total hot run time: 30.5 s
|
PR approved by at least one committer and no changes requested. |
f8ffed3
to
c6616ff
Compare
run buildall |
TPC-H: Total hot run time: 39942 ms
|
TPC-DS: Total hot run time: 172948 ms
|
c6616ff
to
dabb4ac
Compare
run buildall |
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.
LGTM
PR approved by at least one committer and no changes requested. |
TPC-H: Total hot run time: 39975 ms
|
TPC-DS: Total hot run time: 172785 ms
|
ClickBench: Total hot run time: 30.48 s
|
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.
LGTM
## Proposed changes pick #37786
## Proposed changes ``` num #instances #bytes class name ---------------------------------------------- 1: 375686347 28162104360 [C 2: 93198001 21621936232 org.apache.doris.plugin.audit.AuditEvent 3: 375801573 12025650336 java.lang.String 4: 6100281 2440112440 java.util.LinkedList$Node ``` We find in some cases excessive audit log may be generatated, so add a queue limit for audit log queue in WorkloadRuntimeStatMgr.
## Proposed changes ``` num #instances #bytes class name ---------------------------------------------- 1: 375686347 28162104360 [C 2: 93198001 21621936232 org.apache.doris.plugin.audit.AuditEvent 3: 375801573 12025650336 java.lang.String 4: 6100281 2440112440 java.util.LinkedList$Node ``` We find in some cases excessive audit log may be generatated, so add a queue limit for audit log queue in WorkloadRuntimeStatMgr.
Proposed changes
We find in some cases excessive audit log may be generatated, so add a queue limit for audit log queue in WorkloadRuntimeStatMgr.