Warning: file_get_contents(/data/phpspider/zhask/data//catemap/4/sql-server-2008/3.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Azure Blob存储索引器在映像上失败_Azure_Azure Storage Blobs_Azure Cognitive Search_Azure Blob Storage - Fatal编程技术网

Azure Blob存储索引器在映像上失败

Azure Blob存储索引器在映像上失败,azure,azure-storage-blobs,azure-cognitive-search,azure-blob-storage,Azure,Azure Storage Blobs,Azure Cognitive Search,Azure Blob Storage,我正在使用Azure搜索和Blob存储索引器。我在执行历史记录中看到了失败:- [ { "key": null, "errorMessage": "Document 'https://mystorage.blob.core.windows.net/my-documents/Document/Repository/F/AD/LO/LO-min-0002-00.png' has unsupported content type 'image/png'"

我正在使用Azure搜索和Blob存储索引器。我在执行历史记录中看到了失败:-

[
    {
        "key": null,
        "errorMessage": "Document 'https://mystorage.blob.core.windows.net/my-documents/Document/Repository/F/AD/LO/LO-min-0002-00.png' has unsupported content type 'image/png'"
    }
]

此故障是否会导致存储器中的其他文档(具有支持的内容类型)无法编制索引?

是,默认情况下,1个失败的文档将停止编制索引。如果您只是偶尔有一个不受支持的文档,则可以增加该限制。您可以将
AzureSearch\u Skip
元数据添加到您不想按说明索引的blob中

更新您还可以从索引中跳过所有具有特定文件扩展名的blob-有关详细信息,请参阅。例如,这允许您轻松跳过所有.jpeg或.png文件


另外,请投票支持此UserVoice建议:

是,默认情况下,1个失败的文档将停止索引。如果您只是偶尔有一个不受支持的文档,则可以增加该限制。您可以将
AzureSearch\u Skip
元数据添加到您不想按说明索引的blob中

更新您还可以从索引中跳过所有具有特定文件扩展名的blob-有关详细信息,请参阅。例如,这允许您轻松跳过所有.jpeg或.png文件


另外,请投票支持这个UserVoice建议:

谢谢,这是一个很好的解决方案。您如何知道支持的内容类型是什么?中列出了支持的内容类型列表。所有其他人都不受支持。请在UserVoice上告诉我们您希望支持哪些其他格式。谢谢,这是一个很好的解决方法。您如何知道支持的内容类型是什么?中列出了支持的内容类型列表。所有其他人都不受支持。请在UserVoice上告诉我们您希望支持哪些其他格式。