Let us have multiple IS that are connected to a single broker. Whenever someone publishes any document to broker is it possible to know which IS picked up the published data(subscription), considering we have access to only one IS through which we are publishing a document?
In the pub sub model in the subscribe side I came to know that “If client-side queuing is on, the reader will store its documents to a trigger store on disk (as well as in memory) and then release its thread. If the documents are guaranteed, the Integration Server returns an acknowledgment to the Broker at this time.” So if we can know the type of returned acknowledgment we will be able to know which IS has subscribed our data…
Here I dont know the returned type of ack doc and also dont know if it is published to the broker or any message is sent to the broker Admin. Please help.
Are you trying to return to the publisher which IS processed a published a document? If this is important, perhaps pub/sub isn’t the right model to be using. Can you share additional details?
I think you’re trying to get system internal things won’t do what you need.
The pub/sub model is such that the publisher is not supposed to know about nor care about the specific subscribers.
If you want a specific acknowledgment to your published doc, then perhaps a request/reply model would be better. Have the subscriber respond with your doc type (not the system ack) to provide whatever data you want.
Hi,
I am conver Flatfile into database( mean: store tha flatfile data into database) but how to handle douplicate records.
I run the program twotimes same data store into the database repeatedly, how to handle this duplicate data store into DB.
ename id sal
Ram 1001 7000
Pavan 1002 6000
Ram 1001 7000
Pavan 1002 6000