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

BlobIndexerParsingMode type

服务支持的已知值

default:对于正常文件处理,设置为 default。 text:设置为 text 以提高 Blob 存储中纯文本文件的索引性能。 delimitedText:当 blob 为纯 CSV 文件时,设置为 delimitedText。 json:设置为 json 可从 JSON 文件中提取结构化内容。 jsonArray:设置为 jsonArray 可将 JSON 数组的各个元素提取为Azure 认知搜索中的单独文档。 jsonLines:设置为 jsonLines 以提取单个 JSON 实体(用新行分隔)作为Azure 认知搜索中的单独文档。

type BlobIndexerParsingMode =
  | "default"
  | "text"
  | "delimitedText"
  | "json"
  | "jsonArray"
  | "jsonLines"