elasticsearch Questions
4
i have a really hard time setting up JDBC river mysql connector with my elasticsearch installation
first i follow all the https://github.com/jprante/elasticsearch-river-jdbc howto
diffrence is wh...
Blaze asked 7/6, 2014 at 15:18
3
I am trying to install elasticsearch-full using homebrew. I am using the below command.
brew tap elastic/tap
brew install elastic/tap/elasticsearch-full
and it is returning bellow error.
Warning:...
Hartmunn asked 20/1, 2022 at 11:1
9
I'm looking for an ElasticSearch Python client that can make asynchronous requests. For example, I'd like to write this code,
query1_future = es.search('/foobar', query1_json)
query2_future = es.s...
Watertight asked 9/10, 2013 at 18:56
4
I'm getting the following error when trying to spin up an elasticsearch cluster in EC2.
org.elasticsearch.ElasticsearchSecurityException: invalid configuration for xpack.security.transport.ssl - [...
Maximilien asked 26/7, 2022 at 17:47
4
Solved
I'm trying to send elasticserach multi search request via postman as below:
POST - http://localhost:9200/_msearch
content-type : x-www-form-urlencoded
body:
{"index":"accounts"}
{"query":{"bool":{...
Besotted asked 1/8, 2017 at 11:59
11
Solved
I've ran into an annoying issue with my ElasticSearch (Version 1.5.2): Queries immediately return timeout (when I used python's Requests) or
curl: (52) Empty reply from server
when I used cur...
Virilism asked 10/3, 2016 at 15:50
9
Is it possible to update some specific fields value in elasticsearch with out overwriting other fields. ?
Sapowith asked 24/10, 2013 at 10:20
2
Solved
i'm using delete by query plugins for elastic search.
I have a index products with a integer field size. I want delete all document with size 10. I have over 5000 documents with size 10. If i try:...
Disequilibrium asked 8/9, 2016 at 7:18
5
I want to see all queries executed against an elasticsearch instance. Is it possible to run elasticsearch in a debug mode, or to tell it to store all queries executed against it?
The purpose is t...
Waterage asked 13/2, 2014 at 9:27
6
Solved
I have added new mappings (mainly not_analyzed versions of existing fields) I now have to figure out how to reindex the existing data. I have tried following the guide on elastic search website but...
Frankfrankalmoign asked 22/11, 2015 at 18:33
2
I have created an index template in Elasticsearch, here are my settings
Index pattern
job_temp*
Priority
None
Component templates
None
Data stream
No
Version
None
{
"template"...
Conspectus asked 2/7, 2021 at 12:10
3
Solved
I am setting a Bulk request to ElasticSearch and specifying the shard to route to.
But when I run it, the documents get sent to different shards.
Is this a bug in ElasticSEarch bulk? it works whe...
Clavus asked 2/11, 2013 at 18:47
4
I'm having issues trying to remove elements/objects from an array in elasticsearch.
This is the mapping for the index:
{
"example1": {
"mappings": {
"doc": {
"...
Godgiven asked 20/3, 2018 at 12:25
5
Solved
I am storing Book Titles in elasticsearch and they all belong to many shops. Like this:
{
"books": [
{
"id": 1,
"title": "Title 1",
"store": "store1"
},
{
"id": 2,
"title": "Title 1",
...
Warp asked 15/4, 2014 at 14:51
2
Solved
When I run a search in Kibana that returns several hundred documents I am getting an error that the results are too large. The actual error message is below:
Can't store an async search response l...
Soupspoon asked 12/9, 2022 at 1:18
4
Solved
I am trying to find a way in Fluent-bit config to tell/enforce ES to store plain json formatted logs (the log bit below that comes from docker stdout/stderror) in structured way - please see image ...
Rostand asked 1/7, 2019 at 20:0
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
4
Solved
Elasticsearch is a distributed system. As per the CAP theorem, it can satisfy any 2 out of 3 properties. Which one is compromised in Elasticsearch?
Windward asked 17/12, 2020 at 18:56
5
Solved
I am trying to enable security for my ES cloud. I am following these instructions:
https://www.elastic.co/guide/en/elasticsearch/reference/7.5/configuring-security.html
and I am stuck at point 6....
Reddin asked 8/1, 2020 at 10:58
1
Solved
We are working with percolators in ElasticSearch, and we need get a complete highlighting by phrase instead word by word:
As example, we have the next search:
curl -X GET "localhost:9200/my-inde...
Deneb asked 7/5, 2018 at 15:54
9
I am running Elasticsearch and kibana, I am not sure of the status of my elasticsearsh cluster (if its red, yellow, or green) but it seems I need to get a token generated by elasticsearch as ...
Cestar asked 20/2, 2022 at 10:3
22
I have an issue with a systemd config for ElasticSearch.
[Unit]
Description=platform-elasticsearch
After=syslog.target network.target remote-fs.target nss-lookup.target
[Service]
User={{ app_user...
Tutu asked 20/7, 2018 at 15:26
4
Solved
I pulled the elastic search image from docker and tried to run it using docker command but it didn't work. I got the following error:
ERROR: [1] bootstrap checks failed
[1]: the default discove...
Sailboat asked 12/2, 2020 at 6:53
4
Solved
I really wana start elasticsearch for connect opencart.
I have set network.host: 0.0.0.0 (also try to my local IP), http.port: 9200, and give executive authority to my new account. I use centOs6, J...
Nidus asked 21/3, 2019 at 11:32
3
On so many websites they teach how to query data from Elasticsearch using range query. I would like to query data that is less than or equal to a certain number from Elasticsearch using Lucene Styl...
Cruce asked 15/5, 2014 at 9:27
© 2022 - 2024 — McMap. All rights reserved.