タグ

関連タグで絞り込む (0)

  • 関連タグはありません

タグの絞り込みを解除

rabbitmqとdeadletterに関するdannのブックマーク (2)

  • Dead Letter Channel Pattern with RabbitMQ

    メッセージングシステムで送信されたメッセージが正常に処理されなかった場合どうするのか? RabbitMQ 2.8 以降では expire したメッセージや拒否されたメッセージを dead letter として専用の exchange に転送する事ができる。 dead letter になるユースケース 以下のケースで、メッセージは dead letter になる The message is rejected (basic.reject or basic.nack) with requeue=false The TTL for the message expires Enterprise Integratin Patterns との対比 Gregor Hohpe & Bobby Woolf の “Enterprise Integratin Patterns” では 前者は Invalid M

    Dead Letter Channel Pattern with RabbitMQ
  • Dead Letter Exchanges | RabbitMQ

    What is a Dead Letter Exchange​ Messages from a queue can be "dead-lettered", which means these messages are republished to an exchange when any of the following four events occur. The message is negatively acknowledged by an AMQP 1.0 receiver using the rejected outcome or by an AMQP 0.9.1 consumer using basic.reject or basic.nack with requeue parameter set to false, or The message expires due to

  • 1