Azure 流分析 UTC 时间戳
Azure stream analytics UTC time stamp
如何在 ASA 中获取 UTC 时间戳? system.timestamp 提供 UTC 时间戳
正如@CSharpRocks 所说,看来您已经知道如何在 ASA 中获取 UTC 时间戳。根据官方参考资料Time Management (Azure Stream Analytics)
,这里只是证明了ASA中的UTC时间戳,如下
All time handling operations in Azure Stream Analytics are in UTC.
并且来自参考 System.Timestamp。
Every event at every stage of the query in Azure Stream Analytics has a timestamp associated with it. System.Timestamp is a system property that can be used to retrieve the event’s timestamp.
如何在 ASA 中获取 UTC 时间戳? system.timestamp 提供 UTC 时间戳
正如@CSharpRocks 所说,看来您已经知道如何在 ASA 中获取 UTC 时间戳。根据官方参考资料Time Management (Azure Stream Analytics)
,这里只是证明了ASA中的UTC时间戳,如下
All time handling operations in Azure Stream Analytics are in UTC.
并且来自参考 System.Timestamp。
Every event at every stage of the query in Azure Stream Analytics has a timestamp associated with it. System.Timestamp is a system property that can be used to retrieve the event’s timestamp.