Questions tagged [bonsai-elasticsearch]

Questions regarding Bonsai which provides on Demand Elasticsearch cluster

51 questions
2
votes
1 answer

Skipping index creation, cannot connect to Elasticsearch

I'm having difficulty with connecting my Heroku app to an Elasticsearch instance. I'm using the tire gem and the bonsai add-on on Heroku. When I deploy the application I get this error twice: Skipping index creation, cannot connect to…
Kyle
  • 1,058
  • 2
  • 10
  • 22
2
votes
1 answer

How do I get Rails 3.1 with ElasticSearch & Tire working on Heroku Cedar Stack?

I'm having trouble getting Tire working using ElasticSearch with the Bonsai addon on the Heroku Cedar stack. It keeps crashing my app and when I check the Heroku logs (i.e. run heroku logs in Terminal), I Errno::ECONNREFUSED (Connection refused -…
Joe Saunders
  • 798
  • 1
  • 9
  • 27
1
vote
2 answers

Does Heroku with Bonsai support anything higher than 7.10 of elasticsearch?

I am getting security warnings because client 7.13.0 has issues. However, I use Bonsai with Heroku which is server 7.10.2 and that is incompatible with the 7.15.0 client. I tried the following heroku addons:create bonsai -a
Jackie
  • 21,969
  • 32
  • 147
  • 289
1
vote
0 answers

Complex nested arrays search with boosting

So I have an elastic index with a few thousand docuemnts each with the following rather complex structure which I need to search as follows: lets say I have the following search string : "I am single and have a dog", I need to be able to search all…
1977
  • 2,580
  • 6
  • 26
  • 37
1
vote
1 answer

Searchkick/Elasticsearch - Root mapping definition has unsupported parameters

I have a Rails API on Heroku and get the following issue when reindexing a class. $ heroku run rake searchkick:reindex CLASS=User And get the following error Elasticsearch::Transport::Transport::Errors::BadRequest: [400]…
1
vote
1 answer

Is it possible to reproduce the 429 error (Too many requests) locally?

I use bonsai.io server for elasticsearch. I use chewy gems as well as the sidekiq strategy for sidekiq workers. and very often I started to get about 429 (Too many requests) Is it possible to reproduce this error locally in order to try to fix it?
1
vote
1 answer

Bonsai Elasticsearch Heroku unknown error 52

I'm getting unknown error:52 when trying to connect to my Bonsai Elasticsearch on heroku. I use FOSElastica with Symfony. It has worked before, but suddenly it has stopped. These are my settings: fos_elastica: clients: default: …
user3634184
  • 448
  • 1
  • 9
  • 23
1
vote
2 answers

Accesing elasticsearch on Heroku Bonsai from my computer

I'm trying to ping my Elasticsearch instance (Deployed through Bonsai an Heroku add on). I have followed their guidelines and try to execute the following code on my computer: from elasticsearch import Elasticsearch from settings import…
mel
  • 2,730
  • 8
  • 35
  • 70
1
vote
0 answers

Firebase Flashlight - Bonsai-ElasticSearch API Call to perform search

I have just implemented Firebase Flashlight with Bonsai ElasticSearch in order to be able to perform advance queries for my data in my iOS app. I have done so following this tutorial: iOS Firebase Flashlight/ElasticSearch Heroku Setup using…
anho
  • 1,705
  • 2
  • 20
  • 38
1
vote
1 answer

Bonsai elasticsearch vs Amazon elasticsearch price/month comparison?

Does anyone here can help me compare the price/month of these two elasticsearch hosting services? Specifically, what is the equivalent of the Bonsai10 that costs $50/month when compared to the amazon elasticsearch pricing? I just want to know which…
1
vote
0 answers

running elastic search on heroku connect refused

I'm trying to run Elasticsearch on Heorku with the Bonsai add on but I keep getting the following error: Faraday::ConnectionFailed (Connection refused - connect(2)): and then this sometimes too Completed 500 Internal Server Error in 131ms…
1
vote
0 answers

Named Queries not working in bonsai (does not return matched_queries)

I cant seem to get the "_name" parameter to work in my query, when I run it on a Bonsai hosted elasticsearch(same happened on a Searchly service). Did anyone have the same problem? This exact query works in my local elasticsearch, it returns the…
1
vote
2 answers

ElasticsearchIllegalArgumentException when using update script

I am using Bonsai Elastic Search on Heroku and I have a document as follows: { "_index":"myIndex", "_type":"result", "_id":"1234_is", "_version":1, "found":true, "_source":{ "query":"is", "pubId":1234, …
Rach
  • 43
  • 4
1
vote
1 answer

Connection Refused Error Trying to Import ElasticSearch Model through Rake on Heroku

For some reason, on heroku it will not allow me to import models (this is for the Bonsai ElasticSearch add-on). It's just showing connection refused. I'm not sure how to resolve this. I've searched the internet and I can't find anything that will…
Jamel Toms
  • 4,525
  • 2
  • 27
  • 26
1
vote
0 answers

IndexMissingException using Bonsai Elasticsearch with Heroku and Django

Environment: I am running Django==1.5.4 with Python 2.7.2, deploying to Heroku. I am using Haystack with Elastic Search. On Heroku I'm using the Bonsai Elastic Search add-on. Issue: When I run the rebuild_index command, I encounter a "Read timeout…