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
0 answers

Elasticsearch index create on plugin initialization

I'm experimenting with elasticsearch plugins creation and I'm trying to create an index (if missing) on plugin startup. I wanted to ask what is the best place to add the code snippet for code creation? I have added it at an injected binding with…
tbo
  • 9,398
  • 8
  • 40
  • 51
0
votes
2 answers

Elasticsearch head plugin not working through nginx reverse proxy

I have elasticsearch with the head plugin installed running on a different server. I also set up an nginx reverse proxy for my ES instance. The configuration looks like below: http { include mime.types; default_type …
Shark
  • 2,322
  • 5
  • 31
  • 44
0
votes
0 answers

How to compare and fetch fields from multiple log files using elasticsearch.rb filter

I am parsing two differnt log files in logstash and storing it in different index. 2015-02-26 90000
Mangoski
  • 2,058
  • 5
  • 25
  • 43
0
votes
1 answer

NEST elasticsearch.NET search query not returning results (part 2)

I'm using the object initializer syntax with NEST to form a search query. When I include the second pdfQuery with the logical OR operator, I get no results. If I exclude it, I get results. QueryContainer titleQuery = new MatchQuery { Field =…
notsoobvious
  • 175
  • 1
  • 9
0
votes
1 answer

Elasticsearch and MongoDB: no river _meta document found after 5 attempts

I have a MongoDB database named news to which I tried to index with ES. Using these plugins: richardwilly98.elasticsearch/elasticsearch-river-mongodb/2.0.9 and elasticsearch/elasticsearch-mapper-attachments/2.5.0 This is what happening when I tried…
martins
  • 9,669
  • 11
  • 57
  • 85
0
votes
0 answers

Elasticsearch won't start after plugin installations

I installed MongoDB and Elasticsearch to my Ubuntu machine, mainly following this tutorial: https://coderwall.com/p/sy1qcw/setting-up-elasticsearch-with-mongodb As the tutorial goes, after the plugin installations, Elasticsearch started not to start…
0
votes
1 answer

How to add terms to model to extract entities from text

We want to add new terms and synonyms to Stanford NER engine and have engine extract new terms in a document. Also wondering if elastic search couldn't be of help. Use case - making bread and I want to add terms to the engine like white flour, wheat…
0
votes
1 answer

Active Directory AuthorizationException in elastic search

I am trying to use AD authentication. I am able to login successfully but i am not authorized to perform any query in marvel. Everytime i execute query in marvel, i get the following error.Below are the details { "error":…
0
votes
1 answer

Disabling shield for intergration tests

I have an app that connects to an elastic search node on another server via the Transport client using the JAVA API. The node has shield security enabled, so I use maven to fetch the shield jar. My app runs fine. However, now I'm trying to set up…
0
votes
0 answers

MongoDB River Plugin for ElasticSearch on AWS EC2 Windows Server

I've reached a point of defeat, basically I've tried to setup the MongoDB River Plugin for ElasticSearch on Windows Server 2012 running on Amazon AWS EC2 and failed miserably. I have similar setup already running fine on Windows Server 2008 (running…
0
votes
1 answer

Elasticsearch 1.5 can't find the plugin manager

I'm currently trying to install the JDBC river on an 1.5 elasticsearch instance. When running: /bin/plugin --install jdbc --url…
Heschoon
  • 2,915
  • 9
  • 26
  • 55
0
votes
1 answer

Elasticsearch fail to start shards

I am trying to fix my shards with the following command java -cp lucene-core-4.10.2.jar -ea:org.apache.lucene... org.apache.lucene.index.CheckIndex /var/lib/elasticsearch/elasticsearch/nodes/0/indices/XXX/0/index/ -fix But I am getting the…
Ironman
  • 173
  • 1
  • 3
  • 10
0
votes
3 answers

no results found plugin carrot2+elasticsearch

Good afternoon! Can you help me please with some error? I had old version 1.3.4 of Elasticsearch and installed plugin Carrot2 Clustering plugin 1.7.0. I upgraded Elasticsearch to version 1.5.0 and plugin Carrot2 Clustering plugin 1.8.0. Now I'm…
mariya24
  • 1
  • 1
0
votes
1 answer

Elasticsearch separating out data into indexes

I have three different data sources which get updated at separate times each day. My first idea was to combine all the data into a single index but I'm wondering if it's more sensible to keep each data source in their own index. That way when a data…
Jimmy
  • 12,087
  • 28
  • 102
  • 192
0
votes
1 answer

arangodb-river-elasticsearch -- _mapping mismatch

When creating rivers for composed objects, the resulting _mapping is set with the complete nested object definition rather than String field. This causes the data import to fail because the object references are not "dereferenced". E.g. collection1:…
Lewis Diamond
  • 23,164
  • 2
  • 24
  • 32