This commit is contained in:
Clebert Suconic 2020-03-11 11:44:42 -04:00
commit dc173d52f4
3 changed files with 89 additions and 4 deletions

View File

@ -1024,7 +1024,7 @@ public class ProtonServerSenderContext extends ProtonInitializable implements Pr
public void reportDrained() { public void reportDrained() {
connection.requireInHandler(); connection.requireInHandler();
sender.drained(); sender.drained();
connection.flush(); connection.instantFlush();
} }
public AMQPSessionContext getSessionContext() { public AMQPSessionContext getSessionContext() {

View File

@ -174,9 +174,6 @@ public class ProtonHandler extends ProtonInitializable implements SaslListener {
sasl.setListener(this); sasl.setListener(this);
} }
/** When processing large messages, we require to flush bytes every processing */
public void instantFlush() { public void instantFlush() {
this.flushInstantly = true; this.flushInstantly = true;
// This will perform event handling, and at some point the flushBytes will be called // This will perform event handling, and at some point the flushBytes will be called

View File

@ -0,0 +1,88 @@
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.activemq.artemis.tests.integration.amqp;
import javax.jms.JMSConsumer;
import javax.jms.JMSContext;
import javax.jms.JMSProducer;
import javax.jms.Message;
import javax.jms.Queue;
import javax.jms.Session;
import java.util.concurrent.atomic.AtomicInteger;
import java.util.concurrent.atomic.LongAdder;
import org.apache.qpid.jms.JmsConnectionFactory;
import org.junit.Assert;
import org.junit.Test;
public class DrainTimeoutTest extends AmqpClientTestSupport {
final int NUMBER_OF_MESSAGES = 1000;
@Test(timeout = 300_000)
public void testFlowControl() throws Exception {
final AtomicInteger errors = new AtomicInteger(0);
final String queueName = getQueueName();
JmsConnectionFactory connectionFactory =
new JmsConnectionFactory(
"amqp://localhost:5672?jms.prefetchPolicy.all=1&jms.connectTimeout=60000&amqp.drainTimeout=1000");
LongAdder sendCount = new LongAdder();
LongAdder consumeCount = new LongAdder();
Thread consumerThread =
new Thread(
() -> {
try (JMSContext listenerContext =
connectionFactory.createContext(Session.AUTO_ACKNOWLEDGE)) {
try (JMSConsumer consumer =
listenerContext.createConsumer(
listenerContext.createQueue(queueName))) {
while (!Thread.interrupted()) {
while (true) {
if (consumer.receiveNoWait() == null) {
break;
}
consumeCount.increment();
if (consumeCount.sum() == NUMBER_OF_MESSAGES) {
return;
}
}
}
}
} catch (Exception e) {
e.printStackTrace(System.out);
errors.incrementAndGet();
}
});
consumerThread.start();
try (JMSContext context = connectionFactory.createContext(Session.AUTO_ACKNOWLEDGE)) {
final Message message = context.createMessage();
message.setStringProperty("selector", "dude");
JMSProducer producer = context.createProducer();
Queue queue = context.createQueue(queueName);
while (sendCount.sum() < NUMBER_OF_MESSAGES && !Thread.interrupted()) {
producer.send(queue, message);
sendCount.increment();
long sent = sendCount.sum();
}
}
consumerThread.join();
Assert.assertEquals(0, errors.get());
}
}