ASG
IBM
Zystems
Cressida
Icon
Netflexity
 
  MQSeries.net
Search  Search       Tech Exchange      Education      Certifications      Library      Info Center      SupportPacs      LinkedIn  Search  Search                                                                   FAQ  FAQ   Usergroups  Usergroups
 
Register  ::  Log in Log in to check your private messages
 
RSS Feed - WebSphere MQ Support RSS Feed - Message Broker Support

MQSeries.net Forum Index » WebSphere Message Broker (ACE) Support » How to avoid duplicate Publications

Post new topic  Reply to topic
 How to avoid duplicate Publications « View previous topic :: View next topic » 
Author Message
gyadavil
PostPosted: Wed Mar 14, 2007 1:50 pm    Post subject: How to avoid duplicate Publications Reply with quote

Acolyte

Joined: 01 Feb 2005
Posts: 62

Hello

I am looking for a solution where I need to re publish the data but not all the subscribers for that topic should not receive it. In detail

I have Subscriber A and Subscriber B are there and they subscribed for a topic /Test/# (Same Topic)
I published 10 messages with topic as /Test/Test

Subscriber A got all of them but Subscriber B got only 1 to 5 and 10th message. He didn't receive 6,7,8 and 9th messages due to some error in the data or some other issue.

Now I want to republish the messages 6,7,8 and 9 with topic as /Test/Test.
How do I skip subscriber A to receive these as he already received them ??
Can someone help me how do I configure my system and messages to handle this ?
Back to top
View user's profile Send private message
fjb_saper
PostPosted: Wed Mar 14, 2007 2:19 pm    Post subject: Reply with quote

Grand High Poobah

Joined: 18 Nov 2003
Posts: 20756
Location: LI,NY

You need something like magazine and backissue ordering...

A DB that stores all publications is a good point to start with...

Enjoy
_________________
MQ & Broker admin
Back to top
View user's profile Send private message Send e-mail
Michael Dag
PostPosted: Wed Mar 14, 2007 2:33 pm    Post subject: Re: How to avoid duplicate Publications Reply with quote

Jedi Knight

Joined: 13 Jun 2002
Posts: 2607
Location: The Netherlands (Amsterdam)

gyadavil wrote:
He didn't receive 6,7,8 and 9th messages due to some error in the data or some other issue.
he WHAT! ? !

knowing pub/sub only in theory, isn't that what a durable publication is all about? publications are stored for new subscribers so they can get 'back issues' aswell or if the subscriber is offline the publication can be retrieved later...
_________________
Michael



MQSystems Facebook page
Back to top
View user's profile Send private message Visit poster's website MSN Messenger
jefflowrey
PostPosted: Wed Mar 14, 2007 3:06 pm    Post subject: Reply with quote

Grand Poobah

Joined: 16 Oct 2002
Posts: 19981

Also, you can look at the Message Replay Server Support Pack.
_________________
I am *not* the model of the modern major general.
Back to top
View user's profile Send private message
gyadavil
PostPosted: Wed Mar 14, 2007 3:51 pm    Post subject: Reply with quote

Acolyte

Joined: 01 Feb 2005
Posts: 62

[quote="jefflowrey"]Also, you can look at the Message Replay Server Support Pack.[/quote]

I am a new bee to pub/sub. Can you give me more details.

How I can avoid skip the subscribers who alredy received these when I am publishing the message with same topic again.
Back to top
View user's profile Send private message
gyadavil
PostPosted: Wed Mar 14, 2007 3:53 pm    Post subject: Re: How to avoid duplicate Publications Reply with quote

Acolyte

Joined: 01 Feb 2005
Posts: 62

[quote="Michael Dag"][quote="gyadavil"]He didn't receive 6,7,8 and 9th messages due to some error in the data or some other issue.[/quote] he WHAT! ? !

knowing pub/sub only in theory, isn't that what a [i]durable publication[/i] is all about? publications are stored for new subscribers so they can get 'back issues' aswell or if the subscriber is offline the publication can be retrieved later...[/quote]

