#20:38:32.753 [AMQP Connection some_ip:5672] WARN c.r.c.impl.ForgivingExceptionHandler - An unexpected connection driver error occured (Exception message: Socket closed)
20:40:41.648 [AMQP Connection some_ip:5672] WARN c.r.c.impl.ForgivingExceptionHandler - An unexpected connection driver error occured (Exception message: Socket closed)
#20:40:45.082 [AMQP Connection 0:0:0:0:0:0:0:1:5672] WARN c.r.c.impl.ForgivingExceptionHandler - An unexpected connection driver error occured (Exception message: Socket closed)
20:43:23.786 [AMQP Connection some_ip:5672] WARN c.r.c.impl.ForgivingExceptionHandler - An unexpected connection driver error occured (Exception message: Socket closed)
#20:43:26.797 [AMQP Connection some_ip:5672] WARN c.r.c.impl.ForgivingExceptionHandler - An unexpected connection driver error occured (Exception message: Socket closed)
Does the run crash completely (no results)? There can be some spurious
warnings when a run stops and PerfTestMulti moves on to the next one.
On Thu, Jul 11, 2019 at 10:52 PM Rod <rodrigo...@gmail.com> wrote:
>
> Hi, I'm facing the following issue when using perfTest tool:
>
>
> #20:38:32.753 [AMQP Connection some_ip:5672] WARN c.r.c.impl.ForgivingExceptionHandler - An unexpected connection driver error occured (Exception message: Socket closed)
>
> 20:40:41.648 [AMQP Connection some_ip:5672] WARN c.r.c.impl.ForgivingExceptionHandler - An unexpected connection driver error occured (Exception message: Socket closed)
>
> #20:40:45.082 [AMQP Connection 0:0:0:0:0:0:0:1:5672] WARN c.r.c.impl.ForgivingExceptionHandler - An unexpected connection driver error occured (Exception message: Socket closed)
>
> 20:43:23.786 [AMQP Connection some_ip:5672] WARN c.r.c.impl.ForgivingExceptionHandler - An unexpected connection driver error occured (Exception message: Socket closed)
>
> #20:43:26.797 [AMQP Connection some_ip:5672] WARN c.r.c.impl.ForgivingExceptionHandler - An unexpected connection driver error occured (Exception message: Socket closed)
>
>
>
> In my publish-consume-spec.js I have this content:
>
> [
>
> {'name': 'message-sizes-and-producers',
> 'type': 'varying',
> 'params': [{'time-limit': 30,
> 'consumer-count': 90}],
> 'variables': [{'name': 'min-msg-size',
> 'values': [0, 1000, 10000, 100000]},
> {'name': 'producer-count',
> 'values': [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]}]}
> ]
>
>
>
>
> I'm not sure why it is failing. For example for another scenario, it sometimes is passing and sometimes not (with the same error). This is the scenario:
>
> {'name': 'no-ack',
> 'type': 'simple',
> 'params': [{'time-limit': 30}]
> }
>
>
>
> Also, If I run perfTest command just plain (bin/runjava com.rabbitmq.perf.PerfTest) I don't see any 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 rabbitm...@googlegroups.com.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "https://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>RabbitMQ Performance</title>
<link href="../perf.css" rel="stylesheet" type="text/css">
<!--[if lte IE 8]><script language="javascript" type="text/javascript" src="../lib/excanvas.min.js"></script><![endif]-->
<script language="javascript" type="text/javascript" src="../lib/jquery.min.js"></script>
<script language="javascript" type="text/javascript" src="../lib/jquery.flot.min.js"></script>
<script language="javascript" type="text/javascript" src="../perf.js"></script>
<script language="javascript" type="text/javascript">
$(document).ready(function() {
var main_results;
$.ajax({
url: 'publish-consume-results-rod.js',
success: function(data) {
render_graphs(JSON.parse(data));
},
fail: function() { alert('error loading publish-consume-results-rod.js'); }
});
});
</script>
</head>
<body>
<h1>RabbitMQ Performance Example</h1>
<h3>message-sizes-and-producers</h3>
<div class="chart"
data-type="time"
data-latency="true"
data-x-axis="time (s)"
data-y-axis="rate (msg/s)"
data-y-axis2="latency (μs)"
data-scenario="message-sizes-and-producers"></div>
</body>
</html>
[root@ip-10-14-19-204 examples]#