To fix this issue, Administrators need to enable Jumbo Messages support in LMI. To do so - Administrators need to edit a configuration file under '/loglogic/conf' folder. The name of the file is 'tcpcoll.conf' and Administrators need to add in a couple of configurations parameters: UseTcpCollectorQueue And MaxMsgLength The first one - UseTcpCollectorQueue - is a flag that can hold a couple of values, 1 for jumbo messages enabled or 0 for jumbo messages disabled. The second parameter - MaxMsgLength- will hold the max message length value. It should match at least the same value set in Universal Collector. The maximum value supported is 1048576. In UC 2.9 the default value is 64000. Below is how it looks like the 'tcpcoll.conf' after enabling jumbo messages:
# cat /loglogic/conf/tcpcoll.conf
#TLSCert=<file_name>
TLSCert=/loglogic/conf/certs/cert1
#TLSKey=<file_name>
TLSKey=/loglogic/conf/certs/key1
#TLSDefaultClientCA=<file_name>
TLSDefaultClientCA=/loglogic/conf/certs/client179.ca
#0100
TLSVerFlags=4
ListenOnPort=4321
# jumbo messages settings
UseTcpCollectorQueue=1
MaxMsgLength=1048576
After saving settings we need to restart engines:
# mtask stop; mtask start
For further details check documentation at:
Processing Jumbo Messages