Archived

This forum has been archived. Please start a new discussion on GitHub.

ICEStorm durable subscription

Does ICE storm support durable subscription? i.e. in case if the subscriber goes down and comes back up, it has to receive the message it had missed. OR also the scneario when publisher has just published a message and then a subscriber comes up, it need to receive the last message published by the publisher.

Does ICE Storm support such subscriptions? If yes, then how to configure the Icestorm to handle such scenarios.

Comments

  • bernard
    bernard Jupiter, FL
    Hi Vijayalaxmi,

    IceStorm does not store any message sent by the publishers to the subscribers. When a subscriber comes up, it gets only newly published messages--not old ones.

    Best regards,
    Bernard
  • Thanks for the reply.