I have a publisher that publishes messages to a particular topic (myTopic)
, then on my PubSub I create a subscription name: myTopicSub
to this topic (myTopic)
, then I have a VM that runs a service that listeners on my subscription myTopicSub
THIS WORKS
MY PROBLEM IS: if there be a need to scale, and I add 5 more VM to handle more messages from my subscription... is it possible for PubSub to send the same message to more than one VM...
Because I only need one VM to process the message once. Please I need help