Questions tagged [amazon-cloudsearch]

Amazon CloudSearch is a fully-managed search service in the cloud that allows customers to easily integrate fast and highly scalable search functionality into their applications. With a few clicks in the AWS Management Console, developers simply create a search domain, upload the data they want to make searchable to Amazon CloudSearch, and the service then automatically provisions the technology resources required and deploys a highly tuned search index.

Developer Doc:

http://docs.aws.amazon.com/cloudsearch/latest/developerguide/SvcIntro.html

Search parameter:

http://docs.aws.amazon.com/cloudsearch/latest/developerguide/Search.Requests.html

Faqs:

http://aws.amazon.com/cloudsearch/faqs/

343 questions
3
votes
0 answers

Is it possible to set a TTL on a document (i.e. automatically expire) added to the search index?

I would like to index data where each document expires x days after its creation date. Is it possible to have a sort of TTL on each document added to the index?
3
votes
1 answer

Amazon Cloud Search - get places by time and date

I am using Amazon CloudSearch to store a large set of places. Each place has a opening time and a closing time, for each day of the week. I need to retrieve places by current time. How do you suggest to model the index? I am thinking to solve the…
Ulisse
  • 483
  • 1
  • 7
  • 14
3
votes
2 answers

How do you replace Amazon CloudSearch in development?

In production, my application runs MySQL + Amazon CloudSearch. In development, it runs only MySQL and I'm not interested in running a search domain only for development. Currently, in development, I run text searches in MySQL, which is not ideal…
barbolo
  • 3,807
  • 1
  • 31
  • 31
3
votes
2 answers

Removing invalid characters from amazon cloud search sdf

While trying to post the data extracted from a pdf file to a amazon cloud search domain for indexing, the indexing failed due to invalid chars in the data. How can i remove these invalid charecters before posting to the search end point? I tried…
Quicksilver
  • 2,546
  • 3
  • 23
  • 37
3
votes
4 answers

Amazon Cloudsearch (or Solr, ElasticSearch) best practice for result contents?

I have read that it is best practice to only return an ID when querying for results, and then populate metadata from the database. Is this true? I am worried about performance.
3
votes
2 answers

alternative to amazon cloud search

We are looking for a search based solution for our website which will have millions of music records. We are looking for amazon cloud search but it will be a bit costly as we have to pay 90$ per month. Is there any cheaper /open source solution…
Vidya
  • 7,717
  • 12
  • 48
  • 75
2
votes
1 answer

AWS: Textract with Cloudsearch

I am in the process of creating a project that uses some AWS services (for training purposes). Now as you all know AWS has a lot of different services and it requires some knowledge on how to use them and what you can use them for. That is why i am…
Marc Rasmussen
  • 19,771
  • 79
  • 203
  • 364
2
votes
1 answer

Is AWS Cloudsearch Scalable?

I have 500MB worth of data to push to cloud search. Here are the options I have tried: Upload directly from console: Tried to uplaod the file, there is a 5 MB limitation. Then uploaded the file to S3 and selected the S3 option, Upload to S3 and give…
Kannaiyan
  • 12,554
  • 3
  • 44
  • 83
2
votes
1 answer

AWS CLI covert pdf to sdf or json for CloudSearch index

I am working on a document search tool using CloudSearch in AWS. The index only takes XML or JSON. I would like to index the document content along with metadata, but can't figure out how to convert the pdf (and Excel) files into a format that…
Kyle
  • 2,543
  • 2
  • 16
  • 31
2
votes
0 answers

Error on getDomainClient

I have below code for domainClient. But I am getting error. Error is 'Argument 2 passed to Aws\AwsClient::getCommand() must be of the type array, string given $csDomainClient = $csClient->getDomainClient( 'xxxxxxxxxxx' ); Is there any…
Cristal
  • 492
  • 4
  • 21
2
votes
0 answers

Uploading data from Amazon S3 to Amazon Cloudsearch error

I am trying to upload the data from Amazon S3 Bucket to Amazon CloudSearch domain using AWS CLI. When I try to execute the command cs-import-documents -d mydomain --source s3://mybucket/myobject.json I get the following error : AWS authentication…
2
votes
0 answers

AWS CloudSearch - How to know if the documents submitted were successfully indexed?

Let's say I upload 10,000 documents to CloudSearch. CloudSearch would take some time to index them and I already have another 10,000 documents lined up to be uploaded. Now, the problem is that my ingestion flow would check if any of the documents in…
Chirag Agrawal
  • 323
  • 3
  • 14
2
votes
0 answers

Keeping AWS CloudSearchDomain in sync with DynamoDB

Im trying to add some flexible search functionality to my dynamoDB, so I set up the AWS CloudSearchDomain service. Which I believed could add a wrapper around my dynamoDB and retrieve documents with flexible search options. Since implementing I…
2
votes
1 answer

AWS CloudSearch Upload JSON: Value tag cannot be array or object

I Am running a lambda function (NodeJS) to upload some documents to AWS Cloud Search. I keep getting the following error. { "errorMessage": "{ [\"The value of tags cannot be a JSON array or object\"] }", "errorType":…
2
votes
1 answer

How deal with CSV and text-array filed in AWS Cloudsearch?

How CSV file should look when one of the field is text-array? I have this: docid,name,textarray,num 1,name1,"t1,t2,t3",333 but its not working, textarray became not array but string "t1,t2,t3". I upload this file by aws console. Another question, is…
lubom
  • 329
  • 2
  • 13