You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There is a one to one relationship between consumed Pulsar messages and produced Pulsar messages. One message of input results in one message of output. Currently when we use sendAsync for the producer, we return immediately and then ack the original message to the Pulsar broker. This way, if the sending fails, we have already acked the original message and are unable to reprocess it.
Correct solution could be something along the lines of:
There is a one to one relationship between consumed Pulsar messages and produced Pulsar messages. One message of input results in one message of output. Currently when we use sendAsync for the producer, we return immediately and then ack the original message to the Pulsar broker. This way, if the sending fails, we have already acked the original message and are unable to reprocess it.
Correct solution could be something along the lines of:
The text was updated successfully, but these errors were encountered: