'How to implement full text search in amazon s3 bucket?
I have a bucket on S3 in which i have large amount of text,pdf,doc files.each files has a different name. I want to search some text within a that files .
For the example, I have a files as per below :
- abc/myfolder/abac.txt
- abc/myfolder/abacpfd.pdf
- abc/myfolder/abacpfd.doc
& I want to search text like "I am human" in the above files. if text contains in that files then return file name
How to achieve this ? Is it even possible with c# ?
Solution 1:[1]
Amazon S3 does not provide any services that relate to the content of objects.
You will need to run some form of software that scans and indexes the content of the S3 files (eg Elasticsearch).
Solution 2:[2]
Exactly, I had this problem, but somehow I had solved it without using a search approach. If I couldn't find a solution, I was going to try this open source project: filestash
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | John Rotenstein |
| Solution 2 | Ferhat |
