When should I use AWS Elasticsearch over AWS CloudSearch and vice versa?
Asked
Active
Viewed 1,267 times
5
-
1For tips on asking a good question, please see: [How do I ask a good question?](http://stackoverflow.com/help/how-to-ask) – John Rotenstein Aug 31 '17 at 23:17
1 Answers
9
Amazon Elasticsearch Service provides a fully-managed implementation of Elasticsearch and Kibana. It is commonly used for near real-time visualizations of logs files (but can handle many use-cases).
Amazon CloudSearch is based on Apache Solr. It requires data to be loaded as documents and is good for full-text search, with an understanding of languages and grammar (eg synonyms, words to ignore).
So, it really comes down to whether you want to use Elasticsearch or Solr.

John Rotenstein
- 241,921
- 22
- 380
- 470