Jason918 commented on a change in pull request #12874:
URL: https://github.com/apache/pulsar/pull/12874#discussion_r786545409



##########
File path: 
pulsar-broker/src/main/java/org/apache/pulsar/broker/service/ServerCnx.java
##########
@@ -1188,69 +1189,75 @@ protected void handleProducer(final CommandProducer 
cmdProducer) {
 
             log.info("[{}][{}] Creating producer. producerId={}", 
remoteAddress, topicName, producerId);
 
-            service.getOrCreateTopic(topicName.toString()).thenAccept((Topic 
topic) -> {
+            service.getOrCreateTopic(topicName.toString()).thenCompose((Topic 
topic) -> {
                 // Before creating producer, check if backlog quota exceeded
                 // on topic for size based limit and time based limit
-                for (BacklogQuota.BacklogQuotaType backlogQuotaType : 
BacklogQuota.BacklogQuotaType.values()) {
-                    if (topic.isBacklogQuotaExceeded(producerName, 
backlogQuotaType)) {
-                        IllegalStateException illegalStateException = new 
IllegalStateException(
-                                "Cannot create producer on topic with backlog 
quota exceeded");
-                        BacklogQuota.RetentionPolicy retentionPolicy = topic
-                                .getBacklogQuota(backlogQuotaType).getPolicy();
-                        if (retentionPolicy == 
BacklogQuota.RetentionPolicy.producer_request_hold) {
-                            commandSender.sendErrorResponse(requestId,
-                                    
ServerError.ProducerBlockedQuotaExceededError,
-                                    illegalStateException.getMessage());
-                        } else if (retentionPolicy == 
BacklogQuota.RetentionPolicy.producer_exception) {
-                            commandSender.sendErrorResponse(requestId,
-                                    
ServerError.ProducerBlockedQuotaExceededException,
-                                    illegalStateException.getMessage());
-                        }
-                        
producerFuture.completeExceptionally(illegalStateException);
-                        producers.remove(producerId, producerFuture);
-                        return;
+                CompletableFuture<Void> backlogQuotaCheckFuture = 
CompletableFuture.allOf(
+                        topic.checkBacklogQuotaExceeded(producerName, 
BacklogQuotaType.destination_storage),
+                        topic.checkBacklogQuotaExceeded(producerName, 
BacklogQuotaType.message_age));
+                backlogQuotaCheckFuture.exceptionally(throwable -> {

Review comment:
       @codelipenghui Moved TopicBacklogQuotaExceededException handling 
outside. PTAL.




-- 
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]


Reply via email to