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
6
votes
5 answers

How do I connect to an existing CloudSearch domain in boto?

I'm just starting to work with boto to connect to Amazon CloudSearch. I got the examples working, but I can't find any examples of connecting to an existing domain, all the examples create a new domain. Poking around, I found get_domain, but that…
ThoughtfulHacking
  • 1,189
  • 2
  • 8
  • 23
6
votes
2 answers

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…
shreyas
  • 1,360
  • 11
  • 11
5
votes
0 answers

AWS CloudSearch reindexing is very slow

I am currently evaluating if I can use Amazon CloudSearch for our search need instead of Elastic Search. Right now, I just have about 4K small documents for my testing purpose. Whenever I ask it to reindex (lets' say after changing the instance type…
vkumars
  • 163
  • 1
  • 6
5
votes
1 answer

What is the difference between AWS Elasticsearch and AWS CloudSearch?

When should I use AWS Elasticsearch over AWS CloudSearch and vice versa?
5
votes
1 answer

How to upload documents to AWS CloudSearch with Boto3

So I'm not sure how to point to the correct domain with: boto3.client('cloudsearchdomain').upload_documents(file, type) The documentation says to configure the domains with CloudSearch DescribeDomains actions. However, the documentation for…
pauld
  • 401
  • 1
  • 5
  • 20
5
votes
1 answer

Amazon CloudSearch creates Null ID from DynamoDB

I'm trying to get started with Amazon CloudSearch. I have my data in a DynamoDB Table that I want to search. I was able to set up the cloud search domain and it pulled the fields from the table and let me set them, etc. However I went to upload…
sfaust
  • 2,089
  • 28
  • 54
5
votes
2 answers

AWS CloudSearch - Getting results of a search in JSON format

I am performing a search on my AWS CloudSearch domain from a Lambda function in node.js: I uploaded a document such as this: { “some_field”: “bla bla“, “some_date_field”: 1.466719E9, …
Zigglzworth
  • 6,645
  • 9
  • 68
  • 107
5
votes
0 answers

No Amazon Cloudsearch results returned if stopwords are included in the query

When querying Amazon Cloudsearch using the exact content of a field as the query, Cloudsearch returns no results, if the query (and content) contains a stopword. If I remove the stopword from the query, then results are returned. I understand that…
Feckmore
  • 4,322
  • 6
  • 43
  • 51
5
votes
1 answer

Querying string with apostrophe in Cloud Search

I have string 'Vick's' that I need to pass to the cloud search using the API. But when I passing it to the API it throws an error. When I am using 'Vick's' instead of Vick's as a search string it is not giving exact result. The search for on…
virender
  • 4,539
  • 5
  • 27
  • 31
5
votes
2 answers

Automatically offload dynamo table to cloud search domain

I'm using Dynamo DB pretty heavily for a service I'm building. A new client request has come in that requires cloud search. I see that a cloud search domain can be created from a dynamo table via the AWS console. My question is this: Is there a…
The Internet
  • 7,959
  • 10
  • 54
  • 89
5
votes
3 answers

Amazon Cloudsearch not searching with partial string

I'm testing Amazon Cloudsearch for my web application and i'm running into some strange issues. I have the following domain indexes: name, email, id. For example, I have data such as: John Doe, John@example.com, 1 When I search for jo I get nothing.…
KVISH
  • 12,923
  • 17
  • 86
  • 162
5
votes
1 answer

Fail to upload documents to aws cloudsearch using boto.cloudsearch2

This is my code to try uploading documents to cloud search from boto.cloudsearch2.layer2 import Layer2 conn_config = { 'region': 'us-east-1', 'aws_access_key_id': os.getenv('AWS_ACCESS'), 'aws_secret_access_key':…
Cocoa
  • 51
  • 1
  • 5
5
votes
0 answers

Consistent Reads in CloudSearch

CloudSearch's results are only Eventually Consistent. In 95% of my application, this is an acceptable tradeoff for the performance and redundancy that it provides. In that last 5% though, I find myself POSTing a new SDF Document, and then…
5
votes
1 answer

Does AWS CloudSearch have default stems and synonyms?

In the CloudSearch admin console, I see that you can add your own stems and synonyms. Does this override an internal default list of stems and synonyms or is there no such default list and you are required to add stems and synonyms before…
waigani
  • 3,570
  • 5
  • 46
  • 71
5
votes
3 answers

Are there libraries to search Amazon CloudSearch from .NET?

What libraries are out there to perform searches in AWS' CloudSearch domains? The AWS SDK is virtually devoid of search capabilities. I would like to use Amazon CloudSearch for a project to search in pre-existing databases for certain…
Cornelius
  • 830
  • 11
  • 31
1
2
3
22 23