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
4
votes
2 answers

Advice for implementation of a data search system for a static website with AWS infrastructure

I've got static website that I need to implement a search for a seperate data set; I'm currently hosting the site using serverless tech on AWS including S3, Cloudfront, Lambda and API gateway for some server side logic. I've got several csv files…
4
votes
1 answer

Amazon CloudSearch accented words

I have an index with documents with accented words. For example this document in Portuguese: title => 'Ponte metálica' If i search "metálica" it matches, so no problem. But usually people search without accents, so it's very usual to search just…
4
votes
1 answer

AWS: Transforming data from DynamoDB before it's sent to Cloudsearch

I'm trying to set up AWS' Cloudsearch with a DynamoDB table. My data structure is something like this: { "name": "John Smith", "phone": "0123 456 789" "business": { "name": "Johnny's Cool Co", "id": "12345", "type": "contractor", …
JVG
  • 20,198
  • 47
  • 132
  • 210
4
votes
2 answers

How to query AWS CloudSearch domain using Python boto3 library?

I'm trying to use boto3 to query my CloudSearch domain using the docs as a guide: http://boto3.readthedocs.io/en/latest/reference/services/cloudsearchdomain.html#client import boto3 import…
RTF
  • 6,214
  • 12
  • 64
  • 132
4
votes
0 answers

AWS Cloudsearch removes empty strings from arrays

If I upload a document with the following field value: "my_array": ["one", "", "three", "four"], then this gets returned from the search api: "my_array": ["one", "three", "four"], i.e. the blank string is removed. This happens for both…
mkearns
  • 123
  • 5
4
votes
1 answer

How to perform Amazon Cloud Search with .net code?

I am learning Amazon Cloud Search but I couldn't find any code in either C# or Java (though I am creating in C# but if I can get code in Java then I can try converting in C#). This is just 1 code I found in C#:…
I Love Stackoverflow
  • 6,738
  • 20
  • 97
  • 216
4
votes
2 answers

Radius Based Search on lat,lon in AWS CloudSearch

Our company is using AWS CloudSearch to search and retrieve user data.User data consists of a field position of type lat,lon. So for a given radius and position we should find all the users in the range of radius. How to write search query to…
4
votes
1 answer

How can one make authenticated requests with AWS Cognito from mobile to AWS services (i.e. CloudSearch)?

I've read a bunch of AWS documentation in the last day or two, but haven't yet come across anything that really answers the follow: If a mobile app is using AWS Cognito as the Authentication / Identity provider, I know that we can write AWS IAM…
4
votes
1 answer

Cloudsearch bounding box filter

I have the following CloudSearch Query $query = array( 'query' => '(and expiry:[' . $time . ',} updatetime:[100,} type:\'all\')', 'queryParser' => 'structured', 'queryOptions' => '{"defaultOperator":"and"}', 'sort' => 'distance…
Lawrence Cooke
  • 1,567
  • 3
  • 26
  • 52
4
votes
1 answer

Implementing "Did you mean?" using Amazon CloudSearch

The new CloudSearch API uses Solr in the backend and Solr has the "Did You Mean?" feature. However, it seems that Amazon has not yet exposed this feature, at least looking at the documentation. I have looked at other questions asking about…
Amer
  • 151
  • 1
  • 7
4
votes
3 answers

Direct Import of RDS table data into Amazon Cloudsearch

I've got a RDS database with a table containing a ton of data in several columns (some with geo spatial data) I want to search across. SQL queries and good covering indexes on this data is still far too slow to use for something like an AJAX type…
Ray
  • 40,256
  • 21
  • 101
  • 138
4
votes
1 answer

Multiple values in a single column for faceted search on Amazon CloudSearch supported?

I am looking at Amazon CloudSearch, and am just concerned about having multiple values per column, and if it would be considered as an individual facet by the CloudSearch. What I mean is, if I have a book (1 row) and it has multiple authors, but…
Control Freak
  • 12,965
  • 30
  • 94
  • 145
4
votes
2 answers

Amazon CloudSearch - documents not deleted from index

I have a problem deleting documents from Amazon CloudSearch. When I send document for deletion I receive response {"status": "success", "adds": 0, "deletes": 5} And then the video stays in the index with all fields reset to their default values…
Lothar
  • 529
  • 1
  • 5
  • 19
4
votes
4 answers

Is it possible to simulate Amazon cloud search and dynamoDB for developement?

I'm looking to build an application off Amazon cloud search and dynamo DB and I don't want to waste money or free tier during application development. So, I'm wondering if Amazon Dynamo DB and cloud search can somehow be simulated on your local…
3
votes
0 answers

AWS CloudSearch sort by score and text field

I'm using Amazon's AWS CloudSearch service, and I'm trying to figure out the sort function. I know how to sort by _score, text fields alphabetically, and a combination of _score and int fields, but I want to sort by _score and a text field. I have…
1 2
3
22 23