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

River Plugin Not_analyzed option for Elasticsearch

I'm using Elasticsearch 1.1.1, River Plugin and MongoDB 2.4 I have a field called cidr that is being analyzed. I need to set it so that it is not_analyzed anymore to use it with Kibana correctly. Following is the index I used. But now Im going to…
hello_its_me
  • 743
  • 2
  • 19
  • 52
0
votes
0 answers

Search Client for Elastic Search Search in Java

I 'm trying to write a plugin for Elastic Search which would execute a simple query against the elastic search and retrieve the results. Here is the error I got. Can any one help me? This is the error : {"error":"BindTransportException[Failed to…
Vineel
  • 1,630
  • 5
  • 26
  • 47
0
votes
1 answer

Unable to search attachment type field in an ElasticSearch indexed document

Search does not return any results although I do have a document that should match the query. I do have the ElasticSearch mapper-attachments plugin installed per https://github.com/elasticsearch/elasticsearch-mapper-attachments. I have also googled…
0
votes
1 answer

ElasticSearch with nodejs : why use the npm module?

I am about to add the search engine to my Node application. I can see there is a npm package for ElasticSearch. But why not simply using ElasticSearch standalone instead of nesting it with the application code? The use case for me is: Data is in a…
0
votes
1 answer

Elasticsearch river - no _meta document found after 5 attempts

I am using elasticsearch version 1.3.0. when I create a river using wikipedia plugin version 2.3.0 as thus PUT _river/my_river/_meta -d { "type" : "wikipedia", "wikipedia" : { "url" :…
gnsr
  • 3
  • 3
0
votes
0 answers

Elasticsearch Index not Created

I have an issue here, I installed the plugin "richardwilly98/elasticsearch-river-mongodb". To work with this, I created an entry in mongodb Then i created a index with river. Usually now an index must be created with the elasticsearch. But its not…
Krishna
  • 1,332
  • 5
  • 20
  • 35
0
votes
1 answer

Elasticsearch filtering by specific token

I'm new to elasticsearch and I'm trying to use it for my web development college project. Is it possible to aggregate the data below by a specific subset of the IP address? { { "ip": "192.168.0.1", "host": "Gateway" }, …
codeBarer
  • 2,238
  • 7
  • 44
  • 75
0
votes
1 answer

Elasticsearch: security concerns

We are using elasticsearch as back-end for our in-house logging and monitoring system. We have multiple sites pouring in data to one ES cluster but in different index. e.g. abc-us has data from US site, abc-india has it from India site. Now concerns…
0
votes
0 answers

Elastic Search and MongoMapper

I'm currently using MongoMapper as an ORM and I would like to use Elastic Search. I tried integrating elasticsearch-rails to my project and called the import method, but I'm getting the following error. Elasticsearch::Model::NotImplemented: Method…
Jani
  • 1,400
  • 17
  • 36
0
votes
1 answer

ElasticSearch jdbc river

I am trying to feed data into Elastic Search using jdbc river but this river is not getting all the data. I have 450000 records in MySQL table but in ES i get only about 230000 records. Here is my ES river setting: curl -XPUT…
0
votes
1 answer

ElasticSearch with NEST query issue

Forgive my newbish-ness as I am new to both ElasticSearch and NEST. I am working on a prototype to evaluate ElasticSearch in a .NET solution being implemented. The prototype compiles and does seem to search, but isn't properly returning results. It…
0
votes
1 answer

Count mismatch in Hive- Elasticsearch integration in hive table and ES index

I had created Elastic search index using hive. Here, I have one temp table, where load all the raw data. From that table select some data on some criteria and insert them to a table which is integrated with Elastic search index. After index…
user1321939
  • 319
  • 2
  • 6
  • 18
0
votes
1 answer

Elastic Search on Custom Port Number

I have tried by changing default port of elastic search by changing http.port no. But is not worked out. I am using php elastic library. Due to security reason default port on my website is block. Can any one suggest how i can proceed to run elastic…
0
votes
1 answer

building query/filter in scala eclipse plugin for elastic search

I have this document structure: { "_index": "catalogue", "_type": "attribute", "_id": "f26f19bb-5558-4e01-a021-d81cd895248d", "_score": 1, "_source": { "id":…
ilansch
  • 4,784
  • 7
  • 47
  • 96
0
votes
0 answers

Elasticsearch - MySQL Index Search Distance Search

I am trying to use Elasticsearch indexed on a MySQL table to find all addresses that are within x km from a particular data point. I have indexed the table with the following: { "type": "jdbc", "jdbc": { "strategy": "simple", …