Questions tagged [elasticsearch-1.0.0]

Elasticsearch is a powerful open source search and analytics engine

Elasticsearch is a flexible and powerful open source, distributed, real-time search and analytics engine. Architected from the ground up for use in distributed environments where reliability and scalability are must haves, Elasticsearch gives you the ability to move easily beyond simple full-text search. Through its robust set of APIs and query DSLs, plus clients for the most popular programming languages, Elasticsearch delivers on the near limitless promises of search technology.

Home page: http://www.elasticsearch.org/

4 questions
2
votes
4 answers

Elasticsearch find documents by location

I have indexed a number of documents in my Elasticsearch database and when I query for all them I see they have a structure like this: GET http://localhost:9200/restaurants/restaurant/_search Output: { "took": 4, "timed_out": false, …
Luke
  • 20,878
  • 35
  • 119
  • 178
1
vote
2 answers

Install Elasticsearch 1.0.1 on Ubuntu 12.04 fails with sudo dpkg -i elasticsearch-1.0.1.deb

I am trying to install Elasticsearch 1.0.1 on Ubuntu 12.04. So far I have done: First I removed the old elasticsearch 0.90 package sudo dpkg -r elasticsearch Then cd ~ sudo apt-get update sudo apt-get install openjdk-7-jre-headless -y wget…
0
votes
1 answer

Elasticsearch query syntax update 1.0.14 to 7.5.2

I am attempting to update a rather sizable Elasticsearch query. I am very new to Elasticsearch and am having a hard time wrapping my head around everything that is happening here. This is the original query: elasticsearch_query search_models, { …
0
votes
1 answer

ElasticProperty in elastic search 2.0

I use following Elastic properties in elastic search 1.0 [ElasticProperty(Name = "description", Index = FieldIndexOption.Analyzed, Type = FieldType.String, Analyzer = "custom_lowercase_analyzer", SearchAnalyzer = "search_analyser")] public…
Isuru
  • 530
  • 3
  • 9
  • 25