I have problem with existing subscriptions. Due to some reason the message did not reach the subscriber, how do we resend these to the subscriber who need these instead of sending to all subscribers
Back to top
View user's profile Send private message
Michael Dag
PostPosted: Wed Mar 14, 2007 4:32 pm    Post subject: Re: How to avoid duplicate Publications Reply with quote

Jedi Knight

Joined: 13 Jun 2002
Posts: 2607
Location: The Netherlands (Amsterdam)

gyadavil wrote:
Due to some reason the message did not reach the subscriber

We are still talking about MQ pub/sub right? what was the reason (code) the subscriber got on getting the subscriptions?

I think you need to look at the cause rather then fixing the symptom
_________________
Michael



MQSystems Facebook page
Back to top
View user's profile Send private message Visit poster's website MSN Messenger
gyadavil
PostPosted: Wed Mar 14, 2007 5:10 pm    Post subject: Re: How to avoid duplicate Publications Reply with quote

Acolyte

Joined: 01 Feb 2005
Posts: 62

[quote="Michael Dag"][quote="gyadavil"]Due to some reason the message did not reach the subscriber[/quote]
We are still talking about MQ pub/sub right? what was the reason (code) the subscriber got on getting the subscriptions?

I think you need to look at the cause rather then fixing the symptom[/quote]

Yes. MQ pub/sub only. MQ pub/sub or Message Broker pub/sub same right ??

One reason might be, configuration is wrong for subscriber connection details. Then in that case messages will end up in System.Dead.Letter.Queue. In such cases, if publisher want to publish the data again, then only the the subscriber having issue should get it instead of all other subscribers.

One more question I have here is ......when I have subscriber queue configuration wrong, the message is going to SDLQ...why this is not coming back to message flow as exception ??
Back to top
View user's profile Send private message
fjb_saper
PostPosted: Thu Mar 15, 2007 2:56 am    Post subject: Re: How to avoid duplicate Publications Reply with quote

Grand High Poobah

Joined: 18 Nov 2003
Posts: 20756
Location: LI,NY

gyadavil wrote:

One more question I have here is ......when I have subscriber queue configuration wrong, the message is going to SDLQ...why this is not coming back to message flow as exception ??


The word is Asynchronous. For the broker the message put was O.K.
Now you need to resolve the DLQ problem (use a DLQ handler to redirect the messages where they should go).

To have true "redo" capabilities that are targetted at only a specific subscriber (late comer etc...) you need to treat your publications like a magazine publication:
you need an archive and a service to send back issues only to the requester...

Enjoy
_________________
MQ & Broker admin
Back to top
View user's profile Send private message Send e-mail
jsware
PostPosted: Thu Mar 15, 2007 4:14 am    Post subject: Re: How to avoid duplicate Publications Reply with quote

Chevalier

Joined: 17 May 2001
Posts: 455

gyadavil wrote:
Subscriber A got all of them but Subscriber B got only 1 to 5 and 10th message. He didn't receive 6,7,8 and 9th messages due to some error in the data or some other issue.

If subscriber B failed because of a data error, wouldn't publishing the same data again cause the same problem? If you fix the data error, wouldn't both subscribers want the new copy?

Any way, not sure how you could do this without something like the replay server. My understanding is that publications retained by the broker only keep that last publication for a topic, not all "back issues". This allows a late subscriber to get the latest publication. For example, if a Stock/IBM topic retained the last trade price of IBM stock, a new subscriber would not have to wait until the next trade price change to know what the current trade price is. I am not aware that you can't get the trade price 5,6,7 or 8 price changes ago.
_________________
Regards
John
The pain of low quaility far outlasts the joy of low price.
Back to top
View user's profile Send private message
Display posts from previous:   
Post new topic  Reply to topic Page 1 of 1

MQSeries.net Forum Index » WebSphere Message Broker (ACE) Support » How to avoid duplicate Publications
Jump to:  



You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
Protected by Anti-Spam ACP
 
 


Theme by Dustin Baccetti
Powered by phpBB © 2001, 2002 phpBB Group

Copyright © MQSeries.net. All rights reserved.