mirror of https://github.com/apache/activemq.git
AMQ-6958 Configure the AMQP Max Frame Size by default
Configure a value of 128KB for AMQP max frame size by default to improve overall performance and provide a limit on delivery size before chunking begins.
This commit is contained in:
parent
573b366ca0
commit
b8cfab97db
|
@ -45,7 +45,7 @@ public class AmqpWireFormat implements WireFormat {
|
||||||
public static final int DEFAULT_IDLE_TIMEOUT = 30000;
|
public static final int DEFAULT_IDLE_TIMEOUT = 30000;
|
||||||
public static final int DEFAULT_PRODUCER_CREDIT = 1000;
|
public static final int DEFAULT_PRODUCER_CREDIT = 1000;
|
||||||
public static final boolean DEFAULT_ALLOW_NON_SASL_CONNECTIONS = false;
|
public static final boolean DEFAULT_ALLOW_NON_SASL_CONNECTIONS = false;
|
||||||
public static final int DEFAULT_ANQP_FRAME_SIZE = NO_AMQP_MAX_FRAME_SIZE;
|
public static final int DEFAULT_ANQP_FRAME_SIZE = 128 * 1024;
|
||||||
|
|
||||||
private static final int SASL_PROTOCOL = 3;
|
private static final int SASL_PROTOCOL = 3;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue