从 Azure 流分析作业生成唯一标识符

Generating unique identifier from Azure Stream Analytics Job

我正在尝试使用 Azure Stream Analytics Job 将数据写入 SQL Server。我为 Id 列使用了唯一标识符,但似乎无法从 Azure Stream Analytics Job 生成 guid。我怎样才能生成它?我应该更改我的 id 列类型吗?有什么建议吗?

您可以尝试使用GetMetadataPropertyValue功能。

The EventId property creates a unique ID (Guid) for an input event, which can be useful for primary key purposes. EventId is consistent (not random); if you go back in time and re-read the same input event, Stream Analytics will produce the same ID.

这里是 MSDN. You can also refer to .