0

I'm new to RabbitMQ,

just went over the documentation but didn't find any mechanism on checking message integrity. Message consumption acknowledgment only checks delivered or not but what if the message payload is contaminated. Or is it supported by AMQP protocol?

Thanks in advance!

lwlwlw
  • 1

1 Answers1

0

RabbitMQ does not modify the message contents, nor does it perform integrity checks. It would be up to the publishing and consuming applications to do this. I suggest computing a checksum and adding it as a message header.


NOTE: the RabbitMQ team monitors the rabbitmq-users mailing list and only sometimes answers questions on StackOverflow.

Luke Bakken
  • 8,993
  • 2
  • 20
  • 33