We have a set of blobs, all sorts of content.
We need to index the metadata and the content, but we are happy to just skip the content for unsupported file types and very large files. For example we have
File One.docx
- supported type - Indexes metadata and content (good)
File Two.dat
- unsupported type - Indexes metadata skip content (good)
File Three.txt
- supported type, fails due to the size of the blob. (bad)
Our search is config is based on the docs , we just added failOnUnsupportedContentType
to the Configuration
and set it to false
We would like to index the metadata for File Three.txt
but skip the large content, something like failOnOversizedContent
which we would set to false
.
Right now we get an error relating the size of the blob being too large.