你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

为 Azure 服务总线队列或主题启用重复消息检测

为队列或主题启用重复检测时,Azure 服务总线将保留在配置的时间内发送到队列或主题的所有消息的历史记录。 在此间隔期间,队列或主题将不会存储任何重复的消息。 启用此属性可保证在用户定义的时间段内准确地传递一次。 有关详细信息,请参阅重复检测。 本文介绍为服务总线队列或主题启用重复消息检测的不同方式。

注意

  • 基本层的服务总线不支持重复检测。 标准层和高级层支持重复检测。 有关这些层之间的差异,请参阅服务总线定价
  • 创建队列或主题后,无法启用或禁用重复检测。 只能在创建队列或主题时执行此操作。

使用 Azure 门户

在 Azure 门户中创建“队列”时,请选择“启用重复检测”,如下图所示。 你可以在创建队列或主题时配置重复检测时间窗口的大小。

Enable duplicate detection at the time of the queue creation

在 Azure 门户中创建主题时,请选择“启用重复检测”,如下图所示。

Enable duplicate detection at the time of the topic creation

如果你在创建时启用了重复检测,也可以为现有队列或主题配置此设置。

为现有队列或主题更新重复检测时间窗口大小

若要为现有队列或主题更改重复检测时间窗口大小,请在“概述”页上,为“重复检测时间窗口”选择“更改” 。

队列

Set duplicate detection window size for a queue

主题

Set duplicate detection window size for a topic

使用 Azure CLI

若要创建已启用重复检测的队列,请使用 --enable-duplicate-detection 设置为 trueaz servicebus queue create 命令。

az servicebus queue create \
    --resource-group myresourcegroup \
    --namespace-name mynamespace \
    --name myqueue \
    --enable-duplicate-detection true \
    --duplicate-detection-history-time-window P1D

若要创建已启用重复检测的主题,请使用 --enable-duplicate-detection 设置为 trueaz servicebus topic create 命令。

az servicebus topic create \
    --resource-group myresourcegroup \
    --namespace-name mynamespace \
    --name mytopic \
    --enable-duplicate-detection true \
    --duplicate-detection-history-time-window P1D

上述示例还使用 --duplicate-detection-history-time-window 参数设置重复检测时间窗口的大小。 时间窗口大小设置为 1 天。 默认值为 10 分钟,允许的最大值为 7 天。

若要使用新的检测时间窗口大小更新队列,请使用带有 --duplicate-detection-history-time-window 参数的 az servicebus queue update 命令。 在本示例中,时间窗口大小更新为 7 天。

az servicebus queue update \
    --resource-group myresourcegroup \
    --namespace-name mynamespace \
    --name myqueue \
    --duplicate-detection-history-time-window P7D

同样,若要使用新的检测时间窗口大小更新主题,请使用带有 --duplicate-detection-history-time-window 参数的 az servicebus topic update 命令。 在本示例中,时间窗口大小更新为 7 天。

az servicebus topic update \
    --resource-group myresourcegroup \
    --namespace-name mynamespace \
    --name myqueue \
    --duplicate-detection-history-time-window P7D

使用 Azure PowerShell

若要创建已启用重复检测的队列,请使用 -RequiresDuplicateDetection 设置为 $TrueNew-AzServiceBusQueue 命令。

New-AzServiceBusQueue -ResourceGroup myresourcegroup `
    -NamespaceName mynamespace `
    -QueueName myqueue `
    -RequiresDuplicateDetection $True `
    -DuplicateDetectionHistoryTimeWindow P1D

若要创建已启用重复检测的主题,请使用 -RequiresDuplicateDetection 设置为 trueNew-AzServiceBusTopic 命令。

New-AzServiceBusTopic -ResourceGroup myresourcegroup `
    -NamespaceName mynamespace `
    -Name mytopic `
    -RequiresDuplicateDetection $True
    -DuplicateDetectionHistoryTimeWindow P1D

上述示例还使用 -DuplicateDetectionHistoryTimeWindow 参数设置重复检测时间窗口的大小。 时间窗口大小设置为 1 天。 默认值为 10 分钟,允许的最大值为 7 天。

若要使用新的检测时间窗口大小更新队列,请参阅以下示例。 在本示例中,时间窗口大小更新为 7 天。

$queue=Get-AzServiceBusQueue -ResourceGroup myresourcegroup `
    -NamespaceName mynamespace `
    -QueueName myqueue 

$queue.DuplicateDetectionHistoryTimeWindow='P7D'

Set-AzServiceBusQueue -ResourceGroup myresourcegroup `
    -NamespaceName mynamespace `
    -QueueName myqueue `
    -QueueObj $queue

