如何将Blob存储事件推送到事件网格主题

时间:2019-08-21 18:49:10

标签: azure-functions azure-storage-blobs azure-eventgrid

当我尝试为blobCreated创建事件订阅时出现以下错误:

enter image description here

当容器中有一个新的blob时,我希望将该事件转发给一个主题。

我去了存储帐户,并尝试创建事件订阅:

enter image description here enter image description here enter image description here

我在做什么错?我们如何将Blob存储事件推送到事件网格主题?

1 个答案:

答案 0 :(得分:3)

AEG不处理自定义主题终结点的预订Webhook终结点验证,但是该missing feature有一种解决方法,请查看更多详细信息here

AEG 级联的概念是订阅该自定义主题,其订阅者将通过http GET调用处理验证。

我建议使用 CustomInputSchema 创建自定义主题终结点,否则Blob存储事件将嵌套在事件数据对象中。

更新:

以下是有关AEG到AEG集成的更多详细信息,例如级联(转发)源事件。

请注意,当前版本的AEG不完全支持此集成(请参见下图),换句话说,自定义主题终结点没有内置的验证响应:

enter image description here

在与Webhook端点进行订阅握手期间,以下事件消息(例如Blob存储)被发送到端点:

[
  {
    "id": "c2ad3900-f483-4e45-a15b-927195878e99",
    "topic": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/myRG/providers/Microsoft.Storage/storageAccounts/myStorage",
    "subject": "",
    "data": {
      "validationCode": "00000000-0000-0000-0000-000000000000",
      "validationUrl": "https://rp2-westus.eventgrid.azure.net:553/eventsubscriptions/cascade/validate?id=04B6279C-A6ED-4FC0-981A-D9E53312B49A&t=2019-08-22T05:12:44.3114422Z&apiVersion=2019-02-01-preview&token=xxxxxxxxxxxxxx"
      },
    "eventType": "Microsoft.EventGrid.SubscriptionValidationEvent",
    "eventTime": "2019-08-22T05:12:44.3114422Z",
    "metadataVersion": "1",
    "dataVersion": "2"
  }
]

事件订阅正在通过编程(使用 validationCode 响应)或手动(将GET请求发送到 validationUrl )来等待validation response

对于这种集成,我们必须使用手动验证,例如发送GET请求。为此,我们必须创建一个订户来处理有关自定义主题的手动验证。

下图显示了此解决方案:

enter image description here

用于手动验证的 EventGridTrigger 函数的实现在here中进行了描述。

您可以看到上面的事件验证消息, subject 属性为空,因此我们可以处理这种情况以及嵌套(级联)事件数据的情况,因此自定义主题终结点应该使用 CustomEventSchema 创建。 以下是request有效负载中的属性对象的示例:

 "properties": {
    "inputSchema": "CustomEventSchema",
    "inputSchemaMapping": {
      "properties": {
        "id": {
          "sourceField": null
        },
        "topic": {
          "sourceField": null
        },
        "eventTime": {
          "sourceField": null
        },
        "eventType": {
          "sourceField": null,
          "defaultValue": "notification"
        },
        "subject": {
          "sourceField": null,
          "defaultValue": "/webhook/events"
        },
        "dataVersion": {
          "sourceField": null,
          "defaultValue": "1.0"
        }
      },
      "inputSchemaMappingType": "Json"
    }
  }

注意:

  1. 自定义主题aeg-sas-key的值必须在webhook端点地址中进行url编码。
  2. 可以使用验证器的高级过滤器:

     "advancedFilters": [
          {
            "values": [
              "Microsoft.EventGrid.SubscriptionValidationEvent"
            ],
            "operatorType": "StringContains",
            "key": "Data.EventType"
          }
        ]