[
https://issues.apache.org/jira/browse/ARTEMIS-3604?focusedWorklogId=694035&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-694035
]
ASF GitHub Bot logged work on ARTEMIS-3604:
-------------------------------------------
Author: ASF GitHub Bot
Created on: 10/Dec/21 15:08
Start Date: 10/Dec/21 15:08
Worklog Time Spent: 10m
Work Description: gemmellr commented on a change in pull request #3876:
URL: https://github.com/apache/activemq-artemis/pull/3876#discussion_r766752717
##########
File path:
artemis-server/src/main/java/org/apache/activemq/artemis/core/paging/impl/PagingStoreImpl.java
##########
@@ -713,6 +713,9 @@ public boolean checkMemory(boolean runOnFailure, final
Runnable runWhenAvailable
}
} else if (pagingManager.isDiskFull() || addressFullMessagePolicy ==
AddressFullMessagePolicy.BLOCK && (maxSize != -1 || usingGlobalMaxSize)) {
if (pagingManager.isDiskFull() || maxSize > 0 && sizeInBytes.get() >=
maxSize || pagingManager.isGlobalFull()) {
+ if (runWhenBlocking != null) {
+ runWhenBlocking.run();
Review comment:
Its unclear to me that you can trust this PR without changing it, given
the fact it would be running tasks when it shouldnt, and these are now
coordinating on important state.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
Issue Time Tracking
-------------------
Worklog Id: (was: 694035)
Time Spent: 3h 50m (was: 3h 40m)
> Async sends could overflow server with messages in openwire
> -----------------------------------------------------------
>
> Key: ARTEMIS-3604
> URL: https://issues.apache.org/jira/browse/ARTEMIS-3604
> Project: ActiveMQ Artemis
> Issue Type: Bug
> Reporter: Clebert Suconic
> Assignee: Clebert Suconic
> Priority: Major
> Fix For: 2.20.0
>
> Time Spent: 3h 50m
> Remaining Estimate: 0h
>
--
This message was sent by Atlassian Jira
(v8.20.1#820001)