GCP - Cloud Pub/Sub
Consider this code snippet using Google Cloud Pub/Sub subscriber client:
def callback(message):
print(f"Received: {message.data.decode('utf-8')}")
# No acknowledgment called here
subscriber.subscribe(subscription_path, callback=callback)
What will happen to the messages if the callback never calls message.ack()?