You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've set up Elasticsearch 8.8 with Laravel 9x and docker. I'm using the single-node type and used Searchable on a Model to get started.
Now I wanted to see, if the creation works by simple using the command php artisan scout:import but the import fails with the following error:
No alive nodes. All the 1 nodes seem to be down.
This ocurrs because elastic search changes it's health status:
"current.health":"RED","message":"Cluster health status changed from [YELLOW] to [RED] (reason: [index [products_1691588380] created]).","previous.health":"YELLOW","reason":"index [products_1691588380] created"
What's weird is, that the first step 1/5 works just fine but it breaks when 2/5 happens (Create write index)
Expected behavior
Actually I thought that the command would automatically import the data to elasticsearch and just work
Additional context
my docker-compose.yml configuration:
describe the problem
I've set up Elasticsearch 8.8 with Laravel 9x and docker. I'm using the single-node type and used
Searchable
on a Model to get started.Now I wanted to see, if the creation works by simple using the command
php artisan scout:import
but the import fails with the following error:This ocurrs because elastic search changes it's health status:
What's weird is, that the first step 1/5 works just fine but it breaks when 2/5 happens (Create write index)
Expected behavior
Actually I thought that the command would automatically import the data to elasticsearch and just work
Additional context
my
docker-compose.yml
configuration:Version
The text was updated successfully, but these errors were encountered: