=INFO REPORT==== 22-Jul-2018::11:59:30 ===
accepting AMQP connection <0.11905.5336> (LOADBALANCER_IP:53528 -> MASTERNODE_IP:5672)
=INFO REPORT==== 22-Jul-2018::11:59:30 ===
Connection <0.11905.5336> (LOADBALANCER_IP:53528 -> MASTERNODE_IP:5672) has a client-provided name: REDACTED:THEQUEUENAME
=INFO REPORT==== 22-Jul-2018::11:59:30 ===
connection <0.11905.5336> (LOADBALANCER_IP:53528 -> MASTERNODE_IP:5672 - REDACTED:THEQUEUENAME): user 'REDACTED' authenticated and granted access to vhost 'REDACTED'
=ERROR REPORT==== 22-Jul-2018::11:59:56 ===
Error on AMQP connection <0.11905.5336> (LOADBALANCER_IP:53528 -> MASTERNODE_IP:5672 - REDACTED:THEQUEUENAME, vhost: 'REDACTED', user: 'REDACTED', state: running), channel 4:
operation none caused a connection exception frame_error: "type 3, first 16 octets = <<\"{\\\"EventID\\\":\\\"4c83\">>: {invalid_frame_end_marker,\n 34}"
=ERROR REPORT==== 22-Jul-2018::11:59:59 ===
closing AMQP connection <0.11905.5336> (LOADBALANCER_IP:53528 -> MASTERNODE_IP:5672 - REDACTED:THEQUEUENAME):
fatal_frame_error
=INFO REPORT==== 22-Jul-2018::12:00:26 ===
accepting AMQP connection <0.20997.542> (LOADBALANCER_IP:54107 -> MASTERNODE_IP:5672)
=INFO REPORT==== 22-Jul-2018::12:00:26 ===
Connection <0.20997.542> (LOADBALANCER_IP:54107 -> MASTERNODE_IP:5672) has a client-provided name: REDACTED:THEQUEUENAME
=INFO REPORT==== 22-Jul-2018::12:00:26 ===
connection <0.20997.542> (LOADBALANCER_IP:54107 -> MASTERNODE_IP:5672 - REDACTED:THEQUEUENAME): user 'REDACTED' authenticated and granted access to vhost 'REDACTED'
=ERROR REPORT==== 22-Jul-2018::12:00:41 ===
Error on AMQP connection <0.20997.542> (LOADBALANCER_IP:54107 -> MASTERNODE_IP:5672 - REDACTED:THEQUEUENAME, vhost: 'REDACTED', user: 'REDACTED', state: running), channel 40:
operation none caused a connection exception frame_error: "type 3, first 16 octets = <<\"{\\\"EventID\\\":\\\"7f28\">>: {invalid_frame_end_marker,\n 100}"
=ERROR REPORT==== 22-Jul-2018::12:00:44 ===
closing AMQP connection <0.20997.542> (LOADBALANCER_IP:54107 -> MASTERNODE_IP:5672 - REDACTED:THEQUEUENAME):
fatal_frame_error
--
You received this message because you are subscribed to the Google Groups "rabbitmq-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to rabbitmq-users+unsubscribe@googlegroups.com.
To post to this group, send email to rabbitmq-users@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
https://github.com/wireshark/wireshark/blob/ea11bf1525b3129760001c1e40ce498cdb1be3a5/epan/dissectors/packet-amqp.c#L6356
--
You received this message because you are subscribed to the Google Groups "rabbitmq-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to rabbitmq-users+unsubscribe@googlegroups.com.
To post to this group, send email to rabbitmq-users@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
So there is a very good chance of concurrent publishing then. Can synchronisation for those be introduced one way or another,at the very least to compare?
On Mon, Aug 6, 2018 at 7:24 PM, Tristan Hyams <t.h...@gmail.com> wrote:
Its extremely complicated. I will see if I can create a sample project. The problem is that the environment, the queue, the data load, are all unique to Production. Even this queue, that has the issue, fluctuates heavily in terms of usage, message body size.
In addition to that, it isn't a pure/raw implementation of RabitMQ DotNetclient. At work we use a .NET client wrapper RawRabbit. I have traced my fingers through the entire call stack, and for all the complexity the pseudo code is this:
Function on Timer:
foreach(message in messagesQueuedForSending)
{
actionTaskList.Add(SendMessageAsync(message))
}
await actionTaskList.WhenAll()
The Chain of Events
SendMessageAsync => BusClient.InvokeAsync => Execute
GetChannelAsync => GetConnectionInBus => CreateModel
Begin Execute
var channel = await GetChannelAsync()
using (channel)
{
channel.BasicPublish(message);
}End Execute
That all fires up to 100 times per batch.
--
You received this message because you are subscribed to the Google Groups "rabbitmq-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to rabbitm...@googlegroups.com.
To post to this group, send email to rabbitm...@googlegroups.com.