codelipenghui commented on a change in pull request #6178: Introduce
maxMessagePublishBufferSizeInMB configuration to avoid broker OOM
URL: https://github.com/apache/pulsar/pull/6178#discussion_r373815113
##########
File path:
pulsar-broker/src/main/java/org/apache/pulsar/broker/service/BrokerService.java
##########
@@ -2009,4 +2025,49 @@ public ConfigField(Field field) {
return Optional.empty();
}
}
+
+ private void enableTopicsAutoRead() {
+ topics.values().forEach(future -> {
+ if (future.isDone() && !future.isCompletedExceptionally()) {
+ try {
+ future.get().ifPresent(Topic::enableProducerRead);
+ } catch (InterruptedException | ExecutionException e) {
+ // no-op
+ }
+ }
+ });
+ }
+
+ @VisibleForTesting
+ boolean increasePublishBufferSizeAndCheckStopRead(int msgSize) {
+ if (maxMessagePublishBufferSize < 0) {
+ return false;
+ }
+ if (currentMessagePublishBufferSize.addAndGet(msgSize) >=
maxMessagePublishBufferSize &&
Review comment:
@merlimat Yes, this does increase competition, how about move
`currentMessagePublishBufferSize` to ServerCnx and periodically sync them to
`totalMessagePublishBufferSize` in BrokerService by a single thread?
Of course this will cause delays, but it will reduce competition.
----------------------------------------------------------------
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.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services