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
5
votes
2 answers

Elasticsearch 2.0 plugin installation INFO

I started to use Elasticsearch 2.0. I have a plugin for Elasticsearch but cannot install it on new version 2.0. It gives an error: /Downloads/elasticsearch-2.0.0/bin$ ./plugin install file:///home/fatih/Downloads/myftptest/zemberekplugin.zip ->…
Fatih Aktepe
  • 571
  • 2
  • 10
  • 19
5
votes
0 answers

Logging queries and hits in Elasticsearch

We want to use Elasticsearch, Logstash and Kibana to display queries and hits from another Elasticsearch. Setting every slowlog threshold to 0ms gives us the query but not the number of hits index.search.slowlog.threshold.query.warn: 0ms .... Are…
Tommy
  • 4,011
  • 9
  • 37
  • 59
5
votes
3 answers

Elasticsearch EC2 discovery fails with "invalid credentials"

I'm trying to create an Elasticsearch cluster on EC2 and getting errors that I have supplied invalid credentials, but these are the exact same credentials I used when creating the instances via jclouds. A sample error log I see from…
Gordon Seidoh Worley
  • 7,839
  • 6
  • 45
  • 82
4
votes
3 answers

elastic_transport.TlsError: TLS error caused by:TlsError(TLS error caused by: SSLError([SSL: WRONG_VERSION_NUMBER] wrong version number (_ssl.c:852)))

Getting this error Trying to connect elasticsearch docker container with elasticsearch-python client. /home/raihan/dev/aims_lab/ai_receptionist/env/lib/python3.6/site-packages/elasticsearch/_sync/client/__init__.py:379: SecurityWarning:…
heisenberg
  • 75
  • 2
  • 2
  • 6
4
votes
1 answer

How to sync ArangoDB with elasticsearch?

Is there any logstash plugin or other kind of mechanism to sync ArangoDB data with elasticsearch? I'm creating a social network platform and want my users and posts data searchable with ES. My initial thought was using MongoDB as data store because…
4
votes
0 answers

How do I run a custom lucene codec on elasticsearch?

I would like to run a custom Lucene codec on my ES cluster. I tried searching for Elasticsearch plugins that allows me to install a custom lucene codec but to no avail. I searched the elasticsearch plugin codebase. Im considering forking the…
4
votes
2 answers

How to get the search History in Elasticsearch?

There is any way to get the search history in Elasticsearch. In this I want to get the search queries which are searched by customers in last one month.
Tomas
  • 514
  • 4
  • 13
  • 37
4
votes
0 answers

how to use synonyms.txt and stopwords.txt in elasticseach from a remote location?

I want to use synonyms and stopwords file from a remote location and not necessarily from the config directory of elasticsearch. I tried doing this by giving a custom path in the json of the schema but i get a error TransportError:…
4
votes
1 answer

Elastic search update multiple fields in single query request

working on ES 5.x version, and need to update multiple fields update using script.Also share , have any better solution . POST ../100/_update { "script" : { "inline": "ctx._source.student.hobbies.add(params.tag)", "lang":…
Learn Hadoop
  • 2,760
  • 8
  • 28
  • 60
4
votes
1 answer

Getting the error Fielddata is disabled on text fields by default in CURL

I tried this command: curl -XPOST 'localhost:9200/bank/_search?pretty' -d ' { "size": 0, "aggs": { "group_by_state": { "terms": { "field": "state" } } } }' When I'm executing it, then I always getting this error in elasticSearch: { "error" : { …
4
votes
2 answers

How to get elasticsearch-transport-couchbase to work with ES5 + X-Pack security

I'm working on transitioning from ES 1.7 to 5.x and I'm having a problem with the elasticsearch-transport-couchbase plugin. It did work with ES 1.7 with Shield, and the credentials it used were specified in the elasticsearch.yml file: shield.user:…
4
votes
2 answers

Nest QueryContainer usage

I am able to populate QueryContainer with DateRangeQuery array as shown below QueryContainer marriageDateQuerys = null; if (!string.IsNullOrEmpty((item.marriage_date))) { DateRangeQuery query = new…
Sushil
  • 442
  • 3
  • 10
  • 23
4
votes
1 answer

Invalid parameter elasticsearch_package_name on Elasticsearch_plugin

OS : 'CentOS 6.5 ' ElasticSearch version : '2.3.0' Master's puppet version: '3.8.7' Client's puppet version : '3.7.4' Base module version before upgrade : '0.10.2' Base module version after upgrade : '5.1.0' Error: could not retrieve catalog from…
RamenCoder
  • 358
  • 1
  • 2
  • 16
4
votes
1 answer

Different results for same query in Elasticsearch Cluster

I have created a Elasticsearch cluster with 3 nodes , having 3 shards and 2 replicas. The same query fetch different results when hit to the same index with same data. Right now the results are basically sorted by the _score field desc (I think…
Ashit_Kumar
  • 601
  • 2
  • 10
  • 28
4
votes
1 answer

Ingest Search (Elastic Search) is not working in PHP

I have installed elastic search and also install ingest plugin in my local server. Elastic engine is running nicely. I set up the following tasks: mapping indexing Now I am stuck in searching, it's not working. It returns null array. Here is my…
Selim Reza
  • 683
  • 1
  • 11
  • 31