Kafka ले विभिन्न delivery guarantees समर्थन गर्दछ — at-most-once, at-least-once, र exactly-once — जसले सन्देशहरू हराउन वा दोहोरिन सकेन कि भनी निर्धारण गर्दछ। यी बुझ्ने र कसरी यी प्राप्त गर्ने भनेर जान्नु विश्वस्त प्रणालीहरू निर्माण गर्नको लागि महत्त्वपूर्ण छ।
तीन delivery semantics
AT-MOST-ONCE → messages may be LOST but never duplicated:
→ commit offset BEFORE processing → if processing fails, the message is skipped (lost)
→ for: when occasional loss is acceptable and duplicates are not (rare)
AT-LEAST-ONCE → messages are never lost but may be DUPLICATED:
→ commit offset AFTER processing → if a crash occurs before commit, the message is
reprocessed (duplicate) → requires IDEMPOTENT processing
→ the common default; safe (no loss) but handle duplicates
EXACTLY-ONCE → each message is processed exactly once (no loss, no duplicates):
→ the strongest, but hardest; requires Kafka transactions + idempotent producers
