-
Notifications
You must be signed in to change notification settings - Fork 62
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
how to add shards #240
Comments
How would you do it without the package? |
in elastic dev tool
|
Ok, and where does it go wrong and how? |
when i use php artisan scout:import "App/Article". it's create for me an index but index created with number_of_shards = 1 and number_of_replicas = 0 , so i want to change number_of_replicas and number_of_shards to be 3 shards and 2 replica |
You should debug that and see if you can find what it tries to tell Elastic. We can work from there. |
'index' => [
'settings' => [
'number_of_shards' => 3,
"number_of_replicas" => 2,
],
], i try this code but not working
The text was updated successfully, but these errors were encountered: