Is it possible to consume from a queue without ACK'ing?
I used to do this in amqp without problems but in wabbit I haven't been able to do so. Can you point me to the place to set up such flag? I tried on the producer options but it didn't work.
What I tried was to set no_ack: true in the handle_channel_opened/2 callback but then I see my consumers go up and down in the RabbitMQ admin panel and I see tons of enqueued messages. There are messages that are being received by the wabbit consumer and I don't see any errors or disconnections. Any ideas?
I'm using the master branch, Erlang/OTP 19.2 and Elixir 1.4.0-rc.1.
Is it possible to consume from a queue without ACK'ing?
I used to do this in
amqpwithout problems but inwabbitI haven't been able to do so. Can you point me to the place to set up such flag? I tried on the producer options but it didn't work.What I tried was to set
no_ack: truein thehandle_channel_opened/2callback but then I see my consumers go up and down in the RabbitMQ admin panel and I see tons of enqueued messages. There are messages that are being received by thewabbitconsumer and I don't see any errors or disconnections. Any ideas?I'm using the master branch, Erlang/OTP 19.2 and Elixir 1.4.0-rc.1.