若要使用新的检测时间窗口大小更新主题,请参阅以下示例。 在本示例中,时间窗口大小更新为 7 天。

$topic=Get-AzServiceBusTopic -ResourceGroup myresourcegroup `
    -NamespaceName mynamespace `
    -Name mytopic

$topic.DuplicateDetectionHistoryTimeWindow='P7D'

Set-AzServiceBusTopic -ResourceGroup myresourcegroup `
    -NamespaceName mynamespace `
    -Name mytopic `
    -TopicObj $topic

使用 Azure 资源管理器模板

若要创建已启用重复检测的队列,请在“队列属性”部分中将 requiresDuplicateDetection 设置为 true。 有关详细信息,请参阅 Microsoft.ServiceBus 命名空间/队列模板参考。 为 duplicateDetectionHistoryTimeWindow 属性指定一个值,以设置重复检测时间窗口的大小。 在以下示例中,大小设置为 1 天。

{
  "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#",
  "contentVersion": "1.0.0.0",
  "parameters": {
    "serviceBusNamespaceName": {
      "type": "string",
      "metadata": {
        "description": "Name of the Service Bus namespace"
      }
    },
    "serviceBusQueueName": {
      "type": "string",
      "metadata": {
        "description": "Name of the Queue"
      }
    },
    "location": {
      "type": "string",
      "defaultValue": "[resourceGroup().location]",
      "metadata": {
        "description": "Location for all resources."
      }
    }
  },
  "resources": [
    {
      "type": "Microsoft.ServiceBus/namespaces",
      "apiVersion": "2018-01-01-preview",
      "name": "[parameters('serviceBusNamespaceName')]",
      "location": "[parameters('location')]",
      "sku": {
        "name": "Standard"
      },
      "properties": {},
      "resources": [
        {
          "type": "Queues",
          "apiVersion": "2017-04-01",
          "name": "[parameters('serviceBusQueueName')]",
          "dependsOn": [
            "[resourceId('Microsoft.ServiceBus/namespaces', parameters('serviceBusNamespaceName'))]"
          ],
          "properties": {
            "requiresDuplicateDetection": true,
            "duplicateDetectionHistoryTimeWindow": "P1D"
          }
        }
      ]
    }
  ]
}

若要创建已启用重复检测的主题,请在“主题属性”部分中将 requiresDuplicateDetection 设置为 true。 有关详细信息,请参阅 Microsoft.ServiceBus 命名空间/主题模板参考

{
  "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#",
  "contentVersion": "1.0.0.0",
  "parameters": {
    "service_BusNamespace_Name": {
      "type": "string",
      "metadata": {
        "description": "Name of the Service Bus namespace"
      }
    },
    "serviceBusTopicName": {
      "type": "string",
      "metadata": {
        "description": "Name of the Topic"
      }
    },
    "location": {
      "type": "string",
      "defaultValue": "[resourceGroup().location]",
      "metadata": {
        "description": "Location for all resources."
      }
    }
  },
  "resources": [
    {
      "apiVersion": "2018-01-01-preview",
      "name": "[parameters('service_BusNamespace_Name')]",
      "type": "Microsoft.ServiceBus/namespaces",
      "location": "[parameters('location')]",
      "sku": {
        "name": "Standard"
      },
      "properties": {},
      "resources": [
        {
          "apiVersion": "2017-04-01",
          "name": "[parameters('serviceBusTopicName')]",
          "type": "topics",
          "dependsOn": [
            "[resourceId('Microsoft.ServiceBus/namespaces/', parameters('service_BusNamespace_Name'))]"
          ],
          "properties": {
            "requiresDuplicateDetection": true,
            "duplicateDetectionHistoryTimeWindow": "P1D"
          }
        }
      ]
    }
  ]
}

后续步骤

尝试采用所选语言的示例,了解 Azure 服务总线功能。

在下面查找早期 .NET 和 Java 客户端库示例:

2026 年 9 月 30 日,我们将停用 Azure 服务总线 SDK 库 WindowsAzure.ServiceBus、Microsoft.Azure.ServiceBus 和 com.microsoft.azure.servicebus,这些库不符合 Azure SDK 准则。 我们还将结束对 SBMP 协议的支持,因此在 2026 年 9 月 30 日之后,你将无法再使用此协议。 请在该日期之前迁移到最新的 Azure SDK 库,新库提供了关键安全更新和改进功能。

尽管 2026 年 9 月 30 日之后仍然可以使用较旧的库,但它们将不再获得 Microsoft 的官方支持和更新。 有关详细信息,请参阅支持停用公告