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

Implementing Trending in Elasticsearch

I'm building a project that indexes celebrity-related content across sites (tmz, people, etc) because I always thought that it would be funny to "bet" on people (and maybe shows, directors, etc) like horse racing or the stock market -- only, you…
3
votes
1 answer

Stream elasticsearch data to kafka

I have a requirement to stream the data from Elasticsearch to Kafka. I'm looking at a any connectors between Elasticsearch and Kafka (Python implementation) that could either automatically identified CDC and streams the data to kafka or i can…
RAVITEJA SATYAVADA
  • 2,503
  • 23
  • 56
  • 88
3
votes
0 answers

Elasticsearch synonym_graph filter not giving all tokens

I'm trying to use synonym_graph filter in the analyzer but it is not generating the result we need. This is my curl command to analyze text: curl -X GET "localhost:9200/_analyze?pretty" -H 'Content-Type: application/json' -d' { "tokenizer":…
3
votes
0 answers

Using the CBOR format instead of JSON in elasticsearch ingest plugin

In the documentation of Ingest Attachment Processor Plugin in Elasticsearch, it is mentioned, "If you do not want to incur the overhead of converting back and forth between base64, you can use the CBOR format instead of JSON and specify the field as…
3
votes
1 answer

Unable to restore elasticsearch snapshots from S3 using the repository-s3 plugin after nodes data directory got deleted from all nodes

I am using repository-s3 plugin for snapshot and restore with elasticsearch 7.5.1. I created snapshot policies and took snapshot of specific indices, confirmed that they existed in my S3 bucket. Now due to some reason, I had to delete data from all…
3
votes
1 answer

Most useful plugins for ElasticSearch

What would be some of the top most used Elasticsearch plugins? For example, monitoring data, mapping, or analysis plugin.
Mohammad Fallah
  • 976
  • 11
  • 14
3
votes
2 answers

elasticsearch azure repository verification exception

I have installed repository-azure and configured elasticsearch with below settings: path.data: /datadrive/elasticsearch/data path.logs: /datadrive/elasticsearch/log cloud: azure: storage: my_account: account:…
RNK
  • 5,582
  • 11
  • 65
  • 133
3
votes
1 answer

ElasticSearch multiple queries in one

I am using ElasticSearch and I want to make a query. I have differents modules: ['a', 'b', 'c', 'd']. where a and b have an extra value (companyId) I need to filter the text of all modules, but I need to filter the companyId just for a and b not…
Pablo Alejandro
  • 591
  • 2
  • 10
  • 19
3
votes
0 answers

elastic search function_score query performance

I'm doing function_score queries in elastic search. The boost weights of the query are determined ad-hoc (and differ between users). Also, the terms that are queried will differ between users depending on context. An example query might look like…
Avba
  • 14,822
  • 20
  • 92
  • 192
3
votes
0 answers

How to connect ssis with elasticsearch

I would like to know how to connect SSIS with ElasticSearch for import/export data. Is there any oldedb/odbc driver for elasticsearch ? any (.net/c#) script to import or export data to and from elasticsearch using SSIS? Thanks in advance. Much…
rmdussa
  • 1,549
  • 10
  • 27
  • 50
3
votes
0 answers

How to add IP filter in elastic search using X-Pack, without adding user authentication?

As soon as I remove xpack.security.enabled: false from elasticsearch.yml I start getting Username and Password authentication window, but if I have xpack.security.enabled: false I cannot add IP filter. How do I fix this? I also tried adding…
3
votes
1 answer

How to get array count of nested object in elastic-search

Can someone please help me to get an aggregated count of the nested object in elastic search, let say if my elastic search object mapping as : { "employe": { "dynamic": "strict", "properties": { "empId":{ "type": "keyword" }, "entities":…
3
votes
1 answer

How to index a PDF in Elasticsearch 6.1 with ingest-attachment plugin & JavaScript Client?

I tried following the instructions in the answer given to the following question: How to index a pdf file in Elasticsearch 5.0.0 with ingest-attachment plugin? I couldn't find many examples of the JavaScript client for ElasticSearch, so here is…
3
votes
1 answer

add average value of data in existing chart elasticsearch kibana

I have a project in kibana integrated with elastic search. In Kibana page I am displaying a chart with X(months) and Y(Euro) values. I want to show a line in the chart that will show the average Euro value of all data. For the moment I add a manual…
3
votes
0 answers

Elasticsearch scripting engine

I am using elasticsearch 5.5 and I am trying to implement my own scoring algorithm. I use match query with fuzziness 2 and I need terms that match to my query in my java custom acore algorithm to calculate the edit distance and come up with a custom…
user2297083
  • 168
  • 11