chewy 0.8.4 → 5.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/.gitignore +1 -0
- data/.rubocop.yml +56 -0
- data/.rubocop_todo.yml +44 -0
- data/.travis.yml +36 -67
- data/.yardopts +5 -0
- data/Appraisals +63 -58
- data/CHANGELOG.md +168 -11
- data/Gemfile +16 -9
- data/Guardfile +5 -5
- data/LEGACY_DSL.md +497 -0
- data/README.md +403 -470
- data/Rakefile +11 -1
- data/chewy.gemspec +12 -15
- data/gemfiles/rails.4.0.activerecord.gemfile +9 -9
- data/gemfiles/rails.4.1.activerecord.gemfile +9 -9
- data/gemfiles/rails.4.2.activerecord.gemfile +8 -8
- data/gemfiles/rails.4.2.mongoid.5.2.gemfile +16 -0
- data/gemfiles/rails.5.0.activerecord.gemfile +16 -0
- data/gemfiles/rails.5.0.mongoid.6.1.gemfile +16 -0
- data/gemfiles/rails.5.1.activerecord.gemfile +16 -0
- data/gemfiles/rails.5.1.mongoid.6.3.gemfile +16 -0
- data/gemfiles/rails.5.2.activerecord.gemfile +16 -0
- data/gemfiles/sequel.4.45.gemfile +11 -0
- data/lib/chewy/backports/deep_dup.rb +1 -1
- data/lib/chewy/backports/duplicable.rb +1 -0
- data/lib/chewy/config.rb +53 -21
- data/lib/chewy/errors.rb +6 -6
- data/lib/chewy/fields/base.rb +59 -29
- data/lib/chewy/fields/root.rb +49 -14
- data/lib/chewy/index/actions.rb +95 -36
- data/lib/chewy/index/aliases.rb +2 -1
- data/lib/chewy/index/settings.rb +10 -5
- data/lib/chewy/index/specification.rb +60 -0
- data/lib/chewy/index.rb +239 -138
- data/lib/chewy/journal.rb +55 -0
- data/lib/chewy/log_subscriber.rb +8 -8
- data/lib/chewy/minitest/helpers.rb +77 -0
- data/lib/chewy/minitest/search_index_receiver.rb +80 -0
- data/lib/chewy/minitest.rb +1 -0
- data/lib/chewy/query/compose.rb +18 -19
- data/lib/chewy/query/criteria.rb +34 -24
- data/lib/chewy/query/filters.rb +28 -11
- data/lib/chewy/query/loading.rb +3 -4
- data/lib/chewy/query/nodes/and.rb +1 -1
- data/lib/chewy/query/nodes/base.rb +1 -1
- data/lib/chewy/query/nodes/bool.rb +6 -4
- data/lib/chewy/query/nodes/equal.rb +4 -4
- data/lib/chewy/query/nodes/exists.rb +1 -1
- data/lib/chewy/query/nodes/expr.rb +2 -2
- data/lib/chewy/query/nodes/field.rb +35 -31
- data/lib/chewy/query/nodes/has_child.rb +1 -0
- data/lib/chewy/query/nodes/has_parent.rb +1 -0
- data/lib/chewy/query/nodes/has_relation.rb +10 -12
- data/lib/chewy/query/nodes/missing.rb +1 -1
- data/lib/chewy/query/nodes/not.rb +1 -1
- data/lib/chewy/query/nodes/or.rb +1 -1
- data/lib/chewy/query/nodes/prefix.rb +3 -2
- data/lib/chewy/query/nodes/query.rb +1 -1
- data/lib/chewy/query/nodes/range.rb +9 -9
- data/lib/chewy/query/nodes/raw.rb +1 -1
- data/lib/chewy/query/nodes/regexp.rb +13 -9
- data/lib/chewy/query/nodes/script.rb +4 -4
- data/lib/chewy/query/pagination.rb +10 -1
- data/lib/chewy/query.rb +286 -170
- data/lib/chewy/railtie.rb +7 -6
- data/lib/chewy/rake_helper.rb +275 -37
- data/lib/chewy/repository.rb +2 -2
- data/lib/chewy/rspec/update_index.rb +70 -65
- data/lib/chewy/rspec.rb +1 -1
- data/lib/chewy/runtime/version.rb +4 -4
- data/lib/chewy/search/loader.rb +83 -0
- data/lib/chewy/{query → search}/pagination/kaminari.rb +13 -5
- data/lib/chewy/search/pagination/will_paginate.rb +43 -0
- data/lib/chewy/search/parameters/aggs.rb +16 -0
- data/lib/chewy/search/parameters/allow_partial_search_results.rb +27 -0
- data/lib/chewy/search/parameters/concerns/bool_storage.rb +24 -0
- data/lib/chewy/search/parameters/concerns/hash_storage.rb +23 -0
- data/lib/chewy/search/parameters/concerns/integer_storage.rb +14 -0
- data/lib/chewy/search/parameters/concerns/query_storage.rb +238 -0
- data/lib/chewy/search/parameters/concerns/string_array_storage.rb +23 -0
- data/lib/chewy/search/parameters/concerns/string_storage.rb +14 -0
- data/lib/chewy/search/parameters/docvalue_fields.rb +12 -0
- data/lib/chewy/search/parameters/explain.rb +16 -0
- data/lib/chewy/search/parameters/filter.rb +47 -0
- data/lib/chewy/search/parameters/highlight.rb +16 -0
- data/lib/chewy/search/parameters/indices.rb +123 -0
- data/lib/chewy/search/parameters/indices_boost.rb +52 -0
- data/lib/chewy/search/parameters/limit.rb +17 -0
- data/lib/chewy/search/parameters/load.rb +32 -0
- data/lib/chewy/search/parameters/min_score.rb +16 -0
- data/lib/chewy/search/parameters/none.rb +27 -0
- data/lib/chewy/search/parameters/offset.rb +17 -0
- data/lib/chewy/search/parameters/order.rb +64 -0
- data/lib/chewy/search/parameters/post_filter.rb +19 -0
- data/lib/chewy/search/parameters/preference.rb +16 -0
- data/lib/chewy/search/parameters/profile.rb +16 -0
- data/lib/chewy/search/parameters/query.rb +19 -0
- data/lib/chewy/search/parameters/request_cache.rb +27 -0
- data/lib/chewy/search/parameters/rescore.rb +29 -0
- data/lib/chewy/search/parameters/script_fields.rb +16 -0
- data/lib/chewy/search/parameters/search_after.rb +20 -0
- data/lib/chewy/search/parameters/search_type.rb +16 -0
- data/lib/chewy/search/parameters/source.rb +73 -0
- data/lib/chewy/search/parameters/storage.rb +95 -0
- data/lib/chewy/search/parameters/stored_fields.rb +63 -0
- data/lib/chewy/search/parameters/suggest.rb +16 -0
- data/lib/chewy/search/parameters/terminate_after.rb +16 -0
- data/lib/chewy/search/parameters/timeout.rb +16 -0
- data/lib/chewy/search/parameters/track_scores.rb +16 -0
- data/lib/chewy/search/parameters/types.rb +20 -0
- data/lib/chewy/search/parameters/version.rb +16 -0
- data/lib/chewy/search/parameters.rb +167 -0
- data/lib/chewy/search/query_proxy.rb +257 -0
- data/lib/chewy/search/request.rb +1045 -0
- data/lib/chewy/search/response.rb +119 -0
- data/lib/chewy/search/scoping.rb +50 -0
- data/lib/chewy/search/scrolling.rb +134 -0
- data/lib/chewy/search.rb +81 -26
- data/lib/chewy/stash.rb +79 -0
- data/lib/chewy/strategy/active_job.rb +1 -0
- data/lib/chewy/strategy/atomic.rb +2 -4
- data/lib/chewy/strategy/base.rb +4 -4
- data/lib/chewy/strategy/bypass.rb +1 -2
- data/lib/chewy/strategy/resque.rb +1 -0
- data/lib/chewy/strategy/shoryuken.rb +40 -0
- data/lib/chewy/strategy/sidekiq.rb +13 -1
- data/lib/chewy/strategy/urgent.rb +1 -1
- data/lib/chewy/strategy.rb +19 -10
- data/lib/chewy/type/actions.rb +26 -2
- data/lib/chewy/type/adapter/active_record.rb +50 -24
- data/lib/chewy/type/adapter/base.rb +29 -9
- data/lib/chewy/type/adapter/mongoid.rb +19 -10
- data/lib/chewy/type/adapter/object.rb +195 -31
- data/lib/chewy/type/adapter/orm.rb +69 -33
- data/lib/chewy/type/adapter/sequel.rb +37 -19
- data/lib/chewy/type/crutch.rb +5 -4
- data/lib/chewy/type/import/bulk_builder.rb +122 -0
- data/lib/chewy/type/import/bulk_request.rb +78 -0
- data/lib/chewy/type/import/journal_builder.rb +45 -0
- data/lib/chewy/type/import/routine.rb +138 -0
- data/lib/chewy/type/import.rb +150 -176
- data/lib/chewy/type/mapping.rb +58 -42
- data/lib/chewy/type/observe.rb +21 -15
- data/lib/chewy/type/syncer.rb +222 -0
- data/lib/chewy/type/witchcraft.rb +89 -34
- data/lib/chewy/type/wrapper.rb +48 -16
- data/lib/chewy/type.rb +77 -49
- data/lib/chewy/version.rb +1 -1
- data/lib/chewy.rb +95 -52
- data/lib/generators/chewy/install_generator.rb +3 -3
- data/lib/sequel/plugins/chewy_observe.rb +4 -19
- data/lib/tasks/chewy.rake +91 -28
- data/spec/chewy/config_spec.rb +130 -12
- data/spec/chewy/fields/base_spec.rb +194 -172
- data/spec/chewy/fields/root_spec.rb +123 -17
- data/spec/chewy/fields/time_fields_spec.rb +10 -9
- data/spec/chewy/index/actions_spec.rb +228 -43
- data/spec/chewy/index/aliases_spec.rb +2 -2
- data/spec/chewy/index/settings_spec.rb +100 -49
- data/spec/chewy/index/specification_spec.rb +169 -0
- data/spec/chewy/index_spec.rb +159 -63
- data/spec/chewy/journal_spec.rb +268 -0
- data/spec/chewy/minitest/helpers_spec.rb +90 -0
- data/spec/chewy/minitest/search_index_receiver_spec.rb +120 -0
- data/spec/chewy/query/criteria_spec.rb +503 -236
- data/spec/chewy/query/filters_spec.rb +96 -68
- data/spec/chewy/query/loading_spec.rb +80 -42
- data/spec/chewy/query/nodes/and_spec.rb +3 -7
- data/spec/chewy/query/nodes/bool_spec.rb +5 -13
- data/spec/chewy/query/nodes/equal_spec.rb +20 -20
- data/spec/chewy/query/nodes/exists_spec.rb +7 -7
- data/spec/chewy/query/nodes/has_child_spec.rb +42 -23
- data/spec/chewy/query/nodes/has_parent_spec.rb +42 -23
- data/spec/chewy/query/nodes/match_all_spec.rb +2 -2
- data/spec/chewy/query/nodes/missing_spec.rb +6 -5
- data/spec/chewy/query/nodes/not_spec.rb +5 -7
- data/spec/chewy/query/nodes/or_spec.rb +3 -7
- data/spec/chewy/query/nodes/prefix_spec.rb +6 -6
- data/spec/chewy/query/nodes/query_spec.rb +3 -3
- data/spec/chewy/query/nodes/range_spec.rb +19 -19
- data/spec/chewy/query/nodes/raw_spec.rb +2 -2
- data/spec/chewy/query/nodes/regexp_spec.rb +31 -19
- data/spec/chewy/query/nodes/script_spec.rb +5 -5
- data/spec/chewy/query/pagination/kaminari_spec.rb +3 -55
- data/spec/chewy/query/pagination/will_paginate_spec.rb +5 -0
- data/spec/chewy/query/pagination_spec.rb +25 -22
- data/spec/chewy/query_spec.rb +510 -505
- data/spec/chewy/rake_helper_spec.rb +381 -0
- data/spec/chewy/repository_spec.rb +8 -8
- data/spec/chewy/rspec/update_index_spec.rb +215 -113
- data/spec/chewy/runtime_spec.rb +2 -2
- data/spec/chewy/search/loader_spec.rb +117 -0
- data/spec/chewy/search/pagination/kaminari_examples.rb +71 -0
- data/spec/chewy/search/pagination/kaminari_spec.rb +21 -0
- data/spec/chewy/search/pagination/will_paginate_examples.rb +63 -0
- data/spec/chewy/search/pagination/will_paginate_spec.rb +23 -0
- data/spec/chewy/search/parameters/aggs_spec.rb +5 -0
- data/spec/chewy/search/parameters/bool_storage_examples.rb +53 -0
- data/spec/chewy/search/parameters/docvalue_fields_spec.rb +5 -0
- data/spec/chewy/search/parameters/explain_spec.rb +5 -0
- data/spec/chewy/search/parameters/filter_spec.rb +5 -0
- data/spec/chewy/search/parameters/hash_storage_examples.rb +59 -0
- data/spec/chewy/search/parameters/highlight_spec.rb +5 -0
- data/spec/chewy/search/parameters/indices_spec.rb +191 -0
- data/spec/chewy/search/parameters/integer_storage_examples.rb +32 -0
- data/spec/chewy/search/parameters/limit_spec.rb +5 -0
- data/spec/chewy/search/parameters/load_spec.rb +60 -0
- data/spec/chewy/search/parameters/min_score_spec.rb +32 -0
- data/spec/chewy/search/parameters/none_spec.rb +5 -0
- data/spec/chewy/search/parameters/offset_spec.rb +5 -0
- data/spec/chewy/search/parameters/order_spec.rb +65 -0
- data/spec/chewy/search/parameters/post_filter_spec.rb +5 -0
- data/spec/chewy/search/parameters/preference_spec.rb +5 -0
- data/spec/chewy/search/parameters/profile_spec.rb +5 -0
- data/spec/chewy/search/parameters/query_spec.rb +5 -0
- data/spec/chewy/search/parameters/query_storage_examples.rb +388 -0
- data/spec/chewy/search/parameters/request_cache_spec.rb +67 -0
- data/spec/chewy/search/parameters/rescore_spec.rb +62 -0
- data/spec/chewy/search/parameters/script_fields_spec.rb +5 -0
- data/spec/chewy/search/parameters/search_after_spec.rb +32 -0
- data/spec/chewy/search/parameters/search_type_spec.rb +5 -0
- data/spec/chewy/search/parameters/source_spec.rb +156 -0
- data/spec/chewy/search/parameters/storage_spec.rb +60 -0
- data/spec/chewy/search/parameters/stored_fields_spec.rb +126 -0
- data/spec/chewy/search/parameters/string_array_storage_examples.rb +63 -0
- data/spec/chewy/search/parameters/string_storage_examples.rb +32 -0
- data/spec/chewy/search/parameters/suggest_spec.rb +5 -0
- data/spec/chewy/search/parameters/terminate_after_spec.rb +5 -0
- data/spec/chewy/search/parameters/timeout_spec.rb +5 -0
- data/spec/chewy/search/parameters/track_scores_spec.rb +5 -0
- data/spec/chewy/search/parameters/types_spec.rb +5 -0
- data/spec/chewy/search/parameters/version_spec.rb +5 -0
- data/spec/chewy/search/parameters_spec.rb +145 -0
- data/spec/chewy/search/query_proxy_spec.rb +68 -0
- data/spec/chewy/search/request_spec.rb +685 -0
- data/spec/chewy/search/response_spec.rb +192 -0
- data/spec/chewy/search/scrolling_spec.rb +169 -0
- data/spec/chewy/search_spec.rb +37 -20
- data/spec/chewy/stash_spec.rb +95 -0
- data/spec/chewy/strategy/active_job_spec.rb +8 -2
- data/spec/chewy/strategy/atomic_spec.rb +4 -1
- data/spec/chewy/strategy/resque_spec.rb +8 -2
- data/spec/chewy/strategy/shoryuken_spec.rb +66 -0
- data/spec/chewy/strategy/sidekiq_spec.rb +10 -2
- data/spec/chewy/strategy_spec.rb +6 -6
- data/spec/chewy/type/actions_spec.rb +29 -10
- data/spec/chewy/type/adapter/active_record_spec.rb +357 -139
- data/spec/chewy/type/adapter/mongoid_spec.rb +220 -101
- data/spec/chewy/type/adapter/object_spec.rb +129 -40
- data/spec/chewy/type/adapter/sequel_spec.rb +304 -152
- data/spec/chewy/type/import/bulk_builder_spec.rb +279 -0
- data/spec/chewy/type/import/bulk_request_spec.rb +102 -0
- data/spec/chewy/type/import/journal_builder_spec.rb +95 -0
- data/spec/chewy/type/import/routine_spec.rb +110 -0
- data/spec/chewy/type/import_spec.rb +360 -244
- data/spec/chewy/type/mapping_spec.rb +96 -29
- data/spec/chewy/type/observe_spec.rb +25 -15
- data/spec/chewy/type/syncer_spec.rb +123 -0
- data/spec/chewy/type/witchcraft_spec.rb +122 -44
- data/spec/chewy/type/wrapper_spec.rb +63 -23
- data/spec/chewy/type_spec.rb +32 -10
- data/spec/chewy_spec.rb +82 -12
- data/spec/spec_helper.rb +16 -2
- data/spec/support/active_record.rb +6 -2
- data/spec/support/class_helpers.rb +4 -19
- data/spec/support/mongoid.rb +17 -5
- data/spec/support/sequel.rb +6 -1
- metadata +250 -57
- data/gemfiles/rails.3.2.activerecord.gemfile +0 -15
- data/gemfiles/rails.3.2.activerecord.kaminari.gemfile +0 -14
- data/gemfiles/rails.3.2.activerecord.will_paginate.gemfile +0 -14
- data/gemfiles/rails.4.0.activerecord.kaminari.gemfile +0 -14
- data/gemfiles/rails.4.0.activerecord.will_paginate.gemfile +0 -14
- data/gemfiles/rails.4.0.mongoid.4.0.0.gemfile +0 -15
- data/gemfiles/rails.4.0.mongoid.4.0.0.kaminari.gemfile +0 -14
- data/gemfiles/rails.4.0.mongoid.4.0.0.will_paginate.gemfile +0 -14
- data/gemfiles/rails.4.0.mongoid.5.1.0.gemfile +0 -15
- data/gemfiles/rails.4.0.mongoid.5.1.0.kaminari.gemfile +0 -14
- data/gemfiles/rails.4.0.mongoid.5.1.0.will_paginate.gemfile +0 -14
- data/gemfiles/rails.4.1.activerecord.kaminari.gemfile +0 -14
- data/gemfiles/rails.4.1.activerecord.will_paginate.gemfile +0 -14
- data/gemfiles/rails.4.1.mongoid.4.0.0.gemfile +0 -15
- data/gemfiles/rails.4.1.mongoid.4.0.0.kaminari.gemfile +0 -14
- data/gemfiles/rails.4.1.mongoid.4.0.0.will_paginate.gemfile +0 -14
- data/gemfiles/rails.4.1.mongoid.5.1.0.gemfile +0 -15
- data/gemfiles/rails.4.1.mongoid.5.1.0.kaminari.gemfile +0 -14
- data/gemfiles/rails.4.1.mongoid.5.1.0.will_paginate.gemfile +0 -14
- data/gemfiles/rails.4.2.activerecord.kaminari.gemfile +0 -15
- data/gemfiles/rails.4.2.activerecord.will_paginate.gemfile +0 -15
- data/gemfiles/rails.4.2.mongoid.4.0.0.gemfile +0 -15
- data/gemfiles/rails.4.2.mongoid.4.0.0.kaminari.gemfile +0 -14
- data/gemfiles/rails.4.2.mongoid.4.0.0.will_paginate.gemfile +0 -14
- data/gemfiles/rails.4.2.mongoid.5.1.0.gemfile +0 -15
- data/gemfiles/rails.4.2.mongoid.5.1.0.kaminari.gemfile +0 -14
- data/gemfiles/rails.4.2.mongoid.5.1.0.will_paginate.gemfile +0 -14
- data/gemfiles/rails.5.0.0.beta3.activerecord.gemfile +0 -16
- data/gemfiles/rails.5.0.0.beta3.activerecord.kaminari.gemfile +0 -16
- data/gemfiles/rails.5.0.0.beta3.activerecord.will_paginate.gemfile +0 -15
- data/gemfiles/sequel.4.31.gemfile +0 -13
- data/lib/chewy/query/pagination/will_paginate.rb +0 -27
- data/lib/chewy/query/scoping.rb +0 -20
- data/spec/chewy/query/pagination/will_paginage_spec.rb +0 -60
data/lib/chewy/strategy.rb
CHANGED
@@ -7,18 +7,28 @@ begin
|
|
7
7
|
require 'resque'
|
8
8
|
require 'chewy/strategy/resque'
|
9
9
|
rescue LoadError
|
10
|
+
nil
|
10
11
|
end
|
11
12
|
|
12
13
|
begin
|
13
14
|
require 'sidekiq'
|
14
15
|
require 'chewy/strategy/sidekiq'
|
15
16
|
rescue LoadError
|
17
|
+
nil
|
18
|
+
end
|
19
|
+
|
20
|
+
begin
|
21
|
+
require 'shoryuken'
|
22
|
+
require 'chewy/strategy/shoryuken'
|
23
|
+
rescue LoadError
|
24
|
+
nil
|
16
25
|
end
|
17
26
|
|
18
27
|
begin
|
19
28
|
require 'active_job'
|
20
29
|
require 'chewy/strategy/active_job'
|
21
30
|
rescue LoadError
|
31
|
+
nil
|
22
32
|
end
|
23
33
|
|
24
34
|
module Chewy
|
@@ -42,20 +52,20 @@ module Chewy
|
|
42
52
|
@stack.last
|
43
53
|
end
|
44
54
|
|
45
|
-
def push
|
55
|
+
def push(name)
|
46
56
|
result = @stack.push resolve(name).new
|
47
|
-
debug "[#{@stack.size}] <- #{current.name}"
|
57
|
+
debug "[#{@stack.size - 1}] <- #{current.name}" if @stack.size > 2
|
48
58
|
result
|
49
59
|
end
|
50
60
|
|
51
61
|
def pop
|
52
62
|
raise "Can't pop root strategy" if @stack.one?
|
53
|
-
debug "[#{@stack.size}] -> #{current.name}"
|
54
63
|
result = @stack.pop.tap(&:leave)
|
64
|
+
debug "[#{@stack.size}] -> #{result.name}, now #{current.name}" if @stack.size > 1
|
55
65
|
result
|
56
66
|
end
|
57
67
|
|
58
|
-
def wrap
|
68
|
+
def wrap(name)
|
59
69
|
stack = push(name)
|
60
70
|
yield
|
61
71
|
ensure
|
@@ -64,14 +74,13 @@ module Chewy
|
|
64
74
|
|
65
75
|
private
|
66
76
|
|
67
|
-
def debug
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
end
|
77
|
+
def debug(string)
|
78
|
+
return unless Chewy.logger && Chewy.logger.debug?
|
79
|
+
line = caller.detect { |l| l !~ %r{lib/chewy/strategy.rb:|lib/chewy.rb:} }
|
80
|
+
Chewy.logger.debug(["Chewy strategies stack: #{string}", line.sub(/:in\s.+$/, '')].join(' @ '))
|
72
81
|
end
|
73
82
|
|
74
|
-
def resolve
|
83
|
+
def resolve(name)
|
75
84
|
"Chewy::Strategy::#{name.to_s.camelize}".safe_constantize or raise "Can't find update strategy `#{name}`"
|
76
85
|
rescue NameError => ex
|
77
86
|
# WORKAROUND: Strange behavior of `safe_constantize` with mongoid gem
|
data/lib/chewy/type/actions.rb
CHANGED
@@ -4,15 +4,39 @@ module Chewy
|
|
4
4
|
extend ActiveSupport::Concern
|
5
5
|
|
6
6
|
module ClassMethods
|
7
|
-
#
|
8
|
-
# Returns true or false depending on success.
|
7
|
+
# Deletes all documents of a type and reimports them
|
9
8
|
#
|
9
|
+
# @example
|
10
10
|
# UsersIndex::User.reset
|
11
11
|
#
|
12
|
+
# @see Chewy::Type::Import::ClassMethods#import
|
13
|
+
# @see Chewy::Type::Import::ClassMethods#import
|
14
|
+
# @return [true, false] the result of import
|
12
15
|
def reset
|
13
16
|
delete_all
|
14
17
|
import
|
15
18
|
end
|
19
|
+
|
20
|
+
# Performs missing and outdated objects synchronization for the current type.
|
21
|
+
#
|
22
|
+
# @example
|
23
|
+
# UsersIndex::User.sync
|
24
|
+
#
|
25
|
+
# @see Chewy::Type::Syncer
|
26
|
+
# @param parallel [true, Integer, Hash] options for parallel execution or the number of processes
|
27
|
+
# @return [Hash{Symbol, Object}, nil] a number of missing and outdated documents reindexed and their ids, nil in case of errors
|
28
|
+
def sync(parallel: nil)
|
29
|
+
syncer = Syncer.new(self, parallel: parallel)
|
30
|
+
count = syncer.perform
|
31
|
+
{count: count, missing: syncer.missing_ids, outdated: syncer.outdated_ids} if count
|
32
|
+
end
|
33
|
+
|
34
|
+
# A {Chewy::Journal} instance for the particular type
|
35
|
+
#
|
36
|
+
# @return [Chewy::Journal] journal instance
|
37
|
+
def journal
|
38
|
+
@journal ||= Chewy::Journal.new(self)
|
39
|
+
end
|
16
40
|
end
|
17
41
|
end
|
18
42
|
end
|
@@ -4,7 +4,6 @@ module Chewy
|
|
4
4
|
class Type
|
5
5
|
module Adapter
|
6
6
|
class ActiveRecord < Orm
|
7
|
-
|
8
7
|
def self.accepts?(target)
|
9
8
|
defined?(::ActiveRecord::Base) && (
|
10
9
|
target.is_a?(Class) && target < ::ActiveRecord::Base ||
|
@@ -22,33 +21,70 @@ module Chewy
|
|
22
21
|
@default_scope = @default_scope.reorder(nil).limit(nil).offset(nil)
|
23
22
|
end
|
24
23
|
|
25
|
-
def import_scope(scope,
|
26
|
-
scope
|
27
|
-
|
28
|
-
|
29
|
-
|
24
|
+
def import_scope(scope, options)
|
25
|
+
pluck_in_batches(scope, options.slice(:batch_size)).inject(true) do |result, ids|
|
26
|
+
objects = if options[:raw_import]
|
27
|
+
raw_default_scope_where_ids_in(ids, options[:raw_import])
|
28
|
+
else
|
29
|
+
default_scope_where_ids_in(ids)
|
30
|
+
end
|
30
31
|
|
31
|
-
|
32
|
-
result &= yield grouped_objects(default_scope_where_ids_in(ids))
|
33
|
-
break if ids.size < batch_size
|
34
|
-
ids = pluck_ids(scope.where(target_id.gt(ids.last)))
|
32
|
+
result & yield(grouped_objects(objects))
|
35
33
|
end
|
34
|
+
end
|
36
35
|
|
37
|
-
|
36
|
+
def primary_key
|
37
|
+
@primary_key ||= target.primary_key.to_sym
|
38
38
|
end
|
39
39
|
|
40
40
|
def target_id
|
41
|
-
target.arel_table[
|
41
|
+
target.arel_table[primary_key.to_s]
|
42
42
|
end
|
43
43
|
|
44
|
-
def
|
45
|
-
|
44
|
+
def pluck(scope, fields: [], typecast: true)
|
45
|
+
if typecast
|
46
|
+
scope.except(:includes).distinct.pluck(primary_key, *fields)
|
47
|
+
else
|
48
|
+
scope = scope.except(:includes).distinct
|
49
|
+
scope.select_values = [primary_key, *fields].map do |column|
|
50
|
+
target.columns_hash.key?(column) ? target.arel_table[column] : column
|
51
|
+
end
|
52
|
+
sql = scope.to_sql
|
53
|
+
|
54
|
+
if fields.present?
|
55
|
+
target.connection.select_rows(sql)
|
56
|
+
else
|
57
|
+
target.connection.select_values(sql)
|
58
|
+
end
|
59
|
+
end
|
60
|
+
end
|
61
|
+
|
62
|
+
def pluck_in_batches(scope, fields: [], batch_size: nil, typecast: true)
|
63
|
+
return enum_for(:pluck_in_batches, scope, fields: fields, batch_size: batch_size, typecast: typecast) unless block_given?
|
64
|
+
|
65
|
+
scope = scope.reorder(target_id.asc).limit(batch_size)
|
66
|
+
ids = pluck(scope, fields: fields, typecast: typecast)
|
67
|
+
count = 0
|
68
|
+
|
69
|
+
while ids.present?
|
70
|
+
yield ids
|
71
|
+
break if ids.size < batch_size
|
72
|
+
last_id = ids.last.is_a?(Array) ? ids.last.first : ids.last
|
73
|
+
ids = pluck(scope.where(target_id.gt(last_id)), fields: fields, typecast: typecast)
|
74
|
+
end
|
75
|
+
|
76
|
+
count
|
46
77
|
end
|
47
78
|
|
48
79
|
def scope_where_ids_in(scope, ids)
|
49
80
|
scope.where(target_id.in(Array.wrap(ids)))
|
50
81
|
end
|
51
82
|
|
83
|
+
def raw_default_scope_where_ids_in(ids, converter)
|
84
|
+
sql = default_scope_where_ids_in(ids).to_sql
|
85
|
+
object_class.connection.execute(sql).map(&converter)
|
86
|
+
end
|
87
|
+
|
52
88
|
def relation_class
|
53
89
|
::ActiveRecord::Relation
|
54
90
|
end
|
@@ -57,16 +93,6 @@ module Chewy
|
|
57
93
|
::ActiveRecord::Base
|
58
94
|
end
|
59
95
|
end
|
60
|
-
|
61
|
-
module Rails5
|
62
|
-
def pluck_ids(scope)
|
63
|
-
scope.except(:includes).distinct.pluck(target.primary_key.to_sym)
|
64
|
-
end
|
65
|
-
end
|
66
|
-
|
67
|
-
if defined?(::ActiveRecord) && ::ActiveRecord::VERSION::MAJOR >= 5
|
68
|
-
Chewy::Type::Adapter::ActiveRecord.prepend(Rails5)
|
69
|
-
end
|
70
96
|
end
|
71
97
|
end
|
72
98
|
end
|
@@ -9,7 +9,7 @@ module Chewy
|
|
9
9
|
|
10
10
|
# Returns `true` if this adapter is applicable for the given target.
|
11
11
|
#
|
12
|
-
def self.accepts?
|
12
|
+
def self.accepts?(_target)
|
13
13
|
true
|
14
14
|
end
|
15
15
|
|
@@ -32,28 +32,48 @@ module Chewy
|
|
32
32
|
# For ORM/ODM it will be an array of ids for simple objects -
|
33
33
|
# just objects themselves
|
34
34
|
#
|
35
|
-
def identify
|
35
|
+
def identify(_collection)
|
36
36
|
raise NotImplementedError
|
37
37
|
end
|
38
38
|
|
39
39
|
# Splits passed objects to groups according to `:batch_size` options.
|
40
|
-
# For every group
|
40
|
+
# For every group creates hash with action keys. Example:
|
41
41
|
#
|
42
|
-
# { delete: [
|
42
|
+
# { delete: [object_or_id1, object_or_id2], index: [object3, object4, object5] }
|
43
43
|
#
|
44
|
-
#
|
44
|
+
# @yieldparam _batch [Array<Object>] each batch of objects
|
45
|
+
# @return [true, false] returns true if all the block call returns true and false otherwise
|
46
|
+
def import(_batch, &_block)
|
47
|
+
raise NotImplementedError
|
48
|
+
end
|
49
|
+
|
50
|
+
# Unlike {#import} fetches only ids (references) to the imported objects,
|
51
|
+
# using the same procedures as {#import}.
|
52
|
+
#
|
53
|
+
# @param _fields [Array<Symbol>] additional fields to fetch
|
54
|
+
# @param _batch_size [Integer] batch size, defaults to 1000
|
55
|
+
# @yieldparam batch [Array<Object>] each batch of objects
|
56
|
+
def import_fields(_fields, _batch_size, &_block)
|
57
|
+
raise NotImplementedError
|
58
|
+
end
|
59
|
+
|
60
|
+
# Uses the same strategy as import for the passed arguments, and returns
|
61
|
+
# an array of references to the passed objects. Returns ids if possible.
|
62
|
+
# Otherwise - and array of objects themselves.
|
45
63
|
#
|
46
|
-
|
64
|
+
# @param _batch_size [Integer] batch size, defaults to 1000
|
65
|
+
# @yieldparam batch [Array<Object>] each batch of objects
|
66
|
+
def import_references(_batch_size, &_block)
|
47
67
|
raise NotImplementedError
|
48
68
|
end
|
49
69
|
|
50
|
-
# Returns array of loaded objects for passed
|
70
|
+
# Returns array of loaded objects for passed ids array. If some object
|
51
71
|
# was not loaded, it returns `nil` in the place of this object
|
52
72
|
#
|
53
|
-
# load(
|
73
|
+
# load([1, 2, 3]) #=>
|
54
74
|
# # [<Product id: 1>, nil, <Product id: 3>], assuming, #2 was not found
|
55
75
|
#
|
56
|
-
def load
|
76
|
+
def load(_ids, **_options)
|
57
77
|
raise NotImplementedError
|
58
78
|
end
|
59
79
|
|
@@ -4,41 +4,50 @@ module Chewy
|
|
4
4
|
class Type
|
5
5
|
module Adapter
|
6
6
|
class Mongoid < Orm
|
7
|
-
|
8
7
|
def self.accepts?(target)
|
9
8
|
defined?(::Mongoid::Document) && (
|
10
9
|
target.is_a?(Class) && target.ancestors.include?(::Mongoid::Document) ||
|
11
10
|
target.is_a?(::Mongoid::Criteria))
|
12
11
|
end
|
13
12
|
|
14
|
-
def identify
|
13
|
+
def identify(collection)
|
15
14
|
super(collection).map { |id| id.is_a?(BSON::ObjectId) ? id.to_s : id }
|
16
15
|
end
|
17
16
|
|
18
17
|
private
|
19
18
|
|
20
19
|
def cleanup_default_scope!
|
21
|
-
if Chewy.logger && @default_scope.options.values_at(:sort, :limit, :skip).compact.present?
|
22
|
-
Chewy.logger.warn('Default type scope order, limit and offset are ignored and will be nullified')
|
23
|
-
end
|
20
|
+
Chewy.logger.warn('Default type scope order, limit and offset are ignored and will be nullified') if Chewy.logger && @default_scope.options.values_at(:sort, :limit, :skip).compact.present?
|
24
21
|
|
25
22
|
@default_scope.options.delete(:limit)
|
26
23
|
@default_scope.options.delete(:skip)
|
27
24
|
@default_scope = @default_scope.reorder(nil)
|
28
25
|
end
|
29
26
|
|
30
|
-
def import_scope(scope,
|
31
|
-
scope.
|
27
|
+
def import_scope(scope, options)
|
28
|
+
pluck_in_batches(scope, options.slice(:batch_size)).map do |ids|
|
32
29
|
yield grouped_objects(default_scope_where_ids_in(ids))
|
33
30
|
end.all?
|
34
31
|
end
|
35
32
|
|
36
|
-
def
|
37
|
-
|
33
|
+
def primary_key
|
34
|
+
:_id
|
35
|
+
end
|
36
|
+
|
37
|
+
def pluck(scope, fields: [])
|
38
|
+
scope.pluck(primary_key, *fields)
|
39
|
+
end
|
40
|
+
|
41
|
+
def pluck_in_batches(scope, fields: [], batch_size: nil, **options)
|
42
|
+
return enum_for(:pluck_in_batches, scope, fields: fields, batch_size: batch_size, **options) unless block_given?
|
43
|
+
|
44
|
+
scope.batch_size(batch_size).no_timeout.pluck(primary_key, *fields).each_slice(batch_size) do |batch|
|
45
|
+
yield batch
|
46
|
+
end
|
38
47
|
end
|
39
48
|
|
40
49
|
def scope_where_ids_in(scope, ids)
|
41
|
-
scope.where(
|
50
|
+
scope.where(primary_key.in => ids)
|
42
51
|
end
|
43
52
|
|
44
53
|
def all_scope
|
@@ -3,64 +3,203 @@ require 'chewy/type/adapter/base'
|
|
3
3
|
module Chewy
|
4
4
|
class Type
|
5
5
|
module Adapter
|
6
|
+
# This adapter provides an ability to import documents from any
|
7
|
+
# source. You can actually use any class or even a symbol as
|
8
|
+
# a target.
|
9
|
+
#
|
10
|
+
# In case if a class is used - some of the additional features
|
11
|
+
# are available: it is possible to provide the default import
|
12
|
+
# data (used on reset) and source objects loading logic.
|
13
|
+
#
|
14
|
+
# @see #import
|
15
|
+
# @see #load
|
6
16
|
class Object < Base
|
7
|
-
|
8
|
-
|
9
|
-
|
17
|
+
# The signature of the type definition.
|
18
|
+
#
|
19
|
+
# @example
|
20
|
+
# define_type :geoname
|
21
|
+
# define_type Geoname
|
22
|
+
# define_type -> { Geoname.all_the_places }, name: 'geoname'
|
23
|
+
#
|
24
|
+
# @param target [Class, Symbol, String, Proc] a source of data and everything
|
25
|
+
# @option options [String, Symbol] :name redefines the inferred type name if necessary
|
26
|
+
# @option options [String, Symbol] :import_all_method redefines import method name
|
27
|
+
# @option options [String, Symbol] :load_all_method redefines batch load method name
|
28
|
+
# @option options [String, Symbol] :load_one_method redefines per-object load method name
|
29
|
+
def initialize(target, **options)
|
30
|
+
@target = target
|
31
|
+
@options = options
|
10
32
|
end
|
11
33
|
|
34
|
+
# Name is used for the type class creation. Inferred from the target
|
35
|
+
# by default if possible.
|
36
|
+
#
|
37
|
+
# @example
|
38
|
+
# # defines MyIndex::Geoname
|
39
|
+
# define_type :geoname
|
40
|
+
# # still defines MyIndex::Geoname
|
41
|
+
# define_type -> { Geoname.all_the_places }, name: 'geoname'
|
42
|
+
#
|
43
|
+
# @return [String]
|
12
44
|
def name
|
13
45
|
@name ||= (options[:name] || @target).to_s.camelize.demodulize
|
14
46
|
end
|
15
47
|
|
16
|
-
|
48
|
+
# While for ORM adapters it returns an array of ids for the passed
|
49
|
+
# collection, for the object adapter it returns the collection itself.
|
50
|
+
#
|
51
|
+
# @param collection [Array<Object>, Object] a collection or an object
|
52
|
+
# @return [Array<Object>]
|
53
|
+
def identify(collection)
|
17
54
|
Array.wrap(collection)
|
18
55
|
end
|
19
56
|
|
20
|
-
#
|
57
|
+
# This method is used internally by `Chewy::Type.import`.
|
21
58
|
#
|
22
|
-
#
|
59
|
+
# The idea is that any object can be imported to ES if
|
60
|
+
# it responds to `#to_json` method.
|
23
61
|
#
|
24
|
-
#
|
62
|
+
# If method `destroyed?` is defined for object (or, in case of hash object,
|
63
|
+
# it has `:_destroyed` or `'_destroyed'` key) and returns `true` or object
|
64
|
+
# satisfy `delete_if` type option then object will be deleted from index.
|
65
|
+
# But in order to be destroyable, objects need to respond to `id` method
|
66
|
+
# or have an `id` key so ElasticSearch could know which one to delete.
|
25
67
|
#
|
26
|
-
#
|
68
|
+
# If nothing is passed the method tries to call `import_all_method`,
|
69
|
+
# which is `call` by default, on target to get the default objects batch.
|
27
70
|
#
|
28
|
-
#
|
71
|
+
# @example
|
72
|
+
# class Geoname
|
73
|
+
# self < class
|
74
|
+
# def self.call
|
75
|
+
# FancyGeoAPI.all_points_collection
|
76
|
+
# end
|
77
|
+
# alias_method :import_all, :call
|
78
|
+
# end
|
79
|
+
# end
|
29
80
|
#
|
30
|
-
#
|
31
|
-
#
|
32
|
-
#
|
33
|
-
#
|
81
|
+
# # All the folloving variants will work:
|
82
|
+
# define_type Geoname
|
83
|
+
# define_type Geoname, import_all_method: 'import_all'
|
84
|
+
# define_type -> { FancyGeoAPI.all_points_collection }, name: 'geoname'
|
85
|
+
#
|
86
|
+
# @param args [Array<#to_json>]
|
87
|
+
# @option options [Integer] :batch_size import processing batch size
|
88
|
+
# @return [true, false]
|
89
|
+
def import(*args, &block)
|
90
|
+
collection, options = import_args(*args)
|
91
|
+
import_objects(collection, options, &block)
|
92
|
+
end
|
93
|
+
|
94
|
+
# For the object adapter this method tries to fetch :id and requested
|
95
|
+
# fields from the passed collection or the target's `import_all_method`
|
96
|
+
# when defined. Otherwise it tries to call the target `pluck_method`,
|
97
|
+
# which is configurable and `pluck` by default. The `pluck_method` have
|
98
|
+
# to act exactly the same way as the AR one. It returns an empty array
|
99
|
+
# when none of the methods are found.
|
100
|
+
#
|
101
|
+
# @example
|
102
|
+
# class Geoname
|
103
|
+
# self < class
|
104
|
+
# def self.pluck(*fields)
|
105
|
+
# if fields.one?
|
106
|
+
# whatever_source.map { |object| object.send(fields.first) }
|
107
|
+
# else
|
108
|
+
# whatever_source.map do |object|
|
109
|
+
# fields.map { |field| object.send(field) }
|
110
|
+
# end
|
111
|
+
# end
|
112
|
+
# end
|
113
|
+
# end
|
114
|
+
# end
|
34
115
|
#
|
35
|
-
|
36
|
-
|
37
|
-
|
116
|
+
# @see Chewy::Type::Adapter::Base#import_fields
|
117
|
+
def import_fields(*args)
|
118
|
+
return enum_for(:import_fields, *args) unless block_given?
|
119
|
+
options = args.extract_options!
|
120
|
+
options[:batch_size] ||= BATCH_SIZE
|
38
121
|
|
39
|
-
|
40
|
-
@target.send(
|
122
|
+
if args.empty? && @target.respond_to?(pluck_method)
|
123
|
+
@target.send(pluck_method, :id, *options[:fields]).each_slice(options[:batch_size]) do |batch|
|
124
|
+
yield batch
|
125
|
+
end
|
126
|
+
elsif options[:fields].blank?
|
127
|
+
import_references(*args, options) do |batch|
|
128
|
+
yield batch.map { |object| object_field(object, :id) || object }
|
129
|
+
end
|
130
|
+
else
|
131
|
+
import_references(*args, options) do |batch|
|
132
|
+
batch = batch.map do |object|
|
133
|
+
options[:fields].map { |field| object_field(object, field) }
|
134
|
+
.unshift(object_field(object, :id) || object)
|
135
|
+
end
|
136
|
+
yield batch
|
137
|
+
end
|
138
|
+
end
|
139
|
+
end
|
41
140
|
|
42
|
-
|
141
|
+
# For the Object adapter returns the objects themselves in batches.
|
142
|
+
#
|
143
|
+
# @see Chewy::Type::Adapter::Base#import_references
|
144
|
+
def import_references(*args)
|
145
|
+
return enum_for(:import_references, *args) unless block_given?
|
146
|
+
|
147
|
+
collection, options = import_args(*args)
|
148
|
+
collection.each_slice(options[:batch_size]) do |batch|
|
149
|
+
yield batch
|
150
|
+
end
|
43
151
|
end
|
44
152
|
|
45
|
-
|
46
|
-
|
47
|
-
|
153
|
+
# This method is used internally by the request DSL when the
|
154
|
+
# collection of ORM/ODM objects is requested.
|
155
|
+
#
|
156
|
+
# Options usage is implemented by `load_all_method` and `load_one_method`.
|
157
|
+
#
|
158
|
+
# If none of the `load_all_method` or `load_one_method` is implemented
|
159
|
+
# for the target - the method will return nil. This means that the
|
160
|
+
# loader will return an array `Chewy::Type` objects that actually was passed.
|
161
|
+
#
|
162
|
+
# To use loading for objects it is obviously required to provide
|
163
|
+
# some meaningful ids for ES documents.
|
164
|
+
#
|
165
|
+
# @example
|
166
|
+
# class Geoname
|
167
|
+
# def self.load_all(wrappers, options)
|
168
|
+
# if options[:additional_data]
|
169
|
+
# wrappers.map do |wrapper|
|
170
|
+
# FancyGeoAPI.point_by_name(wrapper.name)
|
171
|
+
# end
|
172
|
+
# else
|
173
|
+
# wrappers
|
174
|
+
# end
|
175
|
+
# end
|
176
|
+
# end
|
177
|
+
#
|
178
|
+
# MyIndex::Geoname.load(additional_data: true).objects
|
179
|
+
#
|
180
|
+
# @param ids [Array<Hash>] an array of ids from ES hits
|
181
|
+
# @param options [Hash] any options passed here with the request DSL `load` method.
|
182
|
+
# @return [Array<Object>, nil]
|
183
|
+
def load(ids, **options)
|
48
184
|
if target.respond_to?(load_all_method)
|
49
|
-
target.
|
185
|
+
if target.method(load_all_method).arity == 1
|
186
|
+
target.send(load_all_method, ids)
|
187
|
+
else
|
188
|
+
target.send(load_all_method, ids, options)
|
189
|
+
end
|
50
190
|
elsif target.respond_to?(load_one_method)
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
objects
|
191
|
+
if target.method(load_one_method).arity == 1
|
192
|
+
ids.map { |hit| target.send(load_one_method, hit) }
|
193
|
+
else
|
194
|
+
ids.map { |hit| target.send(load_one_method, hit, options) }
|
195
|
+
end
|
57
196
|
end
|
58
197
|
end
|
59
198
|
|
60
199
|
private
|
61
200
|
|
62
|
-
def import_objects(objects,
|
63
|
-
objects.each_slice(batch_size).map do |group|
|
201
|
+
def import_objects(objects, options)
|
202
|
+
objects.each_slice(options[:batch_size]).map do |group|
|
64
203
|
yield grouped_objects(group)
|
65
204
|
end.all?
|
66
205
|
end
|
@@ -72,10 +211,22 @@ module Chewy
|
|
72
211
|
!!delete
|
73
212
|
end
|
74
213
|
|
214
|
+
def object_field(object, name)
|
215
|
+
if object.respond_to?(name)
|
216
|
+
object.send(name)
|
217
|
+
elsif object.is_a?(Hash)
|
218
|
+
object[name.to_sym] || object[name.to_s]
|
219
|
+
end
|
220
|
+
end
|
221
|
+
|
75
222
|
def import_all_method
|
76
223
|
@import_all_method ||= options[:import_all_method] || :call
|
77
224
|
end
|
78
225
|
|
226
|
+
def pluck_method
|
227
|
+
@pluck_method ||= options[:pluck_method] || :pluck
|
228
|
+
end
|
229
|
+
|
79
230
|
def load_all_method
|
80
231
|
@load_all_method ||= options[:load_all_method] || :load_all
|
81
232
|
end
|
@@ -83,6 +234,19 @@ module Chewy
|
|
83
234
|
def load_one_method
|
84
235
|
@load_one_method ||= options[:load_one_method] || :load_one
|
85
236
|
end
|
237
|
+
|
238
|
+
def import_args(*args)
|
239
|
+
options = args.extract_options!
|
240
|
+
options[:batch_size] ||= BATCH_SIZE
|
241
|
+
|
242
|
+
collection = if args.empty? && @target.respond_to?(import_all_method)
|
243
|
+
@target.send(import_all_method)
|
244
|
+
else
|
245
|
+
args.flatten(1).compact
|
246
|
+
end
|
247
|
+
|
248
|
+
[collection, options]
|
249
|
+
end
|
86
250
|
end
|
87
251
|
end
|
88
252
|
end
|