Is there any cloud based alternatives to azure search which could index the contents of azure blobs? (Mainly office based documents)?
I have an application that exposes full text search which is rarely used. Azure search works great for documentdb etc and the basic tier covers this usage.
However when applying indexing to blobs which may be search a couple of times a day if that, then the cost is extremely high in comparison to other functionality used in the stack.
We have also hit the 2gb limit on storage but less than 20% on document limit. Ideally we would want to increase storage but this isn't an option without increasing costs 3x for storage alone by updating to S1.
Alternatives found so far are running solr vm's or building our own capability which would likely still require VM's so solr would be better in this case.
It seems others hit this scaling problem in relation to cost but usually because of QPS. Our QPS is very low being a few searches within a 24hr period.
::Looking to keep this within Azure. AWS CloudSearch billing seems to work well with our use cases