chewy 7.4.0 → 7.5.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +8 -1
- data/README.md +23 -0
- data/lib/chewy/config.rb +3 -1
- data/lib/chewy/elastic_client.rb +31 -0
- data/lib/chewy/strategy/delayed_sidekiq/scheduler.rb +3 -0
- data/lib/chewy/strategy/delayed_sidekiq.rb +13 -0
- data/lib/chewy/version.rb +1 -1
- data/lib/chewy.rb +2 -6
- data/spec/chewy/elastic_client_spec.rb +26 -0
- data/spec/chewy/strategy/delayed_sidekiq_spec.rb +12 -0
- data/spec/chewy_spec.rb +7 -4
- metadata +4 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1b939ad8c84f1499caf873e2db0ba62794b785da0297604a38404c0f4f68a930
|
4
|
+
data.tar.gz: bba3a09f52a65c3433b385c227c2f900645b145fba18e11737d7a9b2958d51ef
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cb4f984274557d91d9d4d08306516ca4b0592bf97de3b3432585bfa9da14906d64d809da7803f19f36ba908cd8623843398e30bc78db22951cfb73015bf60a4f
|
7
|
+
data.tar.gz: 02ecef485783e555bd112240d74c75832779b8415aded37b8eb527357729e78053caead1615928fd1d54fa053a146779bb281d2bdf9f26f448c1ee680fea9bee
|
data/CHANGELOG.md
CHANGED
@@ -8,6 +8,13 @@
|
|
8
8
|
|
9
9
|
### Bugs Fixed
|
10
10
|
|
11
|
+
## 7.5.0 (2023-01-15)
|
12
|
+
|
13
|
+
### New Features
|
14
|
+
|
15
|
+
* [#894](https://github.com/toptal/chewy/pull/894): Way of cleaning redis from artifacts left by `delayed_sidekiq` strategy which could potentially cause flaky tests. ([@Drowze](https://github.com/Drowze))
|
16
|
+
* [#919](https://github.com/toptal/chewy/pull/919): Add pre-request filter ([@konalegi][https://github.com/konalegi])
|
17
|
+
|
11
18
|
## 7.4.0 (2023-12-13)
|
12
19
|
|
13
20
|
### New Features
|
@@ -18,7 +25,7 @@
|
|
18
25
|
|
19
26
|
### Bugs Fixed
|
20
27
|
|
21
|
-
## 7.3.
|
28
|
+
## 7.3.6 (2023-12-13)
|
22
29
|
|
23
30
|
### New Features
|
24
31
|
|
data/README.md
CHANGED
@@ -848,6 +848,12 @@ Explicit call of the reindex using `:delayed_sidekiq` strategy with `:update_fie
|
|
848
848
|
CitiesIndex.import([1, 2, 3], update_fields: [:name], strategy: :delayed_sidekiq)
|
849
849
|
```
|
850
850
|
|
851
|
+
While running tests with delayed_sidekiq strategy and Sidekiq is using a real redis instance that is NOT cleaned up in between tests (via e.g. `Sidekiq.redis(&:flushdb)`), you'll want to cleanup some redis keys in between tests to avoid state leaking and flaky tests. Chewy provides a convenience method for that:
|
852
|
+
```ruby
|
853
|
+
# it might be a good idea to also add to your testing setup, e.g.: a rspec `before` hook
|
854
|
+
Chewy::Strategy::DelayedSidekiq.clear_timechunks!
|
855
|
+
```
|
856
|
+
|
851
857
|
#### `:active_job`
|
852
858
|
|
853
859
|
This does the same thing as `:atomic`, but using ActiveJob. This will inherit the ActiveJob configuration settings including the `active_job.queue_adapter` setting for the environment. Patch `Chewy::Strategy::ActiveJob::Worker` for index updates improving.
|
@@ -1275,6 +1281,23 @@ If you use `DatabaseCleaner` in your tests with [the `transaction` strategy](htt
|
|
1275
1281
|
Chewy.use_after_commit_callbacks = !Rails.env.test?
|
1276
1282
|
```
|
1277
1283
|
|
1284
|
+
### Pre-request Filter
|
1285
|
+
|
1286
|
+
Should you need to inspect the query prior to it being dispatched to ElasticSearch during any queries, you can use the `before_es_request_filter`. `before_es_request_filter` is a callable object, as demonstrated below:
|
1287
|
+
|
1288
|
+
```ruby
|
1289
|
+
Chewy.before_es_request_filter = -> (method_name, args, kw_args) { ... }
|
1290
|
+
```
|
1291
|
+
|
1292
|
+
While using the `before_es_request_filter`, please consider the following:
|
1293
|
+
|
1294
|
+
* `before_es_request_filter` acts as a simple proxy before any request made via the `ElasticSearch::Client`. The arguments passed to this filter include:
|
1295
|
+
* `method_name` - The name of the method being called. Examples are search, count, bulk and etc.
|
1296
|
+
* `args` and `kw_args` - These are the positional arguments provided in the method call.
|
1297
|
+
* The operation is synchronous, so avoid executing any heavy or time-consuming operations within the filter to prevent performance degradation.
|
1298
|
+
* The return value of the proc is disregarded. This filter is intended for inspection or modification of the query rather than generating a response.
|
1299
|
+
* Any exception raised inside the callback will propagate upward and halt the execution of the query. It is essential to handle potential errors adequately to ensure the stability of your search functionality.
|
1300
|
+
|
1278
1301
|
## Contributing
|
1279
1302
|
|
1280
1303
|
1. Fork it (http://github.com/toptal/chewy/fork)
|
data/lib/chewy/config.rb
CHANGED
@@ -38,7 +38,9 @@ module Chewy
|
|
38
38
|
# for type mappings like `_all`.
|
39
39
|
:default_root_options,
|
40
40
|
# Default field type for any field in any Chewy type. Defaults to 'text'.
|
41
|
-
:default_field_type
|
41
|
+
:default_field_type,
|
42
|
+
# Callback called on each search request to be done into ES
|
43
|
+
:before_es_request_filter
|
42
44
|
|
43
45
|
attr_reader :transport_logger, :transport_tracer,
|
44
46
|
# Chewy search request DSL base class, used by every index.
|
@@ -0,0 +1,31 @@
|
|
1
|
+
module Chewy
|
2
|
+
# Replacement for Chewy.client
|
3
|
+
class ElasticClient
|
4
|
+
def self.build_es_client(configuration = Chewy.configuration)
|
5
|
+
client_configuration = configuration.deep_dup
|
6
|
+
client_configuration.delete(:prefix) # used by Chewy, not relevant to Elasticsearch::Client
|
7
|
+
block = client_configuration[:transport_options].try(:delete, :proc)
|
8
|
+
::Elasticsearch::Client.new(client_configuration, &block)
|
9
|
+
end
|
10
|
+
|
11
|
+
def initialize(elastic_client = self.class.build_es_client)
|
12
|
+
@elastic_client = elastic_client
|
13
|
+
end
|
14
|
+
|
15
|
+
private
|
16
|
+
|
17
|
+
def method_missing(name, *args, **kwargs, &block)
|
18
|
+
inspect_payload(name, args, kwargs)
|
19
|
+
|
20
|
+
@elastic_client.__send__(name, *args, **kwargs, &block)
|
21
|
+
end
|
22
|
+
|
23
|
+
def respond_to_missing?(name, _include_private = false)
|
24
|
+
@elastic_client.respond_to?(name) || super
|
25
|
+
end
|
26
|
+
|
27
|
+
def inspect_payload(name, args, kwargs)
|
28
|
+
Chewy.config.before_es_request_filter&.call(name, args, kwargs)
|
29
|
+
end
|
30
|
+
end
|
31
|
+
end
|
@@ -18,6 +18,7 @@ module Chewy
|
|
18
18
|
DEFAULT_MARGIN = 2
|
19
19
|
DEFAULT_QUEUE = 'chewy'
|
20
20
|
KEY_PREFIX = 'chewy:delayed_sidekiq'
|
21
|
+
ALL_SETS_KEY = "#{KEY_PREFIX}:all_sets".freeze
|
21
22
|
FALLBACK_FIELDS = 'all'
|
22
23
|
FIELDS_IDS_SEPARATOR = ';'
|
23
24
|
IDS_SEPARATOR = ','
|
@@ -68,8 +69,10 @@ module Chewy
|
|
68
69
|
::Sidekiq.redis do |redis|
|
69
70
|
# warning: Redis#sadd will always return an Integer in Redis 5.0.0. Use Redis#sadd? instead
|
70
71
|
if redis.respond_to?(:sadd?)
|
72
|
+
redis.sadd?(ALL_SETS_KEY, timechunks_key)
|
71
73
|
redis.sadd?(timechunk_key, serialize_data)
|
72
74
|
else
|
75
|
+
redis.sadd(ALL_SETS_KEY, timechunks_key)
|
73
76
|
redis.sadd(timechunk_key, serialize_data)
|
74
77
|
end
|
75
78
|
|
@@ -5,6 +5,19 @@ module Chewy
|
|
5
5
|
class DelayedSidekiq < Sidekiq
|
6
6
|
require_relative 'delayed_sidekiq/scheduler'
|
7
7
|
|
8
|
+
# cleanup the redis sets used internally. Useful mainly in tests to avoid
|
9
|
+
# leak and potential flaky tests.
|
10
|
+
def self.clear_timechunks!
|
11
|
+
::Sidekiq.redis do |redis|
|
12
|
+
timechunk_sets = redis.smembers(Chewy::Strategy::DelayedSidekiq::Scheduler::ALL_SETS_KEY)
|
13
|
+
break if timechunk_sets.empty?
|
14
|
+
|
15
|
+
redis.pipelined do |pipeline|
|
16
|
+
timechunk_sets.each { |set| pipeline.del(set) }
|
17
|
+
end
|
18
|
+
end
|
19
|
+
end
|
20
|
+
|
8
21
|
def leave
|
9
22
|
@stash.each do |type, ids|
|
10
23
|
next if ids.empty?
|
data/lib/chewy/version.rb
CHANGED
data/lib/chewy.rb
CHANGED
@@ -49,6 +49,7 @@ require 'chewy/fields/base'
|
|
49
49
|
require 'chewy/fields/root'
|
50
50
|
require 'chewy/journal'
|
51
51
|
require 'chewy/railtie' if defined?(Rails::Railtie)
|
52
|
+
require 'chewy/elastic_client'
|
52
53
|
|
53
54
|
ActiveSupport.on_load(:active_record) do
|
54
55
|
include Chewy::Index::Observe::ActiveRecordMethods
|
@@ -97,12 +98,7 @@ module Chewy
|
|
97
98
|
# Main elasticsearch-ruby client instance
|
98
99
|
#
|
99
100
|
def client
|
100
|
-
Chewy.current[:chewy_client] ||=
|
101
|
-
client_configuration = configuration.deep_dup
|
102
|
-
client_configuration.delete(:prefix) # used by Chewy, not relevant to Elasticsearch::Client
|
103
|
-
block = client_configuration[:transport_options].try(:delete, :proc)
|
104
|
-
::Elasticsearch::Client.new(client_configuration, &block)
|
105
|
-
end
|
101
|
+
Chewy.current[:chewy_client] ||= Chewy::ElasticClient.new
|
106
102
|
end
|
107
103
|
|
108
104
|
# Sends wait_for_status request to ElasticSearch with status
|
@@ -0,0 +1,26 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe Chewy::ElasticClient do
|
4
|
+
describe 'payload inspection' do
|
5
|
+
let(:filter) { instance_double('Proc') }
|
6
|
+
let!(:filter_previous_value) { Chewy.before_es_request_filter }
|
7
|
+
|
8
|
+
before do
|
9
|
+
Chewy.massacre
|
10
|
+
stub_index(:products) do
|
11
|
+
field :id, type: :integer
|
12
|
+
end
|
13
|
+
ProductsIndex.create
|
14
|
+
Chewy.before_es_request_filter = filter
|
15
|
+
end
|
16
|
+
|
17
|
+
after do
|
18
|
+
Chewy.before_es_request_filter = filter_previous_value
|
19
|
+
end
|
20
|
+
|
21
|
+
it 'call filter with the request body' do
|
22
|
+
expect(filter).to receive(:call).with(:search, [{body: {size: 0}, index: ['products']}], {})
|
23
|
+
Chewy.client.search({index: ['products'], body: {size: 0}}).to_a
|
24
|
+
end
|
25
|
+
end
|
26
|
+
end
|
@@ -186,5 +186,17 @@ if defined?(Sidekiq)
|
|
186
186
|
end
|
187
187
|
end
|
188
188
|
end
|
189
|
+
|
190
|
+
describe '#clear_delayed_sidekiq_timechunks test helper' do
|
191
|
+
it 'clears redis from the timechunk sorted sets to avoid leak between tests' do
|
192
|
+
timechunks_set = -> { Sidekiq.redis { |redis| redis.zrange('chewy:delayed_sidekiq:CitiesIndex:timechunks', 0, -1) } }
|
193
|
+
|
194
|
+
expect { CitiesIndex.import!([1], strategy: :delayed_sidekiq) }
|
195
|
+
.to change { timechunks_set.call.size }.by(1)
|
196
|
+
|
197
|
+
expect { Chewy::Strategy::DelayedSidekiq.clear_timechunks! }
|
198
|
+
.to change { timechunks_set.call.size }.to(0)
|
199
|
+
end
|
200
|
+
end
|
189
201
|
end
|
190
202
|
end
|
data/spec/chewy_spec.rb
CHANGED
@@ -57,18 +57,21 @@ describe Chewy do
|
|
57
57
|
|
58
58
|
before do
|
59
59
|
Chewy.current[:chewy_client] = nil
|
60
|
-
|
60
|
+
end
|
61
|
+
|
62
|
+
specify do
|
63
|
+
expect(Chewy).to receive_messages(configuration: {transport_options: {proc: faraday_block}})
|
61
64
|
|
62
|
-
|
65
|
+
expect(Elasticsearch::Client).to receive(:new).with(expected_client_config) do |*_args, &passed_block|
|
63
66
|
# RSpec's `with(..., &block)` was used previously, but doesn't actually do
|
64
67
|
# any verification of the passed block (even of its presence).
|
65
68
|
expect(passed_block.source_location).to eq(faraday_block.source_location)
|
66
69
|
|
67
70
|
mock_client
|
68
71
|
end
|
69
|
-
end
|
70
72
|
|
71
|
-
|
73
|
+
expect(Chewy.client).to be_a(Chewy::ElasticClient)
|
74
|
+
end
|
72
75
|
|
73
76
|
after { Chewy.current[:chewy_client] = initial_client }
|
74
77
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: chewy
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 7.
|
4
|
+
version: 7.5.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Toptal, LLC
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date:
|
12
|
+
date: 2024-01-15 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: activesupport
|
@@ -95,6 +95,7 @@ files:
|
|
95
95
|
- gemfiles/rails.7.1.activerecord.gemfile
|
96
96
|
- lib/chewy.rb
|
97
97
|
- lib/chewy/config.rb
|
98
|
+
- lib/chewy/elastic_client.rb
|
98
99
|
- lib/chewy/errors.rb
|
99
100
|
- lib/chewy/fields/base.rb
|
100
101
|
- lib/chewy/fields/root.rb
|
@@ -204,6 +205,7 @@ files:
|
|
204
205
|
- lib/tasks/chewy.rake
|
205
206
|
- migration_guide.md
|
206
207
|
- spec/chewy/config_spec.rb
|
208
|
+
- spec/chewy/elastic_client_spec.rb
|
207
209
|
- spec/chewy/fields/base_spec.rb
|
208
210
|
- spec/chewy/fields/root_spec.rb
|
209
211
|
- spec/chewy/fields/time_fields_spec.rb
|