elasticsearch-plugin Questions
8
Solved
I have a docker-compose.yml file with an elastic search image:
elasticsearch:
image: elasticsearch
ports:
- "9200:9200"
container_name: custom_elasticsearch_1
If I want to install additional...
Tartar asked 25/9, 2016 at 20:43
8
Solved
I'm using Search Guard plugin to secure an elasticsearch cluster composed of multiple nodes.
Here is my Dockerfile:
#!/bin/sh
FROM docker.elastic.co/elasticsearch/elasticsearch:5.6.3
USER root
#...
Methoxychlor asked 6/12, 2017 at 10:5
4
Solved
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/...
Manlike asked 9/4, 2022 at 6:57
8
I'm using elastisearch using Python. My code looks somewhat like this:-
from elasticsearch import Elasticsearch
if __name__ == '__main__':
index="IndexPosition"
es=Elasticsearch(['htt...
Endermic asked 13/12, 2016 at 11:18
1
Is it possible to write Elasticsearch plugins using Python language. Can anyone provide your inputs on this.
Rewrite asked 9/7, 2020 at 9:1
2
Solved
How do I check whether an index exists or not using a python query?
I'm passing my index as a variable assigned outside the query as :-
i=int(datetime.datetime.now().strftime('%d'))+1
indextring...
Girardi asked 28/10, 2016 at 7:33
4
Solved
I am using elasticsearch for filtering and searching from json file and I am newbie in this technology. So I am little bit confused how to write like query in elasticsearch.
select * from table_na...
Francium asked 2/7, 2015 at 5:9
2
I'm looking for a way to save a dotted version as string (e.g "1.2.23") in elastic and then use range query on this field.
e.g
{
"query": {
"range": {
"version": {"gte": "1.2.3", "lt": "1.3"}
...
Chyou asked 11/6, 2016 at 12:43
5
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 su...
Soule asked 16/10, 2017 at 8:42
5
How to achieve count distinct function on elastic search type using sql4es driver?
Select distinct inv_number , count(1) from invoices;
But it returns the total count of the particular invoice n...
Nyeman asked 19/3, 2017 at 10:30
4
I am using elasticsearch 6.0.1 and on BulkRequest request = new BulkRequest();
I am getting the below error. I have checked online, mostly people said that this happens if I have different versions...
Amalbergas asked 18/1, 2018 at 3:38
3
How to remove old data from elastic search index as the index has large amount of data being inserted every day.
Softhearted asked 9/12, 2015 at 3:0
1
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
Altho...
Conduce asked 10/10, 2013 at 13:26
12
I'm getting the error below when I try to start ElasticSearch 5.0 with ./elasticsearch:
[2016-11-23T13:44:09,507][WARN ][o.e.b.ElasticsearchUncaughtExceptionHandler] [] uncaught exception in thread...
Junta asked 23/11, 2016 at 13:50
10
Solved
I have the many of my logs indexed in logstash-Year-Week format. That is if i want to delete indices older than a few weeks, how can I achieve that in elasticsearch. Is there an easy, seamless way ...
Emirate asked 30/10, 2015 at 6:33
3
Solved
I have the following Dockerfile:
FROM docker.elastic.co/elasticsearch/elasticsearch:5.4.0
RUN elasticsearch
EXPOSE 80
I think the 3rd line is never reached.
When I try to access the dockerconta...
Pornocracy asked 16/5, 2017 at 13:18
3
I've an elasticsearch index having users with fields like..
"name" : "kai"
"age" : "23"
"location" : "Delhi, India"
"tag": [ "search", "nosql" ]
etc.
I want to query multiple strings in all fields...
Daly asked 2/12, 2014 at 7:7
2
I'm trying to set the configuration for snapshot repository of elasticsearch nodes to S3.
I have installed the "repository-s3" plugin for elasticsearch.
PUT http://<username>:<password&g...
Oliy asked 15/1, 2018 at 9:36
2
Solved
It's my first time using angular with elastic and I am getting the above error on the line "this.client = new Client(//.."
exact error
ReferenceError: process is not defined
at Log.push../nod...
Cordes asked 16/5, 2018 at 6:54
4
How to find out the index created date in elastic search?
Faltboat asked 19/2, 2014 at 6:8
3
I'm trialing the AWS Elasticsearch service:
https://aws.amazon.com/elasticsearch-service/
Very easy to setup. Basically just hit deploy. I unfortunately can't get any of the Elasticsearch GUI's t...
Nietzsche asked 26/10, 2015 at 1:30
1
Solved
I am relatively new to this elastic search. So, I have an index called post which contain documents like this:
{
"id": 1,
"link": "https:www.instagram.com/p/XXXXX/",
&...
Ingemar asked 26/1, 2020 at 19:15
6
Solved
I am trying to run Elasticsearch 2.1.1 in my Linux machine which I am the root user of it.
When I tried to execute the Elasticsearch.I am getting the following error:
Exception in thread "main" j...
Litta asked 21/1, 2016 at 10:11
2
Solved
How to copy ES (v 5.x) index from one server to another server. i don't have privileges to install any software in that machine. have any better solution to copy the index ? will backup and restore...
Diaconicum asked 8/3, 2018 at 14:39
5
I am trying to stop kibana on SSH with kill but it respawns immediatly
[email protected] [~/logstash]# ps aux | grep kibana
533 28778 0.0 0.0 9292 876 pts/2 S+ 00:16 0:00 grep kibana
[email&#...
Tafilelt asked 23/11, 2015 at 23:18
1 Next >
© 2022 - 2025 — McMap. All rights reserved.