RabbitMQ - Performance Tuning
Identify the issue in this RabbitMQ consumer code snippet that sets prefetch_count=0 and explain why it might cause problems:
channel.basic_qos(prefetch_count=0)
for method_frame, properties, body in channel.consume('queue'):
process(body)
channel.basic_ack(method_frame.delivery_tag)