我已经使用Ruby on Rails实现了Bonsai文档索引并部署在Heroku上。当我使用文档内容索引遍历所有文档时,我得到一些请求的http 504错误。
我正在使用带有rails 4.2的elasticsearch-api gem。
documents.each do |document|
client.update(
index: 'sample_index_name', type: 'document', id: document.id.to_s, body: {doc: {doc_content: '..base64 encoded content..'}})
end