jackardios / scout-elasticsearch-driver
The Elasticsearch Driver for Laravel Scout
Requires
- php: ^7.1.3
- elasticsearch/elasticsearch: >=7.0 <=7.6.1
- laravel/scout: ^7.0|^8.0
Requires (Dev)
- mockery/mockery: ^1.0
- phpunit/phpunit: ^7.0
- dev-master
- v4.2.4
- v4.2.3
- v4.2.2
- v4.2.1
- v4.2.0
- v4.1.0
- v4.0.5
- v4.0.4
- v4.0.3
- v4.0.2
- v4.0.1
- v4.0.0.x-dev
- v4.0.0
- v3.13.0
- v3.12.0.x-dev
- v3.12.0
- v3.11.0
- v3.10.0
- v3.9.1
- v3.9.0
- v3.8.2
- v3.8.1
- v3.8.0
- v3.7.1
- v3.7.0
- v3.6.1
- v3.6.0
- v3.5.0
- v3.4.1
- v3.4.0
- v3.3.2
- v3.3.1
- v3.3.0
- v3.2.1
- v3.2.0
- v3.1.2
- v3.1.1
- v3.1.0
- v3.0.0
- v2.4.0
- v2.3.0
- v2.2.0
- v2.1.0
- v2.0.1
- v2.0.0
- v1.3.1
- v1.3.0
- v1.2.1
- v1.2.0
- v1.1.1
- v1.1.0
- v1.0.5
- v1.0.4
- v1.0.3
- v1.0.2
- v1.0.1
- v1.0.0
- dev-analysis-d09j2v
This package is auto-updated.
Last update: 2024-10-29 05:59:33 UTC
README
🍺 If you like my package, it'd be nice of you to buy me a beer.
This package offers advanced functionality for searching and filtering data in Elasticsearch. Check out its features!
Contents
- Features
- Requirements
- Installation
- Configuration
- Index configurator
- Searchable model
- Usage
- Console commands
- Search rules
- Available filters
- Zero downtime migration
- Debug
Features
- An easy way to configure and create an Elasticsearch index.
- A fully configurable mapping for each model.
- A possibility to add a new field to an existing mapping automatically or using the artisan command.
- Lots of different ways to implement your search algorithm: using search rules or a raw search.
- Various filter types to make a search query more specific.
- Zero downtime migration from an old index to a new index.
- Bulk indexing, see the configuration section.
Requirements
The package has been tested in the following configuration:
- PHP version >=7.1.3, <=7.3
- Laravel Framework version >=5.8, <=6
- Elasticsearch version >=7
Installation
Use composer to install the package:
composer require jackardios/scout-elasticsearch-driver
If you are using Laravel version <= 5.4 or the package discovery
is disabled, add the following providers in config/app.php
:
'providers' => [ Laravel\Scout\ScoutServiceProvider::class, ScoutElastic\ScoutElasticServiceProvider::class, ]
Configuration
To configure the package you need to publish settings first:
php artisan vendor:publish --provider="Laravel\Scout\ScoutServiceProvider"
php artisan vendor:publish --provider="ScoutElastic\ScoutElasticServiceProvider"
Then, set the driver setting to elastic
in the config/scout.php
file and configure the driver itself in the config/scout_elastic.php
file.
The available options are:
Note, that if you use the bulk document indexing you'll probably want to change the chunk size, you can do that in the config/scout.php
file.
Index configurator
An index configurator class is used to set up settings for an Elasticsearch index. To create a new index configurator use the following artisan command:
php artisan make:index-configurator MyIndexConfigurator
It'll create the file MyIndexConfigurator.php
in the app
folder of your project.
You can specify index name and settings like in the following example:
<?php namespace App; use ScoutElastic\IndexConfigurator; class MyIndexConfigurator extends IndexConfigurator { // It's not obligatory to determine name. By default it'll be a snaked class name without `IndexConfigurator` part. protected $name = 'my_index'; // You can specify any settings you want, for example, analyzers. protected $settings = [ 'analysis' => [ 'analyzer' => [ 'es_std' => [ 'type' => 'standard', 'stopwords' => '_spanish_' ] ] ] ]; }
More about index settings you can find in the index management section of Elasticsearch documentation.
To create an index just run the artisan command:
php artisan elastic:create-index "App\MyIndexConfigurator"
Note, that every searchable model requires its own index configurator.
Indices created in Elasticsearch 6.0.0 or later may only contain a single mapping type. Indices created in 5.x with multiple mapping types will continue to function as before in Elasticsearch 6.x. Mapping types will be completely removed in Elasticsearch 7.0.0.
You can find more information here.
Searchable model
To create a model with the ability to perform search requests in an Elasticsearch index use the command:
php artisan make:searchable-model MyModel --index-configurator=MyIndexConfigurator
After executing the command you'll find the file MyModel.php
in you app
folder:
<?php namespace App; use ScoutElastic\Searchable; use Illuminate\Database\Eloquent\Model; class MyModel extends Model { use Searchable; protected $indexConfigurator = MyIndexConfigurator::class; protected $searchRules = [ // ]; // Here you can specify a mapping for model fields protected $mapping = [ 'properties' => [ 'title' => [ 'type' => 'text', // Also you can configure multi-fields, more details you can find here https://www.elastic.co/guide/en/elasticsearch/reference/current/multi-fields.html 'fields' => [ 'raw' => [ 'type' => 'keyword', ] ] ], ] ]; }
Each searchable model represents an Elasticsearch type.
By default a type name is the same as a table name, but you can set any type name you want through the searchableAs
method.
You can also specify fields which will be indexed by the driver through the toSearchableArray
method.
More information about these options you will find in the scout official documentation.
The last important option you can set in the MyModel
class is the $searchRules
property.
It allows you to set different search algorithms for a model.
We'll take a closer look at it in the search rules section.
After setting up a mapping in your model you can update an Elasticsearch type mapping:
php artisan elastic:update-mapping "App\MyModel"
Usage
Once you've created an index configurator, an Elasticsearch index itself and a searchable model, you are ready to go. Now you can index and search data according to the documentation.
Basic search usage example:
// set query string App\MyModel::search('phone') // specify columns to select ->select(['title', 'price']) // filter ->where('color', 'red') // sort ->orderBy('price', 'asc') // collapse by field ->collapse('brand') // set offset ->from(0) // set limit ->take(10) // get results ->get();
If you only need the number of matches for a query, use the count
method:
App\MyModel::search('phone') ->count();
If you need to load relations, use the with
method:
App\MyModel::search('phone') ->with('makers') ->get();
In addition to standard functionality the package offers you the possibility to filter data in Elasticsearch without specifying a query string:
App\MyModel::search('*') ->where('id', 1) ->get();
Also you can override model search rules:
App\MyModel::search('Brazil') ->rule(App\MySearchRule::class) ->get();
And use variety of where
conditions:
App\MyModel::search('*') ->whereRegexp('name.raw', 'A.+') ->where('age', '>=', 30) ->whereExists('unemployed') ->get();
And filter out results with a score less than min_score:
App\MyModel::search('sales') ->minScore(1.0) ->get();
At last, if you want to send a custom request, you can use the searchRaw
method:
App\MyModel::searchRaw([ 'query' => [ 'bool' => [ 'must' => [ 'match' => [ '_all' => 'Brazil' ] ] ] ] ]);
This query will return raw response.
Console commands
Available artisan commands are listed below:
For detailed description and all available options run php artisan help [command]
in the command line.
Search rules
A search rule is a class that describes how a search query will be executed. To create a search rule use the command:
php artisan make:search-rule MySearchRule
In the file app/MySearchRule.php
you will find a class definition:
<?php namespace App; use ScoutElastic\SearchRule; class MySearch extends SearchRule { // This method returns an array, describes how to highlight the results. // If null is returned, no highlighting will be used. public function buildHighlightPayload() { return [ 'fields' => [ 'name' => [ 'type' => 'plain' ] ] ]; } // This method returns an array, that represents bool query. public function buildQueryPayload() { return [ 'must' => [ 'match' => [ 'name' => $this->builder->query ] ] ]; } }
You can read more about bool queries here and about highlighting here.
The default search rule returns the following payload:
return [ 'must' => [ 'query_string' => [ 'query' => $this->builder->query ] ] ];
This means that by default when you call search
method on a model it tries to find the query string in any field.
To determine default search rules for a model just add a property:
<?php namespace App; use ScoutElastic\Searchable; use Illuminate\Database\Eloquent\Model; class MyModel extends Model { use Searchable; // You can set several rules for one model. In this case, the first not empty result will be returned. protected $searchRules = [ MySearchRule::class ]; }
You can also set a search rule in a query builder:
// You can set either a SearchRule class App\MyModel::search('Brazil') ->rule(App\MySearchRule::class) ->get(); // or a callable App\MyModel::search('Brazil') ->rule(function($builder) { return [ 'must' => [ 'match' => [ 'Country' => $builder->query ] ] ]; }) ->get();
To retrieve highlight, use model highlight
attribute:
// Let's say we highlight field `name` of `MyModel`. $model = App\MyModel::search('Brazil') ->rule(App\MySearchRule::class) ->first(); // Now you can get raw highlighted value: $model->highlight->name; // or string value: $model->highlight->nameAsString;
Available filters
You can use different types of filters:
In most cases it's better to use raw fields to filter records, i.e. not analyzed fields.
Zero downtime migration
As you might know, you can't change the type of already created field in Elasticsearch.
The only choice in such case is to create a new index with necessary mapping and import your models into the new index.
A migration can take quite a long time, so to avoid downtime during the process the driver reads from the old index and writes to the new one.
As soon as migration is over it starts reading from the new index and removes the old index.
This is how the artisan elastic:migrate
command works.
Before you run the command, make sure that your index configurator uses the ScoutElastic\Migratable
trait.
If it's not, add the trait and run the artisan elastic:update-index
command using your index configurator class name as an argument:
php artisan elastic:update-index "App\MyIndexConfigurator"
When you are ready, make changes in the model mapping and run the elastic:migrate
command using the model class as the first argument and desired index name as the second argument:
php artisan elastic:migrate "App\MyModel" my_index_v2
Note, that if you need just to add new fields in your mapping, use the elastic:update-mapping
command.
Debug
There are two methods that can help you to analyze results of a search query:
-
App\MyModel::search('Brazil') ->explain();
-
App\MyModel::search('Brazil') ->profile();
Both methods return raw data from ES.
Besides, you can get a query payload that will be sent to ES, by calling the buildPayload
method.
App\MyModel::search('Brazil') ->buildPayload();
Note, that this method returns a collection of payloads, because of possibility of using multiple search rules in one query.