misha-ar-octopus 0.8.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +11 -0
- data/.rspec +2 -0
- data/.rubocop.yml +46 -0
- data/.rubocop_todo.yml +56 -0
- data/.ruby-version +1 -0
- data/.travis.yml +18 -0
- data/Appraisals +16 -0
- data/Gemfile +4 -0
- data/README.mkdn +242 -0
- data/Rakefile +172 -0
- data/TODO.txt +7 -0
- data/ar-octopus.gemspec +42 -0
- data/gemfiles/rails32.gemfile +7 -0
- data/gemfiles/rails4.gemfile +7 -0
- data/gemfiles/rails41.gemfile +7 -0
- data/gemfiles/rails42.gemfile +7 -0
- data/init.rb +1 -0
- data/lib/ar-octopus.rb +1 -0
- data/lib/octopus.rb +181 -0
- data/lib/octopus/abstract_adapter.rb +35 -0
- data/lib/octopus/association.rb +13 -0
- data/lib/octopus/association_shard_tracking.rb +114 -0
- data/lib/octopus/collection_association.rb +11 -0
- data/lib/octopus/collection_proxy.rb +16 -0
- data/lib/octopus/exception.rb +4 -0
- data/lib/octopus/has_and_belongs_to_many_association.rb +9 -0
- data/lib/octopus/load_balancing.rb +4 -0
- data/lib/octopus/load_balancing/round_robin.rb +20 -0
- data/lib/octopus/log_subscriber.rb +22 -0
- data/lib/octopus/migration.rb +168 -0
- data/lib/octopus/model.rb +210 -0
- data/lib/octopus/persistence.rb +39 -0
- data/lib/octopus/proxy.rb +534 -0
- data/lib/octopus/railtie.rb +11 -0
- data/lib/octopus/relation_proxy.rb +35 -0
- data/lib/octopus/scope_proxy.rb +61 -0
- data/lib/octopus/shard_tracking.rb +41 -0
- data/lib/octopus/shard_tracking/attribute.rb +22 -0
- data/lib/octopus/shard_tracking/dynamic.rb +11 -0
- data/lib/octopus/singular_association.rb +9 -0
- data/lib/octopus/slave_group.rb +13 -0
- data/lib/octopus/version.rb +3 -0
- data/lib/tasks/octopus.rake +16 -0
- data/rails/init.rb +1 -0
- data/sample_app/.gitignore +4 -0
- data/sample_app/.rspec +1 -0
- data/sample_app/Gemfile +20 -0
- data/sample_app/README +3 -0
- data/sample_app/README.rdoc +261 -0
- data/sample_app/Rakefile +7 -0
- data/sample_app/app/assets/images/rails.png +0 -0
- data/sample_app/app/assets/javascripts/application.js +15 -0
- data/sample_app/app/assets/stylesheets/application.css +13 -0
- data/sample_app/app/controllers/application_controller.rb +4 -0
- data/sample_app/app/helpers/application_helper.rb +2 -0
- data/sample_app/app/mailers/.gitkeep +0 -0
- data/sample_app/app/models/.gitkeep +0 -0
- data/sample_app/app/models/item.rb +3 -0
- data/sample_app/app/models/user.rb +3 -0
- data/sample_app/app/views/layouts/application.html.erb +14 -0
- data/sample_app/autotest/discover.rb +2 -0
- data/sample_app/config.ru +4 -0
- data/sample_app/config/application.rb +62 -0
- data/sample_app/config/boot.rb +6 -0
- data/sample_app/config/cucumber.yml +8 -0
- data/sample_app/config/database.yml +28 -0
- data/sample_app/config/environment.rb +5 -0
- data/sample_app/config/environments/development.rb +37 -0
- data/sample_app/config/environments/production.rb +67 -0
- data/sample_app/config/environments/test.rb +37 -0
- data/sample_app/config/initializers/backtrace_silencers.rb +7 -0
- data/sample_app/config/initializers/inflections.rb +15 -0
- data/sample_app/config/initializers/mime_types.rb +5 -0
- data/sample_app/config/initializers/secret_token.rb +7 -0
- data/sample_app/config/initializers/session_store.rb +8 -0
- data/sample_app/config/initializers/wrap_parameters.rb +14 -0
- data/sample_app/config/locales/en.yml +5 -0
- data/sample_app/config/routes.rb +58 -0
- data/sample_app/config/shards.yml +28 -0
- data/sample_app/db/migrate/20100720172715_create_users.rb +15 -0
- data/sample_app/db/migrate/20100720172730_create_items.rb +16 -0
- data/sample_app/db/migrate/20100720210335_create_sample_users.rb +11 -0
- data/sample_app/db/schema.rb +29 -0
- data/sample_app/db/seeds.rb +16 -0
- data/sample_app/doc/README_FOR_APP +2 -0
- data/sample_app/features/migrate.feature +45 -0
- data/sample_app/features/seed.feature +15 -0
- data/sample_app/features/step_definitions/seeds_steps.rb +13 -0
- data/sample_app/features/step_definitions/web_steps.rb +218 -0
- data/sample_app/features/support/database.rb +13 -0
- data/sample_app/features/support/env.rb +57 -0
- data/sample_app/features/support/paths.rb +33 -0
- data/sample_app/lib/assets/.gitkeep +0 -0
- data/sample_app/lib/tasks/.gitkeep +0 -0
- data/sample_app/lib/tasks/cucumber.rake +64 -0
- data/sample_app/log/.gitkeep +0 -0
- data/sample_app/public/404.html +26 -0
- data/sample_app/public/422.html +26 -0
- data/sample_app/public/500.html +26 -0
- data/sample_app/public/favicon.ico +0 -0
- data/sample_app/public/images/rails.png +0 -0
- data/sample_app/public/index.html +279 -0
- data/sample_app/public/javascripts/application.js +2 -0
- data/sample_app/public/javascripts/controls.js +965 -0
- data/sample_app/public/javascripts/dragdrop.js +974 -0
- data/sample_app/public/javascripts/effects.js +1123 -0
- data/sample_app/public/javascripts/prototype.js +4874 -0
- data/sample_app/public/javascripts/rails.js +118 -0
- data/sample_app/public/robots.txt +5 -0
- data/sample_app/public/stylesheets/.gitkeep +0 -0
- data/sample_app/script/cucumber +10 -0
- data/sample_app/script/rails +6 -0
- data/sample_app/spec/models/item_spec.rb +5 -0
- data/sample_app/spec/models/user_spec.rb +5 -0
- data/sample_app/spec/spec_helper.rb +27 -0
- data/sample_app/vendor/assets/javascripts/.gitkeep +0 -0
- data/sample_app/vendor/assets/stylesheets/.gitkeep +0 -0
- data/sample_app/vendor/plugins/.gitkeep +0 -0
- data/spec/config/shards.yml +217 -0
- data/spec/migrations/10_create_users_using_replication.rb +9 -0
- data/spec/migrations/11_add_field_in_all_slaves.rb +11 -0
- data/spec/migrations/12_create_users_using_block.rb +23 -0
- data/spec/migrations/13_create_users_using_block_and_using.rb +15 -0
- data/spec/migrations/14_create_users_on_shards_of_a_group_with_versions.rb +11 -0
- data/spec/migrations/15_create_user_on_shards_of_default_group_with_versions.rb +9 -0
- data/spec/migrations/1_create_users_on_master.rb +9 -0
- data/spec/migrations/2_create_users_on_canada.rb +11 -0
- data/spec/migrations/3_create_users_on_both_shards.rb +11 -0
- data/spec/migrations/4_create_users_on_shards_of_a_group.rb +11 -0
- data/spec/migrations/5_create_users_on_multiples_groups.rb +11 -0
- data/spec/migrations/6_raise_exception_with_invalid_shard_name.rb +11 -0
- data/spec/migrations/7_raise_exception_with_invalid_multiple_shard_names.rb +11 -0
- data/spec/migrations/8_raise_exception_with_invalid_group_name.rb +11 -0
- data/spec/migrations/9_raise_exception_with_multiple_invalid_group_names.rb +11 -0
- data/spec/octopus/association_shard_tracking_spec.rb +714 -0
- data/spec/octopus/collection_proxy_spec.rb +16 -0
- data/spec/octopus/log_subscriber_spec.rb +19 -0
- data/spec/octopus/migration_spec.rb +115 -0
- data/spec/octopus/model_spec.rb +693 -0
- data/spec/octopus/octopus_spec.rb +123 -0
- data/spec/octopus/proxy_spec.rb +307 -0
- data/spec/octopus/relation_proxy_spec.rb +93 -0
- data/spec/octopus/replicated_slave_grouped_spec.rb +91 -0
- data/spec/octopus/replication_spec.rb +137 -0
- data/spec/octopus/scope_proxy_spec.rb +63 -0
- data/spec/octopus/sharded_replicated_slave_grouped_spec.rb +55 -0
- data/spec/octopus/sharded_spec.rb +33 -0
- data/spec/spec_helper.rb +16 -0
- data/spec/support/active_record/connection_adapters/modify_config_adapter.rb +15 -0
- data/spec/support/database_connection.rb +4 -0
- data/spec/support/database_models.rb +118 -0
- data/spec/support/octopus_helper.rb +55 -0
- data/spec/support/query_count.rb +17 -0
- data/spec/support/shared_contexts.rb +18 -0
- data/spec/tasks/octopus.rake_spec.rb +32 -0
- metadata +388 -0
@@ -0,0 +1,91 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe 'when the database is replicated and has slave groups' do
|
4
|
+
|
5
|
+
it 'should pick the slave group based on current_slave_grup when you have a replicated model' do
|
6
|
+
|
7
|
+
OctopusHelper.using_environment :replicated_slave_grouped do
|
8
|
+
# The following two calls of `create!` both creates cats in :master(The database `octopus_shard_1`)
|
9
|
+
# which is configured through RAILS_ENV and database.yml
|
10
|
+
Cat.create!(:name => 'Thiago1')
|
11
|
+
Cat.create!(:name => 'Thiago2')
|
12
|
+
|
13
|
+
# See "replicated_slave_grouped" defined in shards.yml
|
14
|
+
# We have:
|
15
|
+
# The database `octopus_shard_1` as :slave21 which is a member of the slave group :slaves2, and as :master
|
16
|
+
# The databse `octopus_shard_2` as :slave11 which is a member of the slave group :slaves1
|
17
|
+
# When a select-count query is sent to `octopus_shard_1`, it should return 2 because we have create two cats in :master .
|
18
|
+
# When a select-count query is sent to `octopus_shard_2`, it should return 0.
|
19
|
+
|
20
|
+
# The query goes to `octopus_shard_1`
|
21
|
+
expect(Cat.using(:master).count).to eq(2)
|
22
|
+
# The query goes to `octopus_shard_1`
|
23
|
+
expect(Cat.count).to eq(2)
|
24
|
+
# The query goes to `octopus_shard_2`
|
25
|
+
expect(Cat.using(:slave_group => :slaves1).count).to eq(0)
|
26
|
+
# The query goes to `octopus_shard_1`
|
27
|
+
expect(Cat.using(:slave_group => :slaves2).count).to eq(2)
|
28
|
+
end
|
29
|
+
end
|
30
|
+
|
31
|
+
it 'should distribute queries between slaves in a slave group in round-robin' do
|
32
|
+
OctopusHelper.using_environment :replicated_slave_grouped do
|
33
|
+
# The query goes to :master(`octopus_shard_1`)
|
34
|
+
Cat.create!(:name => 'Thiago1')
|
35
|
+
# The query goes to :master(`octopus_shard_1`)
|
36
|
+
Cat.create!(:name => 'Thiago2')
|
37
|
+
|
38
|
+
# The query goes to :slave32(`octopus_shard_2`)
|
39
|
+
expect(Cat.using(:slave_group => :slaves3).count).to eq(0)
|
40
|
+
# The query goes to :slave31(`octopus_shard_1`)
|
41
|
+
expect(Cat.using(:slave_group => :slaves3).count).to eq(2)
|
42
|
+
# The query goes to :slave32(`octopus_shard_2`)
|
43
|
+
expect(Cat.using(:slave_group => :slaves3).count).to eq(0)
|
44
|
+
end
|
45
|
+
end
|
46
|
+
|
47
|
+
it 'should make queries to master when slave groups are configured but not selected' do
|
48
|
+
OctopusHelper.using_environment :replicated_slave_grouped do
|
49
|
+
# All the queries go to :master(`octopus_shard_1`)
|
50
|
+
|
51
|
+
Cat.create!(:name => 'Thiago1')
|
52
|
+
Cat.create!(:name => 'Thiago2')
|
53
|
+
|
54
|
+
# In `database.yml` and `shards.yml`, we have configured 1 master and 4 slaves.
|
55
|
+
# So we can ensure Octopus is not distributing queries between them
|
56
|
+
# by asserting 1 + 4 = 5 queries go to :master(`octopus_shard_1`)
|
57
|
+
expect(Cat.count).to eq(2)
|
58
|
+
expect(Cat.count).to eq(2)
|
59
|
+
expect(Cat.count).to eq(2)
|
60
|
+
expect(Cat.count).to eq(2)
|
61
|
+
expect(Cat.count).to eq(2)
|
62
|
+
end
|
63
|
+
end
|
64
|
+
|
65
|
+
it 'should keep sending to slaves in a using block' do
|
66
|
+
OctopusHelper.using_environment :replicated_slave_grouped do
|
67
|
+
Cat.create!(:name => 'Thiago1')
|
68
|
+
Cat.create!(:name => 'Thiago2')
|
69
|
+
|
70
|
+
expect(Cat.count).to eq(2)
|
71
|
+
Octopus.using(:slave_group => :slaves1) do
|
72
|
+
expect(Cat.count).to eq(0)
|
73
|
+
expect(Cat.count).to eq(0)
|
74
|
+
end
|
75
|
+
end
|
76
|
+
end
|
77
|
+
|
78
|
+
it 'should restore previous slave group after a using block' do
|
79
|
+
OctopusHelper.using_environment :replicated_slave_grouped do
|
80
|
+
Cat.create!(:name => 'Thiago1')
|
81
|
+
Cat.create!(:name => 'Thiago2')
|
82
|
+
|
83
|
+
Octopus.using(:slave_group => :slaves1) do
|
84
|
+
Octopus.using(:slave_group => :slaves2) do
|
85
|
+
expect(Cat.count).to eq(2)
|
86
|
+
end
|
87
|
+
expect(Cat.count).to eq(0)
|
88
|
+
end
|
89
|
+
end
|
90
|
+
end
|
91
|
+
end
|
@@ -0,0 +1,137 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe 'when the database is replicated' do
|
4
|
+
it 'should send all writes/reads queries to master when you have a non replicated model' do
|
5
|
+
OctopusHelper.using_environment :production_replicated do
|
6
|
+
u = User.create!(:name => 'Replicated')
|
7
|
+
expect(User.count).to eq(1)
|
8
|
+
expect(User.find(u.id)).to eq(u)
|
9
|
+
end
|
10
|
+
end
|
11
|
+
|
12
|
+
it 'should send all writes queries to master' do
|
13
|
+
OctopusHelper.using_environment :production_replicated do
|
14
|
+
Cat.create!(:name => 'Slave Cat')
|
15
|
+
expect(Cat.find_by_name('Slave Cat')).to be_nil
|
16
|
+
Client.create!(:name => 'Slave Client')
|
17
|
+
expect(Client.find_by_name('Slave Client')).not_to be_nil
|
18
|
+
end
|
19
|
+
end
|
20
|
+
|
21
|
+
it 'should allow to create multiple models on the master' do
|
22
|
+
OctopusHelper.using_environment :production_replicated do
|
23
|
+
Cat.create!([{ :name => 'Slave Cat 1' }, { :name => 'Slave Cat 2' }])
|
24
|
+
expect(Cat.find_by_name('Slave Cat 1')).to be_nil
|
25
|
+
expect(Cat.find_by_name('Slave Cat 2')).to be_nil
|
26
|
+
end
|
27
|
+
end
|
28
|
+
|
29
|
+
describe 'When enabling the query cache' do
|
30
|
+
include_context 'with query cache enabled' do
|
31
|
+
it 'should do the queries with cache' do
|
32
|
+
OctopusHelper.using_environment :replicated_with_one_slave do
|
33
|
+
cat1 = Cat.using(:master).create!(:name => 'Master Cat 1')
|
34
|
+
_ct2 = Cat.using(:master).create!(:name => 'Master Cat 2')
|
35
|
+
expect(Cat.using(:master).find(cat1.id)).to eq(cat1)
|
36
|
+
expect(Cat.using(:master).find(cat1.id)).to eq(cat1)
|
37
|
+
expect(Cat.using(:master).find(cat1.id)).to eq(cat1)
|
38
|
+
|
39
|
+
cat3 = Cat.using(:slave1).create!(:name => 'Slave Cat 3')
|
40
|
+
_ct4 = Cat.using(:slave1).create!(:name => 'Slave Cat 4')
|
41
|
+
expect(Cat.find(cat3.id).id).to eq(cat3.id)
|
42
|
+
expect(Cat.find(cat3.id).id).to eq(cat3.id)
|
43
|
+
expect(Cat.find(cat3.id).id).to eq(cat3.id)
|
44
|
+
|
45
|
+
expect(counter.query_count).to eq(14)
|
46
|
+
end
|
47
|
+
end
|
48
|
+
end
|
49
|
+
end
|
50
|
+
|
51
|
+
describe 'When enabling the query cache with slave unavailable' do
|
52
|
+
it "should not raise can't connect error" do
|
53
|
+
OctopusHelper.using_environment :replicated_with_one_slave_unavailable do
|
54
|
+
expect {
|
55
|
+
ActiveRecord::Base.connection.enable_query_cache!
|
56
|
+
}.to_not raise_error
|
57
|
+
end
|
58
|
+
end
|
59
|
+
end
|
60
|
+
|
61
|
+
it 'should allow #using syntax to send queries to master' do
|
62
|
+
Cat.create!(:name => 'Master Cat')
|
63
|
+
|
64
|
+
OctopusHelper.using_environment :production_fully_replicated do
|
65
|
+
expect(Cat.using(:master).find_by_name('Master Cat')).not_to be_nil
|
66
|
+
end
|
67
|
+
end
|
68
|
+
|
69
|
+
it 'should send the count query to a slave' do
|
70
|
+
OctopusHelper.using_environment :production_replicated do
|
71
|
+
Cat.create!(:name => 'Slave Cat')
|
72
|
+
expect(Cat.count).to eq(0)
|
73
|
+
end
|
74
|
+
end
|
75
|
+
|
76
|
+
def active_support_subscribed(callback, *args, &_block)
|
77
|
+
subscriber = ActiveSupport::Notifications.subscribe(*args, &callback)
|
78
|
+
yield
|
79
|
+
ensure
|
80
|
+
ActiveSupport::Notifications.unsubscribe(subscriber)
|
81
|
+
end
|
82
|
+
end
|
83
|
+
|
84
|
+
describe 'when the database is replicated and the entire application is replicated' do
|
85
|
+
before(:each) do
|
86
|
+
allow(Octopus).to receive(:env).and_return('production_fully_replicated')
|
87
|
+
OctopusHelper.clean_connection_proxy
|
88
|
+
end
|
89
|
+
|
90
|
+
it 'should send all writes queries to master' do
|
91
|
+
OctopusHelper.using_environment :production_fully_replicated do
|
92
|
+
Cat.create!(:name => 'Slave Cat')
|
93
|
+
expect(Cat.find_by_name('Slave Cat')).to be_nil
|
94
|
+
Client.create!(:name => 'Slave Client')
|
95
|
+
expect(Client.find_by_name('Slave Client')).to be_nil
|
96
|
+
end
|
97
|
+
end
|
98
|
+
|
99
|
+
it 'should send all writes queries to master' do
|
100
|
+
OctopusHelper.using_environment :production_fully_replicated do
|
101
|
+
Cat.create!(:name => 'Slave Cat')
|
102
|
+
expect(Cat.find_by_name('Slave Cat')).to be_nil
|
103
|
+
Client.create!(:name => 'Slave Client')
|
104
|
+
expect(Client.find_by_name('Slave Client')).to be_nil
|
105
|
+
end
|
106
|
+
end
|
107
|
+
|
108
|
+
it 'should work with validate_uniquess_of' do
|
109
|
+
Keyboard.create!(:name => 'thiago')
|
110
|
+
|
111
|
+
OctopusHelper.using_environment :production_fully_replicated do
|
112
|
+
k = Keyboard.new(:name => 'thiago')
|
113
|
+
expect(k.save).to be false
|
114
|
+
expect(k.errors.full_messages).to eq(['Name has already been taken'])
|
115
|
+
end
|
116
|
+
end
|
117
|
+
|
118
|
+
it 'should reset current shard if slave throws an exception' do
|
119
|
+
OctopusHelper.using_environment :production_fully_replicated do
|
120
|
+
Cat.create!(:name => 'Slave Cat')
|
121
|
+
expect(Cat.connection.current_shard).to eql(:master)
|
122
|
+
Cat.where(:rubbish => true)
|
123
|
+
expect(Cat.connection.current_shard).to eql(:master)
|
124
|
+
end
|
125
|
+
end
|
126
|
+
|
127
|
+
it 'should reset current shard if slave throws an exception with custom master' do
|
128
|
+
OctopusHelper.using_environment :production_fully_replicated do
|
129
|
+
Octopus.config[:master_shard] = :slave2
|
130
|
+
Cat.create!(:name => 'Slave Cat')
|
131
|
+
expect(Cat.connection.current_shard).to eql(:slave2)
|
132
|
+
Cat.where(:rubbish => true)
|
133
|
+
expect(Cat.connection.current_shard).to eql(:slave2)
|
134
|
+
Octopus.config[:master_shard] = nil
|
135
|
+
end
|
136
|
+
end
|
137
|
+
end
|
@@ -0,0 +1,63 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe Octopus::ScopeProxy do
|
4
|
+
it 'should allow nested queries' do
|
5
|
+
@user1 = User.using(:brazil).create!(:name => 'Thiago P', :number => 3)
|
6
|
+
@user2 = User.using(:brazil).create!(:name => 'Thiago', :number => 1)
|
7
|
+
@user3 = User.using(:brazil).create!(:name => 'Thiago', :number => 2)
|
8
|
+
|
9
|
+
expect(User.using(:brazil).where(:name => 'Thiago').where(:number => 4).order(:number).all).to eq([])
|
10
|
+
expect(User.using(:brazil).where(:name => 'Thiago').using(:canada).where(:number => 2).using(:brazil).order(:number).all).to eq([@user3])
|
11
|
+
expect(User.using(:brazil).where(:name => 'Thiago').using(:canada).where(:number => 4).using(:brazil).order(:number).all).to eq([])
|
12
|
+
end
|
13
|
+
|
14
|
+
context 'When array-like-selecting an item in a group' do
|
15
|
+
before(:each) do
|
16
|
+
User.using(:brazil).create!(:name => 'Evan', :number => 1)
|
17
|
+
User.using(:brazil).create!(:name => 'Evan', :number => 2)
|
18
|
+
User.using(:brazil).create!(:name => 'Evan', :number => 3)
|
19
|
+
@evans = User.using(:brazil).where(:name => 'Evan')
|
20
|
+
end
|
21
|
+
|
22
|
+
it 'allows a block to select an item' do
|
23
|
+
expect(@evans.select { |u| u.number == 2 }.first.number).to eq(2)
|
24
|
+
end
|
25
|
+
end
|
26
|
+
|
27
|
+
context 'When selecting a field within a scope' do
|
28
|
+
before(:each) do
|
29
|
+
User.using(:brazil).create!(:name => 'Evan', :number => 4)
|
30
|
+
@evan = User.using(:brazil).where(:name => 'Evan')
|
31
|
+
end
|
32
|
+
|
33
|
+
it 'allows single field selection' do
|
34
|
+
expect(@evan.select('name').first.name).to eq('Evan')
|
35
|
+
end
|
36
|
+
|
37
|
+
it 'allows selection by array' do
|
38
|
+
expect(@evan.select(['name']).first.name).to eq('Evan')
|
39
|
+
end
|
40
|
+
|
41
|
+
it 'allows multiple selection by string' do
|
42
|
+
expect(@evan.select('id, name').first.id).to be_a(Fixnum)
|
43
|
+
end
|
44
|
+
|
45
|
+
it 'allows multiple selection by array' do
|
46
|
+
expect(@evan.select(%w(id name)).first.id).to be_a(Fixnum)
|
47
|
+
end
|
48
|
+
|
49
|
+
if Octopus.rails4?
|
50
|
+
it 'allows multiple selection by symbol' do
|
51
|
+
expect(@evan.select(:id, :name).first.id).to be_a(Fixnum)
|
52
|
+
end
|
53
|
+
|
54
|
+
it 'allows multiple selection by string and symbol' do
|
55
|
+
expect(@evan.select(:id, 'name').first.id).to be_a(Fixnum)
|
56
|
+
end
|
57
|
+
end
|
58
|
+
end
|
59
|
+
|
60
|
+
it "should raise a exception when trying to send a query to a shard that don't exists" do
|
61
|
+
expect { User.using(:dont_exists).all }.to raise_exception('Nonexistent Shard Name: dont_exists')
|
62
|
+
end
|
63
|
+
end
|
@@ -0,0 +1,55 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe 'when the database is both sharded and replicated' do
|
4
|
+
|
5
|
+
it 'should pick the shard based on current_shard when you have a sharded model' do
|
6
|
+
|
7
|
+
OctopusHelper.using_environment :sharded_replicated_slave_grouped do
|
8
|
+
Octopus.using(:russia) do
|
9
|
+
Cat.create!(:name => 'Thiago1')
|
10
|
+
Cat.create!(:name => 'Thiago2')
|
11
|
+
end
|
12
|
+
|
13
|
+
# We must stub here to make it effective (not in the `before(:each)` block)
|
14
|
+
allow(Octopus).to receive(:env).and_return('sharded_replicated_slave_grouped')
|
15
|
+
|
16
|
+
expect(Cat.using(:russia).count).to eq(2)
|
17
|
+
# It distributes queries between two slaves in the slave group
|
18
|
+
expect(Cat.using(:shard => :russia, :slave_group => :slaves1).count).to eq(0)
|
19
|
+
expect(Cat.using(:shard => :russia, :slave_group => :slaves1).count).to eq(2)
|
20
|
+
expect(Cat.using(:shard => :russia, :slave_group => :slaves1).count).to eq(0)
|
21
|
+
# It distributes queries between two slaves in the slave group
|
22
|
+
expect(Cat.using(:shard => :russia, :slave_group => :slaves2).count).to eq(2)
|
23
|
+
expect(Cat.using(:shard => :russia, :slave_group => :slaves2).count).to eq(0)
|
24
|
+
expect(Cat.using(:shard => :russia, :slave_group => :slaves2).count).to eq(2)
|
25
|
+
|
26
|
+
expect(Cat.using(:europe).count).to eq(0)
|
27
|
+
expect(Cat.using(:shard => :europe, :slave_group => :slaves1)
|
28
|
+
.count).to eq(0)
|
29
|
+
expect(Cat.using(:shard => :europe, :slave_group => :slaves2)
|
30
|
+
.count).to eq(2)
|
31
|
+
end
|
32
|
+
end
|
33
|
+
|
34
|
+
it 'should make queries to master when slave groups are configured for the shard but not selected' do
|
35
|
+
OctopusHelper.using_environment :sharded_replicated_slave_grouped do
|
36
|
+
Octopus.using(:europe) do
|
37
|
+
# All the queries go to :master(`octopus_shard_1`)
|
38
|
+
|
39
|
+
Cat.create!(:name => 'Thiago1')
|
40
|
+
Cat.create!(:name => 'Thiago2')
|
41
|
+
|
42
|
+
# In `database.yml` and `shards.yml`, we have configured 1 master and 6 slaves for `sharded_replicated_slave_grouped`
|
43
|
+
# So we can ensure Octopus is not distributing queries between them
|
44
|
+
# by asserting 1 + 6 = 7 queries go to :master(`octopus_shard_1`)
|
45
|
+
expect(Cat.count).to eq(2)
|
46
|
+
expect(Cat.count).to eq(2)
|
47
|
+
expect(Cat.count).to eq(2)
|
48
|
+
expect(Cat.count).to eq(2)
|
49
|
+
expect(Cat.count).to eq(2)
|
50
|
+
expect(Cat.count).to eq(2)
|
51
|
+
expect(Cat.count).to eq(2)
|
52
|
+
end
|
53
|
+
end
|
54
|
+
end
|
55
|
+
end
|
@@ -0,0 +1,33 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe 'when the database is not entire sharded' do
|
4
|
+
before(:each) do
|
5
|
+
allow(Octopus).to receive(:env).and_return('not_entire_sharded')
|
6
|
+
OctopusHelper.clean_connection_proxy
|
7
|
+
end
|
8
|
+
|
9
|
+
it 'should not send all queries to the specified slave' do
|
10
|
+
skip
|
11
|
+
# User.create!(:name => "Thiago")
|
12
|
+
#
|
13
|
+
# using_environment :not_entire_sharded do
|
14
|
+
# Octopus.using(:russia) do
|
15
|
+
# User.create!(:name => "Thiago")
|
16
|
+
# end
|
17
|
+
# end
|
18
|
+
#
|
19
|
+
# User.count.should == 2
|
20
|
+
end
|
21
|
+
|
22
|
+
it 'should pick the shard based on current_shard when you have a sharded model' do
|
23
|
+
Cat.create!(:name => 'Thiago')
|
24
|
+
|
25
|
+
OctopusHelper.using_environment :not_entire_sharded do
|
26
|
+
Octopus.using(:russia) do
|
27
|
+
Cat.create!(:name => 'Thiago')
|
28
|
+
end
|
29
|
+
end
|
30
|
+
|
31
|
+
expect(Cat.count).to eq(1)
|
32
|
+
end
|
33
|
+
end
|
data/spec/spec_helper.rb
ADDED
@@ -0,0 +1,16 @@
|
|
1
|
+
require 'rubygems'
|
2
|
+
require 'pry'
|
3
|
+
require 'bundler/setup'
|
4
|
+
require 'octopus'
|
5
|
+
|
6
|
+
Octopus.instance_variable_set(:@directory, File.dirname(__FILE__))
|
7
|
+
|
8
|
+
# Requires supporting files with custom matchers and macros, etc,
|
9
|
+
# in ./support/ and its subdirectories.
|
10
|
+
Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each { |f| require f }
|
11
|
+
|
12
|
+
RSpec.configure do |config|
|
13
|
+
config.before(:each) do |example|
|
14
|
+
OctopusHelper.clean_all_shards(example.metadata[:shards])
|
15
|
+
end
|
16
|
+
end
|
@@ -0,0 +1,15 @@
|
|
1
|
+
module ActiveRecord
|
2
|
+
class Base
|
3
|
+
def self.modify_config_connection(config)
|
4
|
+
ConnectionAdapters::ModifyConfigAdapter.new(config)
|
5
|
+
end
|
6
|
+
end
|
7
|
+
|
8
|
+
module ConnectionAdapters
|
9
|
+
class ModifyConfigAdapter < AbstractAdapter
|
10
|
+
def initialize(config)
|
11
|
+
config.replace(config.symbolize_keys)
|
12
|
+
end
|
13
|
+
end
|
14
|
+
end
|
15
|
+
end
|
@@ -0,0 +1,118 @@
|
|
1
|
+
# Rails 3.1 needs to do some introspection around the base class, which requires
|
2
|
+
# the model be a descendent of ActiveRecord::Base.
|
3
|
+
class BlankModel < ActiveRecord::Base; end
|
4
|
+
|
5
|
+
# The user class is just sharded, not replicated
|
6
|
+
class User < ActiveRecord::Base
|
7
|
+
scope :thiago, -> { where(:name => 'Thiago') }
|
8
|
+
|
9
|
+
def awesome_queries
|
10
|
+
Octopus.using(:canada) do
|
11
|
+
User.create(:name => 'teste')
|
12
|
+
end
|
13
|
+
end
|
14
|
+
end
|
15
|
+
|
16
|
+
# The client class isn't replicated
|
17
|
+
class Client < ActiveRecord::Base
|
18
|
+
has_many :items
|
19
|
+
has_many :comments, :as => :commentable
|
20
|
+
end
|
21
|
+
|
22
|
+
# This class is replicated
|
23
|
+
class Cat < ActiveRecord::Base
|
24
|
+
replicated_model
|
25
|
+
# sharded_model()
|
26
|
+
end
|
27
|
+
|
28
|
+
# This class sets its own connection
|
29
|
+
class CustomConnection < ActiveRecord::Base
|
30
|
+
self.table_name = 'custom'
|
31
|
+
octopus_establish_connection(:adapter => 'mysql2', :database => 'octopus_shard_2', :username => 'root', :password => '')
|
32
|
+
end
|
33
|
+
|
34
|
+
# This items belongs to a client
|
35
|
+
class Item < ActiveRecord::Base
|
36
|
+
belongs_to :client
|
37
|
+
has_many :parts
|
38
|
+
end
|
39
|
+
|
40
|
+
class Part < ActiveRecord::Base
|
41
|
+
belongs_to :item
|
42
|
+
end
|
43
|
+
|
44
|
+
class Keyboard < ActiveRecord::Base
|
45
|
+
replicated_model
|
46
|
+
validates_uniqueness_of :name
|
47
|
+
belongs_to :computer
|
48
|
+
end
|
49
|
+
|
50
|
+
class Computer < ActiveRecord::Base
|
51
|
+
has_one :keyboard
|
52
|
+
end
|
53
|
+
|
54
|
+
class Role < ActiveRecord::Base
|
55
|
+
has_and_belongs_to_many :permissions
|
56
|
+
end
|
57
|
+
|
58
|
+
class Permission < ActiveRecord::Base
|
59
|
+
has_and_belongs_to_many :roles
|
60
|
+
end
|
61
|
+
|
62
|
+
class Assignment < ActiveRecord::Base
|
63
|
+
belongs_to :programmer
|
64
|
+
belongs_to :project
|
65
|
+
end
|
66
|
+
|
67
|
+
class Programmer < ActiveRecord::Base
|
68
|
+
has_many :assignments
|
69
|
+
has_many :projects, :through => :assignments
|
70
|
+
end
|
71
|
+
|
72
|
+
class Project < ActiveRecord::Base
|
73
|
+
has_many :assignments
|
74
|
+
has_many :programmers, :through => :assignments
|
75
|
+
end
|
76
|
+
|
77
|
+
class Comment < ActiveRecord::Base
|
78
|
+
belongs_to :commentable, :polymorphic => true
|
79
|
+
scope :open, -> { where(open: true) }
|
80
|
+
end
|
81
|
+
|
82
|
+
class Bacon < ActiveRecord::Base
|
83
|
+
self.table_name = 'yummy'
|
84
|
+
end
|
85
|
+
|
86
|
+
class Cheese < ActiveRecord::Base
|
87
|
+
self.table_name = 'yummy'
|
88
|
+
end
|
89
|
+
|
90
|
+
class Ham < ActiveRecord::Base
|
91
|
+
self.table_name = 'yummy'
|
92
|
+
end
|
93
|
+
|
94
|
+
# This class sets its own connection
|
95
|
+
class Advert < ActiveRecord::Base
|
96
|
+
establish_connection(:adapter => 'postgresql', :database => 'octopus_shard_1', :username => ENV['POSTGRES_USER'] || 'postgres', :password => '')
|
97
|
+
end
|
98
|
+
|
99
|
+
class MmorpgPlayer < ActiveRecord::Base
|
100
|
+
has_many :weapons
|
101
|
+
has_many :skills
|
102
|
+
end
|
103
|
+
|
104
|
+
class Weapon < ActiveRecord::Base
|
105
|
+
belongs_to :mmorpg_player, :inverse_of => :weapons
|
106
|
+
validates :hand, :uniqueness => { :scope => :mmorpg_player_id }
|
107
|
+
validates_presence_of :mmorpg_player
|
108
|
+
has_many :skills
|
109
|
+
end
|
110
|
+
|
111
|
+
class Skill < ActiveRecord::Base
|
112
|
+
belongs_to :weapon, :inverse_of => :skills
|
113
|
+
belongs_to :mmorpg_player, :inverse_of => :skills
|
114
|
+
|
115
|
+
validates_presence_of :weapon
|
116
|
+
validates_presence_of :mmorpg_player
|
117
|
+
validates :name, :uniqueness => { :scope => :mmorpg_player_id }
|
118
|
+
end
|