I HAVE:
Set of pre-processed office documents (Word, Excel, PDFs, Emails, Power Points, etc.) provided as "Load Files" (approx. 2-4 terabytes per set)
"LOAD FILES" CONSIST OF:
- Single pg tiffs (printed from the office documents.. a 15 page word doc would have 15 tiffs)
- Meta data extracted from the office documents presented in a delimited .dat file which includes the full text.
- .log file which associates the .tiff & .dat (.dat & .log files put together comprise about 7-10% of the data set size)
- Original office documents
USERS VIA BROWSERS WILL:
- Do a variety of keyword searches in the full text & meta data found in the .dat
- View the tiff images and occasionally the original office doc
- Classify each document with some user defined label and sometimes make notes
- Sort the data in a variety of ways... eg date sent, author, subject etc
TRYING TO DECIDE BETWEEN: elastic search + couchdb OR sphinx + mysql
I've been advised that search will be the primary engineering issue so decided to use that as a base for determining everything else.
With future growth in mind I figured I would choose all things "cloud". I keyed in on elastic search which I read pairs well with couchdb (no particular reason beyond the advertised tight integration with ES)... along with symfony2 + doctrine (not married to these but read they pair well with ES) instead of zend.
But then someone remarked that the data seems very well structured so sphinx/mysql is a better path with sphinx "out of the box" split by nodes for the cloud.
CONTEXT:
My main goal is speed and performance of the searches & serving up of the tiff images. Scalability is a secondary concern as the amount of users could grow to the tens of thousands..... perhaps 100k but not "web scale" (tens of millions). However some of these users would be on the application 8hrs a day.
QUESTION:
For this particular app do you feel elastic search + nosql is overkill in the sense that it will require more time/complexity/resources to configure than what I really need with no significant performance advantage? Or will sphinx mysql eventually be a bottle neck with larger data sets/more users?