Azure Blob 存储索引器在图像上失败
Azure Blob Storage Indexer fails on images
我将 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_Skip
元数据添加到不想索引的 blob,如 here 所述。
UPDATE 您还可以从索引中跳过具有特定文件扩展名的所有 blob - 有关详细信息,请参阅 here。例如,这使您可以轻松跳过所有 .jpeg 或 .png 文件。
此外,请为这个 UserVoice 建议投票:Blob indexer should be able to skip unsupported content types instead of treating them as errors
我将 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_Skip
元数据添加到不想索引的 blob,如 here 所述。
UPDATE 您还可以从索引中跳过具有特定文件扩展名的所有 blob - 有关详细信息,请参阅 here。例如,这使您可以轻松跳过所有 .jpeg 或 .png 文件。
此外,请为这个 UserVoice 建议投票:Blob indexer should be able to skip unsupported content types instead of treating them as errors