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
36
votes
8 answers

How to clear all data from AWS CloudSearch?

I have an AWS CloudSearch instance that I am still developing. At times, such as when I make some modification to the format of a field, I find myself wanting to wipe out all of the data and regenerating it. Is there any way to clear out all of the…
biggusjimmus
  • 2,706
  • 3
  • 26
  • 31
19
votes
5 answers

Fulltext Search DynamoDB

Following situation: I´m storing elements in a DyanmoDb for my customers. HashKey is a Element ID and Range Key is the customer ID. In addition to these fields I´m storing an array of strings -> tags (e.g. ["Pets", "House"]) and a multiline text. I…
14
votes
3 answers

Amazon CloudSearch: Is it possible to write a query that returns... everything?

I've put together a simple search form, with a search box and a couple of filters as dropdowns. Everything works as you'd expect, except that I want the behavior to be that when the user leaves everything completely blank (no search query, no…
Joe
  • 1,723
  • 2
  • 14
  • 16
13
votes
1 answer

Cloudsearch Fuzzy terms and phrases

I am trying to get my head around how fuzzy search works on AWS CloudSearch I want to find "Star Wars" but in my search, I spell it ster wers The logic of my app will add fuzzy but it never returns Star Wars. I have tried: ster~1 wers~1 "ster…
dmo
  • 5,102
  • 3
  • 25
  • 28
11
votes
2 answers

What is the difference between phrase and term in structured queries?

How are phrase and term different in a Structured query? I have this data in my CloudSearch domain: { "guid": 9, "operating_systems": [ "12345", "123" ], "manufacturer": "sealand", "model": "gaming tree whale plum", …
Kaarel Purde
  • 1,255
  • 4
  • 18
  • 38
10
votes
4 answers

Amazon Cloudsearch : Filter if exists

I have an amazon cloudsearch domain. The aim is to filter if the field 'language' exists. Not all objects have a language, and I want to have the ones which do have a language filtered, but the ones that do not have any language to also be…
Nyxter
  • 405
  • 5
  • 20
10
votes
1 answer

AWS CloudSearch: different documents in 1 domain?

I'm interested in using AWS Cloud Search for my web app. I have 3 different document types that I want to make searchable (users - articles - images). What is the best way to do this with Cloud Search? Do I need to create 3 different AWS search…
stikkos
  • 1,916
  • 2
  • 19
  • 34
9
votes
3 answers

Scaling of ElasticSearch

I'm searching for information on how ElasticSearch would scale with the amount of data in its indexes and am surprised how little I can find on that topic. Maybe some experience from the crowd here can help me. We are currently using CloudSearch to…
Alfe
  • 56,346
  • 20
  • 107
  • 159
7
votes
1 answer

Can we add array of objects in amazon cloudsearch in json format?

I am trying to create a domain and uploading a sample data which is like : [ { "type": "add", "id": "1371964", "version": 1, "lang": "eng", "fields": { "id": "1371964", "uid": "1200983280", "time":…
Ashy saini
  • 327
  • 5
  • 12
7
votes
2 answers

How can I retrieve all searchable (not deleted) documents in Amazon cloudsearch

I want to retrieve all my searchable document from cloudsearch I tried to do a negative search like that: search-[mySearchEndPoint].cloudsearch.amazonaws.com/2011-02-01/search?bq=(not keywords: '!!!testtest!!!') It work's but it also return all the…
Thermech
  • 4,371
  • 2
  • 39
  • 60
6
votes
1 answer

Amazon CloudSearch and Amazon Kendra

I was wondering what is the main difference between Amazon CloudSearch and Kendra? Why there are 2 different tools of the same company products and compete each other? Both looks like same, I am not sure what are the differences in features. How it…
Stella
  • 1,728
  • 5
  • 41
  • 95
6
votes
0 answers

How to write query to cloud search to get result on partial text match

I'm adding a search by name options in my current CloudSeach integration. I'm searching for a key name by passing phrase field=name 'Stratosphere Hotel, Casino' for filter_query. This is working fine if I have an exact name match. But my search…
6
votes
0 answers

Get error "Cross-account pass role is not allowed" when I try to register repository in aws elastic search

I have a problem registering repository to aws elastic search. Here is the link I use to do…
Hamed Minaee
  • 2,480
  • 4
  • 35
  • 63
6
votes
2 answers

Delete Document from AWS CloudSearch

I am attempting to delete a single document in AWS CloudSearch using the following batch document: [{ "type": "delete", "id": "532177" }] but I get the following error from AWS: and when download the SDF it returns the following: [ { type:…
Ryan Fisch
  • 2,614
  • 5
  • 36
  • 57
6
votes
3 answers

AWS CloudSearch export/download data

I have about 1.5 million documents in an AWS CloudSearch index. It is costing me too much and I wish to migrate off the service. I have been unable to see how I can download or export my documents from the index. Is it possible?
waigani
  • 3,570
  • 5
  • 46
  • 71
1
2 3
22 23