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

ElasticSearch Indexing Confluence pages

Can ElasticSearch index Confluence pages? There are a lot of river plugins but none for Confluence. http://www.elasticsearch.org/guide/en/elasticsearch/reference/current/modules-plugins.html Although there is a github project…
11
votes
1 answer

ElasticSearch Rails - Setting a Custom Analyzer

I'm using ElasticSearch in Rails 4 through elasticsearch-rails (https://github.com/elasticsearch/elasticsearch-rails) I have a User model, with an email attribute. I'm trying to use the 'uax_url_email' tokenizer described in the docs: class User <…
10
votes
1 answer

Elasticsearch Go nested query

I'm using olivere's elastic Go library to run Elastic queries - https://godoc.org/github.com/olivere/elastic#NestedQuery The data I'm trying to query on looks like this: "_source": { "field1": "randVal1", …
covfefe
  • 2,485
  • 8
  • 47
  • 77
10
votes
1 answer

set default analyzer of index

First I wanted to set default analyzer of ES, and failed. And then according to other questions and websites, I'm trying to set default analyzer of one index.But there are some problems too. I have configured ik analyzer, and I can set some fields'…
iurti
  • 167
  • 2
  • 7
10
votes
1 answer

Configuring MongoDB replica set from docker-compose

I'm using docker-compose to start 3 MongoDB servers which should be in a replica set. I first start 3 MongoDB servers, then I configure the replica set. This is how I would do the replica set config in a bash script: mongo --host 127.0.0.1:27017…
martins
  • 9,669
  • 11
  • 57
  • 85
9
votes
5 answers

How to create index and type in elastic search?

I have installed elasticsearch version 2.3.2. I have to add index and type to that elasticsearch. Before I used sense plugin to achieve this. But the addon was removed from webstore. Please give suggestion.
Gopal
  • 787
  • 3
  • 13
  • 19
9
votes
2 answers

How to increase the max_result_window in elasticsearch using a python script?

I know, we can use the curl to increase the max_result_window as something like: curl -XPUT "http://localhost:9200/index1/_settings" -d '{ "index" : { "max_result_window" : 500000} }' But How do I do the same using python? My code es =…
9
votes
1 answer

Elasticsearch to index RDBMS data

These are three simple questions which was surprisingly hard to find definite answers. Does ElasticSearch support indexing data in RDBMS tables ( Oracle/SQLServer/Informix) out of the box? If yes, can you please point me to documentation on how to…
Ishan Hettiarachchi
  • 1,426
  • 2
  • 19
  • 31
9
votes
4 answers

ElasticSearch plugins: "Failed to resolve config path" error

I install elasticsearch 1.7.3 on debian jessie. It uses default config files and works normally. But when i call sudo /usr/share/elasticsearch/bin/plugin it returns an error: Exception in thread "main"…
Haru Atari
  • 1,502
  • 2
  • 17
  • 30
9
votes
2 answers

Elasticsearch bulk index api via rest endpoint

Here is my request: POST /_bulk { "index" : { "_index" : "test", "_type" : "type1", "_id" : "1" }…
user1189332
  • 1,773
  • 4
  • 26
  • 46
9
votes
4 answers

can i change top menu bar and remove some options in kibana-4

I have installed kibana-4 on my Linux machine. My requirement is that I want to delete options like save search fields in my kibana home page and i want to change the top menubar of kibana by my own customized menubar. here 's snapshot of what i…
jay j
  • 285
  • 1
  • 6
  • 16
9
votes
2 answers

what is the better way to index data from Oracle/relational tables into elastic search?

What are the options to index large data from Oracle DB to elastic search cluster? Requirement is to index 300Million records one time into multiple indexes and also incremental updates having around approximate 1 Million changes every day. I have…
user4362590
8
votes
1 answer

Is it possible to write Elasticsearch plugins using Python language

Is it possible to write Elasticsearch plugins using Python language. Can anyone provide your inputs on this.
Brisi
  • 1,781
  • 7
  • 26
  • 41
8
votes
5 answers

Elasticsearch Sense chrome plugin disabled, need to get dsl queries written in console

I am running Google Chrome Version 61.0.3163.100. I previously was running the Sense (Beta) extension version 0.9.4 until Google Chrome flagged it as malware in the extensions tab. The author of Sense has removed it from the Chrome store and it has…
8
votes
1 answer

Filter or analyzer to equate English numbers and arabic numerals

I'm running an Elasticsearch server. I'd like a query such as fifty two meters to match a document containing 52 meters. Is there any plugin (filter or analyzer) that converts number words to arabic numerals?
Garrett
  • 4,007
  • 2
  • 41
  • 59
1
2
3
64 65