<div dir="ltr">As MK said, be sure to either close the channels after you don't need them, or reuse them. For me it seems that you are keeping persistent connections and then you open one channel per request, but you don't close the channel at the end, therefore the channels are "leaking", and thus your problem.<div>
<br></div><div>Regards,</div><div><br></div><div>Alvaro</div></div><div class="gmail_extra"><br><br><div class="gmail_quote">On Tue, May 27, 2014 at 7:25 AM, Michael Klishin <span dir="ltr"><<a href="mailto:mklishin@gopivotal.com" target="_blank">mklishin@gopivotal.com</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div class=""> On 27 May 2014 at 03:00:50, BeaT Adrian (<a href="mailto:aditza8@gmail.com">aditza8@gmail.com</a>) wrote:<br>

> > After a while (I guess 65500 requests) a problem occurs halting<br>
> all writes<br>
> "Could not create channel. Connection has no open channel slots<br>
> remaining"<br>
><br>
> From what I have read in the sources is because every tcp connection<br>
> have an autoincrement channel ID that reaches its max. This happens<br>
> because every request must use the channel, and is no way to use<br>
> the same channel ( I could not find a way into the php-amqp channel<br>
> classs to make it persistent) and scripts cannot communicate<br>
> ( to use the same instance of the channel as php object).<br>
<br>
</div>Every AMQP 0-9-1 connection has 1 or more channels (the max is negotiated<br>
between client and server, so this can be limited by the broker). If you<br>
open a lot of channels, you need to close them, or use more than 1 connection<br>
(which in turn will use more than 1 TCP connection).<br>
<br>
Both channels and especially connections in practice take up some resources.<br>
It is very rare that an app actually needs 1000s or 10s of 1000s of channels.<br>
<br>
See <a href="http://www.rabbitmq.com/tutorials/amqp-concepts.html" target="_blank">http://www.rabbitmq.com/tutorials/amqp-concepts.html</a> if you need a more<br>
detailed explanation.<br>
<br>
By the way, it is highly recommended that you use <a href="https://github.com/videlalvaro/php-amqplib" target="_blank">https://github.com/videlalvaro/php-amqplib</a><br>
and not the PECL extension (which is not actively maintained AFAIK).<br>
--<br>
MK<br>
<br>
Software Engineer, Pivotal/RabbitMQ<br>
_______________________________________________<br>
rabbitmq-discuss mailing list<br>
<a href="mailto:rabbitmq-discuss@lists.rabbitmq.com">rabbitmq-discuss@lists.rabbitmq.com</a><br>
<a href="https://lists.rabbitmq.com/cgi-bin/mailman/listinfo/rabbitmq-discuss" target="_blank">https://lists.rabbitmq.com/cgi-bin/mailman/listinfo/rabbitmq-discuss</a><br>
</blockquote></div><br></div>