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
0
votes
1 answer

Elastic search on nested field not working

We are using below settings with ES: #Settings for elastic search fos_elastica: clients: default: host: %elastic_server_host% port: %elastic_server_port% headers: { Authorization: 'Basic…
joy d
  • 408
  • 2
  • 13
0
votes
1 answer

Elastic search rows to column

I have documents in ElasticSearch like this.I want make search and get result like sql server pivot.But i dont know how can i do this. Name | Year | Gear C30 2012 A C30 2011 M C30 2014 M C30 2015 A C30 2013 A V40 …
user1924375
  • 10,581
  • 6
  • 20
  • 27
0
votes
1 answer

Why POST and not GET in elasticsearch head UI "any Request"

I had a similar problem as asked here. I was running the following query in the head plugin, any request tab (with _search endpoint and GET): { "query": { "match": { "body": "mulla" }}} all my documents were a hit and all had score of…
0
votes
1 answer

Couchbase Elastic Search plugin with multi-tenancy

This is more of a design question while integrating couchbase with elastic search plugin. I have used couchbase with multitenancy in our previous product and we followed the the very first suggestion we found on couchbase blog here Single Couchbase…
shahshi15
  • 2,772
  • 2
  • 20
  • 24
0
votes
1 answer

elasticsearch nested document query

I'm new to elasticsearch, well have some idea on how to go about doing filters, queries, and aggregation but not sure how to solve this following problem below. I'm want to be able to query only the most recent deliveries (date and crate_quantity)…
0
votes
1 answer

ElasticSearch MultiField Search Query

I have an endpoint that I am proxying into ElasticSearch API for a simple user search I am conducting. /users?nickname=myUsername&email=myemail@gmail.com&name=John+Smith Somet details about these parameters are the following All parameters are…
TheJediCowboy
  • 8,924
  • 28
  • 136
  • 208
0
votes
1 answer

Elasticsearch Rivers- How to make the normal index with river index?

I successfully created a Elastic search river to my MongoDB. This is the index that I used/created: { "type": "mongodb", "mongodb": { "collection": "config_files", "db": "tore_dev" }, "index": { "name":…
dman
  • 10,406
  • 18
  • 102
  • 201
0
votes
1 answer

ElasticSearch highlighting the matched part in query

I'm sending a match query to ElasticSearch and I'm getting back documents whose matching fields have been highlighted. What I'm trying to do is to map a set of documents to the matching substring in query. For example, assuming I query with "quick…
0
votes
1 answer

Elastic search tokenizer &filter for Split the given data

I am so tied for split the data for my expectation output. But i could not able to got it. I tried all the Filter and Tokenizer. I Have Updated setting in elastic search as give below. { "settings": { "analysis": { …
BasK
  • 284
  • 8
  • 24
0
votes
3 answers

elastic search _bulk request with "head" plugin

I've an elastic search cluster with "elasticsearch-head" plugin installed properly. I want to use the _bulk API to insert several values at once but the specific format of _bulk request body seems to be causing troubles to the plugin. I use the "Any…
jeromes
  • 497
  • 5
  • 17
0
votes
1 answer

Elasticsearch Head Plugin Via Proxy And Filter

I have built an elasticsearch proxy that works for performing elasticsearch CRUD operations. It seems that when I try to invoke the head plugin via the proxy with the following. http://localhost:8124/_plugin/head/ I get the following…
Gary Drocella
  • 337
  • 1
  • 2
  • 11
0
votes
1 answer

Accessing the paging data from a native script in ElasticSearch

I am currently using a native script written in Java to filter the search results based on various forms of access control. The problem is that the access control verification takes a ridiculous amount of time per-record. There are some ways we can…
Shaman
  • 213
  • 1
  • 9
0
votes
1 answer

Elasticsearch script score and decay function scores do not multiply

"query": { "function_score": { "filter" : { "bool" : { "must" : [ { "terms" : { "content" : "test"} } ] } }, "functions": [{ "exp":…
0
votes
1 answer

How to use ElasticSearch to suggest (results) cities as I type

I am new with Elasticsearch and I have spent several hours trying to solve this so, Thanks in advance if you will try to help me. :) (Not too) Short explanation: (What I have so far and what I try to achieve): I created a CouchDB database…
Catalin Cardei
  • 304
  • 4
  • 15
0
votes
1 answer

How to create an index with ElasticSearch, River and MongoDB?

I used this tutorial to install and configure MongoDB / Elasticsearch. The whole tutorial worked on Mac OSX Yosemite and now I tried to do the same on Ubuntu 14.04. Here is my ElasticSearch log: [2014-12-08 15:49:13,733][INFO ][cluster.service …
mr.proton
  • 993
  • 2
  • 10
  • 24