I am using searchkick
gem in Rails 5.2.2 and trying to Index the User model through rails console. User.reindex is returning this error:
Searchkick::ImportError ({"type"=>"unavailable_shards_exception", "reason"=>"[users_production_20191118071025562][3] primary shard is not active Timeout: [1m], request: [BulkShardRequest [[users_production_20191118071025562][3]] containing [52] requests]"} on item with id '1')
This is my config/initializers/searchkick.rb
initializer file:
url = begin
ENV['ELASTICSEARCH_URL']
rescue StandardError
"localhost"
end
Searchkick.client = Elasticsearch::Client.new(
hosts: ["http://#{url}"],
retry_on_failure: true,
transport_options: {
request: {
timeout: 450
}
}
)
Output of curl -XGET "localhost:9200"
"name" : "RZdkAgz",
"cluster_name" : "elasticsearch",
"cluster_uuid" : "PG5iZcMnQB677DBW2jStuA",
"version" : {
"number" : "6.7.0",
"build_flavor" : "default",
"build_type" : "deb",
"build_hash" : "8453f77",
"build_date" : "2019-03-21T15:32:29.844721Z",
"build_snapshot" : false,
"lucene_version" : "7.7.0",
"minimum_wire_compatibility_version" : "5.6.0",
"minimum_index_compatibility_version" : "5.0.0"
},
"tagline" : "You Know, for Search"
}
Output of curl -XGET "localhost:9200/_cluster/health?pretty"
"cluster_name" : "elasticsearch",
"status" : "yellow",
"timed_out" : false,
"number_of_nodes" : 1,
"number_of_data_nodes" : 1,
"active_primary_shards" : 0,
"active_shards" : 0,
"relocating_shards" : 0,
"initializing_shards" : 0,
"unassigned_shards" : 20,
"delayed_unassigned_shards" : 0,
"number_of_pending_tasks" : 0,
"number_of_in_flight_fetch" : 0,
"task_max_waiting_in_queue_millis" : 0,
"active_shards_percent_as_number" : 0.0
}
One reason can be that, the node has just joined the cluster, but it hasn’t been assigned any shards. Refer this post for more information: Unassigned Shards