Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Uploading documents on amazon cloud search?

can we upload files(text, pdf etc.) on AWS Cloud Search using API? I read its documentation but I didn't get any reference on

http://docs.amazonwebservices.com/cloudsearch/latest/developerguide/SvcIntro.html?r=130.

Or do I have to create SDF which contains extracted text from documents.

like image 469
shreyas Avatar asked Jun 22 '12 15:06

shreyas


1 Answers

It is not possible to send files directly via API. It is only AWS Management Console which converts files (.txt, .pdf, .csv etc) to SDF (Search Data Format) during upload. Here is the official reference http://docs.amazonwebservices.com/cloudsearch/latest/developerguide/senddata.html

But you can covert your files to SDF using command line tool and then submit for indexing.

like image 52
Wasif Avatar answered Oct 13 '22 22:10

Wasif