Azure 流分析 blob 输出 schemaHashcode、Guid 和 Number 变量指的是什么?
What do the Azure Stream Analytics blob output schemaHashcode, Guid, and Number variables refer to?
在“路径模式”下的 Azure 流分析的 Blob Output Configuration documentation 中指出:
File naming uses the following convention:
{Path Prefix Pattern}/schemaHashcode_Guid_Number.extension
Example output files:
- Myoutput/20170901/00/45434_gguid_1.csv
- Myoutput/20170901/01/45434_gguid_1.csv
但是,文档中似乎没有解释以下引用变量:
- 架构哈希码
- 向导
- 人数
这些变量指的是什么,它们什么时候可以改变?
GUID 指的是内部编写器的 uid。这对于为写入 blob 文件而创建的每个编写器都是唯一的。新的写入器是基于分区创建的,并且在写入器崩溃时出现异常。当观察到传入流中的新模式时,SchemaHashcode 的值会发生变化。因此,当架构更改时,您会注意到新文件。 Number指的是Blob块计数器的索引。
在“路径模式”下的 Azure 流分析的 Blob Output Configuration documentation 中指出:
File naming uses the following convention:
{Path Prefix Pattern}/schemaHashcode_Guid_Number.extension
Example output files:
- Myoutput/20170901/00/45434_gguid_1.csv
- Myoutput/20170901/01/45434_gguid_1.csv
但是,文档中似乎没有解释以下引用变量:
- 架构哈希码
- 向导
- 人数
这些变量指的是什么,它们什么时候可以改变?
GUID 指的是内部编写器的 uid。这对于为写入 blob 文件而创建的每个编写器都是唯一的。新的写入器是基于分区创建的,并且在写入器崩溃时出现异常。当观察到传入流中的新模式时,SchemaHashcode 的值会发生变化。因此,当架构更改时,您会注意到新文件。 Number指的是Blob块计数器的索引。