Prefetch (QoS) ზღუდავს რამდენი არაშედეგი მესიჯი შეუძლია consumer-ს თავს შემოჩერებული ჰქონდეს ერთდროულად — კონტროლირებს სამუშაოს განაწილებას და ხელს უშლის ერთი consumer-ის გადამეტებაში, ხოლო სხვები უმოქმედო რჩებიან. ეს მნიშვნელოვანია სამართლიანი, ეფექტური მესიჯ-processing-ისთვის.
რას აკეთებს prefetch
PREFETCH (QoS - prefetch count) → limits the number of UNACKNOWLEDGED messages a consumer
can have at once:
→ without it → RabbitMQ may dispatch many messages to one consumer (it grabs a batch)
→ with prefetch=N → a consumer gets at most N unacked messages at a time (must ack to get more)
→ controls how messages are distributed and how much a consumer buffers
