Questions tagged [elasticsearch-2.0]

Use this tag for version specific questions about Elasticsearch 2.0 - the distributed, RESTful search and analytics engine. When using this tag also include the more generic [elasticsearch] tag where possible.

Elasticsearch 2.0 takes huge strides forward in terms of speed, security, scalability, and hardware efficiency. It introduces a host of new features, including powerful new aggregations to do more analytics, cluster state diffs to support even larger clusters, compatibility with 2.0 versions of Shield (security), Marvel (monitoring), Watcher (alerts), and more.

345 questions
0
votes
1 answer

Elasticsearch Curator : Does not display indices as per timestring

I am trying to explore elasticsearch curator using CLI https://www.elastic.co/guide/en/elasticsearch/client/curator/current/index.html i ran the command curator --host hostName --port 9200 show indices --prefix ab- and it gives me…
AbtPst
  • 7,778
  • 17
  • 91
  • 172
0
votes
1 answer

Fuzziness behavior on a match_phrase query

Days ago I got this "problem". I was running a match_phrase query in my index. Everything was as expected, until I did the same search with a multiple words nouns (before I was using single word nouns, eg: university). I made one misspelling and the…
Abraham Duran
  • 1,778
  • 3
  • 14
  • 22
0
votes
3 answers

Failed to update marvel license

I have an elasticsearch cluster in our close environment (no internet connection). Few days ago, marvel's license in my elasticsearch cluster has expired, so I downloaded the free basic license which elastic provides in their site. I tried to…
0
votes
1 answer

Elasticsearch : Curator does not work

I am trying out the basic code from curator http://curator.readthedocs.io/en/4.0/examples.html and i try import elasticsearch import curator if __name__ == '__main__': client = elasticsearch.Elasticsearch([{'host': "http://localhost",…
AbtPst
  • 7,778
  • 17
  • 91
  • 172
0
votes
1 answer

Elasticsearch : Default template does not detect date

I have a default template in place which looks like PUT /_template/abtemp { "template": "abt*", "settings": { "index.refresh_interval": "5s", "number_of_shards": 5, "number_of_replicas": 1, "index.codec": "best_compression" …
AbtPst
  • 7,778
  • 17
  • 91
  • 172
0
votes
3 answers

why do all my ElasticSearch more-like-this hits have a score of zero?

I have a big feed of news articles that I'm indexing. I'd like to avoid indexing a lot of articles that are nearly the same (for example, articles from a news service might appear many times with slightly different date formats). So I thought I'd…
Chris Curvey
  • 9,738
  • 10
  • 48
  • 70
0
votes
1 answer

Elasticsearch NEST 2.x Field Names

I am upgrading to NEST 2.3.0 and trying to rewrite all queries that were originally written for NEST 1.x. I am using the Couchbase transport plugin that pushes data from Couchbase to Elasticsearch. POCO public class Park { public…
Socardo
  • 520
  • 6
  • 14
0
votes
1 answer

How to write mappings in elsaticsearch for geopoint having lat lon and alt?

My_Json_File { "addressInfo": { "city": "Wimsheim", "postcode": "71299", "geopoint": { "lon": 48.845877, "lat": 8.821861, "alt": 0.0 } }, "_id": "ac169008-aa5b-4b09-aa9e-3bf3018f316d" } Pls give…
0
votes
1 answer

Getting different sequence of documents when upgraded from ES 1.4 to ES 2.3

I used this query curl localhost:9200/tweets/user/_search?size=25 on es 1.4.2 and I got the following result: { "took": 5, "timed_out": false, "_shards": { "total": 6, "successful": 6, "failed": 0 }, "hits": { "total":…
Animesh Pandey
  • 5,900
  • 13
  • 64
  • 130
0
votes
1 answer

ElasticSearch: Sort document based on combination of parent nested fields

I'm trying to sort ES documents by combining numeric fields found in the root document with fields found in nested documents. For simplicity let's say I want to sort on doc['score'] + doc['nested.score']. Example mapping and a couple of data…
Gabriel
  • 580
  • 4
  • 14
0
votes
1 answer

Kibana 4 : Url not formatted properly

I have a field in my index like path: /abc/nvb/jklk.txt I autoindex it as string and it is displayed as above. Now, i want to convert it to a url. So in the index settings in Kibana, i apply set this field as a Url and apply Url…
AbtPst
  • 7,778
  • 17
  • 91
  • 172
0
votes
0 answers

Elasticsearch : Cannot create a client node

I am trying to create a client node for my Elastic cluster, which has elasticsearch version 2.2.0. I have 4 nodes in my cluster and each of them can be data or master nodes. Now, i want to create a client node that will ping one of my other 4 nodes.…
AbtPst
  • 7,778
  • 17
  • 91
  • 172
0
votes
2 answers

Elasticsearch : Marvel and Sense Plugin Installation does not work

I have tried the online and offline instructions for installing marvel and sense, but nothing works. I have ES 2.2.1 and Kibana 4.4.2 I tried plugin install marvel-agent but i get Installing marvel-agent... Trying…
AbtPst
  • 7,778
  • 17
  • 91
  • 172
0
votes
1 answer

How to run Kibana 4.4.1 on IBM Bluemix PaaS

I am trying to run Kibana 4.4.1 on an IBM Bluemix PaaS as a nodejs application. In my implementation, i use cloudfoundry to connect to the PaaS cloud. I was able to run Kibana 4.1.1 on PaaS using the following steps > Download Kibana from here to…
AbtPst
  • 7,778
  • 17
  • 91
  • 172
0
votes
2 answers

Elsticsearch : Contains query

I have a column in my mapping that holds an array of strings col1 ["asd","fgh","wer"] ["qwer","cvbvbn","popop"] ["cvbml","fhjhfrjk","fsdfd"] ["asd","trth","fdf"] The column col is not analyzed in the index and i do not want to change the…
AbtPst
  • 7,778
  • 17
  • 91
  • 172
1 2 3
22
23