4

我正在尝试运行我的一项测试,该测试进行搜索,试图断言在搜索结果中包含记录,但与此同时,我收到一个Elasticsearch::Transport::Transport::Errors::BadRequest错误:

SearchTest#test_simple_test_returns_product:
Elasticsearch::Transport::Transport::Errors::BadRequest: [400] 

{
  "error":{
    "root_cause":[
      {
        "type":"resource_already_exists_exception",
        "reason":"index [app_application_test_products/FTt1YC6eQrCw2XwJuqjmDw] already exists",
        "index_uuid":"FTt1YC6eQrCw2XwJuqjmDw",
        "index":"app_application_test_products"
      }
    ],
    "type":"resource_already_exists_exception",
    "reason":"index [app_application_test_products/FTt1YC6eQrCw2XwJuqjmDw] already exists",
    "index_uuid":"FTt1YC6eQrCw2XwJuqjmDw",
    "index":"app_application_test_products"
  },
  "status":400
}

当我在开发中执行搜索时,它按预期工作,但在测试中抛出这样的错误,在测试中我添加了导入和索引刷新,仅此而已:

class SearchTest < ActiveSupport::TestCase
  setup do
    Product.import force: true
    Product.__elasticsearch__.refresh_index!
  end

  test "simple test returns product" do
    product = products(:one)
    I18n.locale = product.market.lang
    search = Search.new(
      category: product.category.custom_slug,
      page: 1,
      market_id: product.market_id,
      status: "active",
      seed: Date.today.to_time.to_i
    )
    assert_includes search.results.records, products(:one)
    assert_includes search.results.records, products(:two)
    assert_not_includes search.results.records, products(:three)
  end
end

任何帮助表示赞赏,作为改进代码的任何提示。

我在用着:

# Gemfile
gem 'minitest', '5.10.1'

# Gemfile.lock
elasticsearch (6.1.0)
elasticsearch-model (6.0.0)
elasticsearch-rails (6.0.0)
minitest (= 5.10.1)
4

3 回答 3

4

很高兴您找到了特定问题的根本原因。

我在弹性搜索的 ruby​​-on-rails gem 中遇到了类似的问题。虽然映射都很好,但我确实收到了完全相同的错误消息。在这里留下我的答案,以便其他来到这里的人可以获得更多帮助。

经过大量尝试和错误,最终发现原因是它在创建索引上超时。

如果您将客户端超时更改为 60 秒(它在 30 秒内失败),它能够成功创建索引而不会导致此间歇性错误。

connection_hash = {
      hosts: [ "localhost:9220" ]
      reload_connections: true
      adapter: :httpclient
      retry_on_failure: 2
      request_timeout: 60
}

es_connection_client = Elasticsearch::Client.new(connection_hash)

此外,发现这个问题是相关的,并在类似的答案后关闭。 https://github.com/ankane/searchkick/issues/843#issuecomment-384136164

于 2020-03-19T21:26:12.360 回答
1

我在多个规范中使用时间冻结,因此创建一个与created_at前一个规范中的对象具有相同时间的新对象会导致resource_already_exists_exception错误。稍微调整时间戳以冻结每个规范解决了这个问题。

于 2021-03-07T15:53:27.543 回答
0

我的模型中有错误的映射。而不是使用该type选项,我使用的index是 ElasticSearch 创建多重映射的原因。自 6.4 版以来不可用(我猜)。

于 2018-10-02T12:13:11.333 回答