发布订阅确认截止日期

时间:2021-07-02 13:39:06

标签: google-cloud-platform google-cloud-pubsub google-cloud-run

我有一个云函数,它向 PubSub 发布消息并触发云运行以执行存档文件过程。当有大文件时,我的云运行 python 代码需要一些时间来处理数据,看起来 PubSub 在 20 秒(默认确认截止时间)后重试消息,这从我的云运行中触发了另一个实例。我已将确认截止日期增加到 600 秒并重新部署所有内容,但它仍在 20 秒后重试消息。我错过了什么?

Cloud Function 发布消息代码:

# Publishes a message
   try:
      publish_future = publisher.publish(topic_path, data=message_bytes)
      publish_future.result()  # Verify the publish succeeded
      return 'Message published.'
   except Exception as e:
      print(e)
      return (e, 500)

这是 PubSub 订阅配置: enter image description here

记录显示第二个实例在 20 秒后被触发: enter image description here

云运行代码:

@app.route("/", methods=["POST"])
def index():
    envelope = request.get_json()
    if not envelope:
        msg = "no Pub/Sub message received"
        print(f"error: {msg}")
        return f"Bad Request: {msg}", 400        

    if not isinstance(envelope, dict) or "message" not in envelope:
        msg = "invalid Pub/Sub message format"
        print(f"error: {msg}")
        return f"Bad Request: {msg}", 400

    pubsub_message = envelope["message"]

    if isinstance(pubsub_message, dict) and "data" in pubsub_message:
        #Decode base64 event['data']
        event_data = base64.b64decode(pubsub_message['data']).decode('utf-8')
        message = json.loads(event_data)

        #logic to process data/archive
        return ("", 204)



1 个答案:

答案 0 :(得分:1)

您应该能够通过设置 minimumBackoff retrypolicy 来控制重试。您可以将最小回退时间设置为 600 秒的最大值,就像您的 ack 截止时间一样,这样重新传递的消息将超过 600 秒。这应该会降低您看到的出现次数。

要处理重复项,建议使您的订阅者具有幂等性。您需要应用某种代码检查来查看之前是否处理过 messageId。

您可以在文档 at-least-once-delivery 中找到以下内容:

通常,Pub/Sub 会按照消息发布的顺序对每条消息进行一次传送。但是,有时可能会乱序或多次传递消息。一般来说,适应多次传递要求您的订阅者在处理消息时是幂等的。您可以使用 Apache Beam 编程模型对 Pub/Sub 消息流进行一次处理。 Apache Beam I/O 连接器可让您通过受控源和接收器与 Cloud Dataflow 进行交互。您可以使用 Apache Beam PubSubIO 连接器(适用于 Java 和 Python)从 Cloud Pub/Sub 读取数据。您还可以通过使用服务的标准排序 API 来使用 Cloud Dataflow 实现有序处理。或者,为了实现排序,您订阅的主题的发布者可以在消息中包含一个序列标记。

相关问题