Reputation: 888
I am working on Ruby on Rails project hosted on heroku server. the search functionnalit works fine on localhost. But when i try on production i get the following error:
RSolr::Error::Http (RSolr::Error::Http - 429
Error: {"code":429,"message":"Request meter exhausted. Please consider batching your requests, or contact [email protected] for help."}
I have spent time looking for resolving this problem. I found that the 429 code status refers to too many requests in websolr and it is used to protect from DoS attacks.
Please how can I resolve this issue.
Regards
Upvotes: 3
Views: 394
Reputation: 376
Websolr Support here. An HTTP 429 response indicates that the connection pool to your index is fully saturated. There are a couple of options to address it:
Upvotes: 2