ElasticRecord
ElasticRecord is an Elasticsearch 6.x and 7.x ORM.
Setup
Include ElasticRecord into your model:
class Product < ActiveRecord::Base
include ElasticRecord::Model
end
Connection
There are two ways to set up which server to connect to:
ElasticRecord.configure do |config|
config.servers = "es1.example.com:9200"
end
development:
servers: es1.example.com:9200
timeout: 10
retries: 2
Search API
ElasticRecord adds the method 'elastic_search' to your models. It works similar to active_record scoping:
search = Product.elastic_search
Filtering
If a simple hash is passed into filter, a term or terms query is created:
search.filter(color: 'red')
search.filter(color: %w(red blue))
search.filter(color: nil)
If a hash containing hashes is passed into filter, it is used directly as a filter DSL expression:
search.filter(prefix: { name: "Sca" })
An Arelastic object can also be passed in, working similarily to Arel:
search.filter(Product.arelastic[:name].prefix("Sca"))
search.filter(Product.arelastic[:name].prefix("Sca").negate)
search.filter(Product.arelastic[:size].gt(5))
Helpful Arel builders can be found at https://github.com/matthuhiggins/arelastic/blob/master/lib/arelastic/builders/filter.rb.
Querying
To create a query string, pass a string to search.query:
search.query("red AND fun*")
Complex queries are done using either a hash or an arelastic object:
search.query(match: {description: "amazing"})
Ordering
search.order(:price)
search.order(:color, :price)
search.order(price: :desc)
Offsets and Limits
To change the 'size' and 'from' values of a query, use offset and limit:
search.limit(40).offset(80)
Aggregations
Aggregations are added with the aggregate method:
search.aggregate('popular_colors' => {'terms' => {'field' => 'color'}})
Results are retrieved at query time within aggregations
:
search = search.aggregate('popular_colors' => {'terms' => {'field' => 'color'}})
search.aggregations['popular_colors'].buckets
Getting Results
A search object behaves similar to an active_record scope, implementing a few methods of its own and delegating the rest to Array, and your class.
search.count
search.first
search.find(id)
search.as_elastic
The search object behaves like an array when necessary:
search.each do |product|
...
end
Class methods can be executed within scopes:
class Product
def self.increase_prices
all.each do { |product| product.increment(:price, 10) }
end
end
Product.filter(color: 'red').increase_prices
Percolators
ElasticRecord supports representing query documents as a model. Queries are registered and unregistered as query models are created and destroyed.
First, include ElasticRecord::PercolatorModel
into your model. Specify the target model to percolate and how the model should be indexed as an ElasticSearch query.
class ProductQuery
include ElasticRecord::PercolatorModel
self.percolates_model = Product
def as_search_document
Product.filter(status: status).as_elastic
end
end
Use the percolate
method to find records with queries that match.
product = Product.new(price: 5.99)
matching_product_queries = ProductQuery.percolate(product)
Index Configuration
To avoid elasticsearch dynamically mapping fields, you can directly configure elastic_index.mapping
and elastic_index.settings
:
class Product
include ElasticRecord::Model
elastic_index.mapping = {
properties: {
name: {type: "text"},
status: {type: "keyword"}
}
}
end
Mapping types will be removed in ElasticSearch 7.x. To rename the default mapping type (_doc
), use elastic_index.mapping_type
:
class Product
include ElasticRecord::Model
elastic_index.mapping_type = 'product'
end
Inheritance
When one model inherits from another, ElasticRecord makes some assumptions about how the child index should be configured. By default:
alias_name
- Same as parentmapping
- Same as parentmapping_type
- Same as parentsettings
- Same as parent
These can all be overridden. For instance, it might be desirable for the child documents to be in a separate index.
Load Documents from Source
To fetch documents without an additional request to a backing ActiveRecord database you can load the documents from _source
.
Product.elastic_index.loading_from_source do
Product.elastic_search.filter(name: "Pizza")
end
Call load_from_source!
to configure an index without ActiveRecord. Finder methods will be
delegated to the ElasticRecord module.
class Product
include ActiveModel::Model
include ElasticRecord::Record
elastic_index.load_from_source!
end
Index Management
If you need to manage multiple indexes via the rake tasks, you will need to declare them explicitly:
ElasticRecord.configure do |config|
config.model_names = %w(Product Order Location)
end
Create the index:
rake index:create CLASS=Product
Index Admin Functions
Core and Index APIs can be accessed with Product.elastic_index. Some examples include:
Product.elastic_index.create_and_deploy
Product.elastic_index.reset
Product.elastic_index.refresh
Product.elastic_index.get_mapping