Questions tagged [elasticsearch-plugin]

Elasticsearch plugins are a way to enhance the basic elasticsearch functionality in a custom manner.

Elasticsearch Plugins are a way to enhance the basic elasticsearch functionality in a custom manner. They range from adding custom mapping types, custom analyzers (in a more built in fashion), native scripts, custom discovery and more.

See the Plugins documentation for more.

968 questions
7
votes
1 answer

Joining two indexes in Elastic Search like a table join

I am relatively new to this elastic search. So, I have an index called post which contain documents like this: { "id": 1, "link": "https:www.instagram.com/p/XXXXX/", "profile_id": 11, "like_count": 100, "comment_count": 12 } I have another index…
Souvik Maity
  • 127
  • 1
  • 1
  • 7
7
votes
1 answer

python3 UnicodeEncodeError: 'charmap' codec can't encode characters in position 95-98: character maps to

A month ago I encountered this Github: https://github.com/taraslayshchuk/es2csv I installed this package via pip3 in Linux ubuntu. When I wanted to use this package, I encountered the problem that this package is meant for python2. I dived into the…
supernl
  • 71
  • 1
  • 1
  • 4
7
votes
2 answers

Installation of kopf plugin for elasticsearch 5.1.1?

Actually i have elasticsearch 5.1.1 and tried downloading kopf plugin with the following commands and i got a error like this ..Can u help me in solving this problem?? C:\Users\896323\Downloads\elasticsearch-5.1.1\elasticsearch-5.1.1\bin>plugin…
Private
  • 1,661
  • 1
  • 20
  • 51
7
votes
2 answers

ElasticSearch: compare dotted version strings

I'm looking for a way to save a dotted version as string (e.g "1.2.23") in elastic and then use range query on this field. e.g { "query": { "range": { "version": {"gte": "1.2.3", "lt": "1.3"} } } } I have only 3 components (major,…
Eldad
  • 1,067
  • 16
  • 36
7
votes
3 answers

AWS Elasticsearch and CORS

I'm trialing the AWS Elasticsearch service: https://aws.amazon.com/elasticsearch-service/ Very easy to setup. Basically just hit deploy. I unfortunately can't get any of the Elasticsearch GUI's to connect (ElasticHQ, Elasticsearch Head) as CORS is…
7
votes
1 answer

Dividing the values of X-axis in Kibana-4

I have my X-axis,with numbers ranging from 100-1000. So while visualising I would like the numbers to be divided by 100 and then visualise it. Is there any way to do this in Kibana-4?
Celestine
  • 95
  • 2
  • 9
7
votes
2 answers

Kibana 4 , making pie chart , error message

I was trying to create a pie chart in Kibana 4 dashboard. And I was trying for a split slice one. But when I select the field type,I get the following error: "Pie chart response converter:Splitting charts without splitting sliced is not…
Arun Mohan
  • 898
  • 3
  • 18
  • 37
7
votes
1 answer

Why is ElasticSearch match query returning all results?

I have the following ElasticSearch query which I would think would return all matches on the email field where it equals myemails@email.com "query": { "bool": { "must": [ { "match": { "email": "myemail@gmail.com" …
TheJediCowboy
  • 8,924
  • 28
  • 136
  • 208
7
votes
3 answers

Searching multiple strings in all fields in Elasticsearch using Java API

I've an elasticsearch index having users with fields like.. "name" : "kai" "age" : "23" "location" : "Delhi, India" "tag": [ "search", "nosql" ] etc. I want to query multiple strings in all fields of user (Eg. ["nosql","delhi"]). Is it possible…
Krishnalal P
  • 487
  • 4
  • 20
7
votes
2 answers

Custom Analyzer elasticsearch-rails

I'm using elasticsearch-rails gem in my Rails app to simplify integration with Elasticsearch. I'm trying to use the phonetic analysis plugin, so I need to define a custom analyzer and a custom filter for my index. I tried this piece of code in…
badawym
  • 1,499
  • 1
  • 13
  • 19
6
votes
2 answers

Elasticsearch copy the index from one server to another server?

How to copy ES (v 5.x) index from one server to another server. i don't have privileges to install any software in that machine. have any better solution to copy the index ? will backup and restore work? please share your suggestion
Learn Hadoop
  • 2,760
  • 8
  • 28
  • 60
6
votes
2 answers

failed to send join request to master elastic search 5.4 cluster

I have configured elastic search with 3 nodes My cluster is not able to find the master node Logs of elastic search [2018-02-24T02:39:39,106][INFO ][o.e.d.z.ZenDiscovery ] [node3] failed to send join request to master…
6
votes
1 answer

Unable to install Search Guard plugin for Elasticsearch-5.x

Due to the restrictions, I was not allowed to install any packages from internet. So, This command is not useful for me inorder to install search-guard. bin/elasticsearch-plugin install -b com.floragunn:search-guard-ssl: However, I am…
6
votes
1 answer

How to pass list of values for a particular field in Elastic Search Query

I have a query to search for a provider_id from the Elastic Search Cluster. I am using the below query to get results for a single provider_id but need help in figuring out how can I pass a list of providers. { "query": { "bool": { …
python
  • 4,403
  • 13
  • 56
  • 103
6
votes
1 answer

More_like_this query with a filter

I have 1702 documents indexed in elastic search which has category as one of the fields and it also has a field named SequentialId. I initially fetched the documents with category 1.1 which are between the document 1 and document 850 like…
Sai
  • 85
  • 1
  • 5
1 2
3
64 65