percona_ar 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +9 -0
- data/.rspec +2 -0
- data/.travis.yml +10 -0
- data/CODE_OF_CONDUCT.md +13 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +21 -0
- data/README.md +63 -0
- data/Rakefile +6 -0
- data/bin/console +14 -0
- data/bin/setup +7 -0
- data/lib/generators/percona_ar/percona_ar_generator.rb +16 -0
- data/lib/percona_ar/connection.rb +26 -0
- data/lib/percona_ar/migration.rb +6 -0
- data/lib/percona_ar/pt_online_schema_change_executor.rb +33 -0
- data/lib/percona_ar/version.rb +3 -0
- data/lib/percona_ar.rb +10 -0
- data/percona_ar.gemspec +26 -0
- metadata +133 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 010f7f273259e09c3015a47dab02ad0d4b6a2011
|
4
|
+
data.tar.gz: a27b2a053febc0cb026370830d890daa3d3ae60a
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 54e9295eb40eae2aa6f9a3d0c78e17f6c12957a215b3feecd3254ea868b8fc02a22458567d7f6639404282589eb4472c323a8ff782cd2d0aeb157571d681d620
|
7
|
+
data.tar.gz: 215e6bd600e0ee695208ac87fa2b4d957277a67bfdb7684c640762b8d20e88e300ab98c981a5ad06143043d80dc5497ead41f5efb8d5209e9a90642f62742675
|
data/.gitignore
ADDED
data/.rspec
ADDED
data/.travis.yml
ADDED
data/CODE_OF_CONDUCT.md
ADDED
@@ -0,0 +1,13 @@
|
|
1
|
+
# Contributor Code of Conduct
|
2
|
+
|
3
|
+
As contributors and maintainers of this project, we pledge to respect all people who contribute through reporting issues, posting feature requests, updating documentation, submitting pull requests or patches, and other activities.
|
4
|
+
|
5
|
+
We are committed to making participation in this project a harassment-free experience for everyone, regardless of level of experience, gender, gender identity and expression, sexual orientation, disability, personal appearance, body size, race, ethnicity, age, or religion.
|
6
|
+
|
7
|
+
Examples of unacceptable behavior by participants include the use of sexual language or imagery, derogatory comments or personal attacks, trolling, public or private harassment, insults, or other unprofessional conduct.
|
8
|
+
|
9
|
+
Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct. Project maintainers who do not follow the Code of Conduct may be removed from the project team.
|
10
|
+
|
11
|
+
Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by opening an issue or contacting one or more of the project maintainers.
|
12
|
+
|
13
|
+
This Code of Conduct is adapted from the [Contributor Covenant](http://contributor-covenant.org), version 1.0.0, available at [http://contributor-covenant.org/version/1/0/0/](http://contributor-covenant.org/version/1/0/0/)
|
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2016 James Mac William
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
13
|
+
all copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
|
+
THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,63 @@
|
|
1
|
+
# PerconaAr
|
2
|
+
|
3
|
+
[![Build
|
4
|
+
Status](https://travis-ci.org/jamesmacwilliam/percona_ar.svg?branch=master)](https://travis-ci.org/jamesmacwilliam/percona_ar)
|
5
|
+
|
6
|
+
This gem adds another tool in your belt for rails migrations. You can
|
7
|
+
stil generate migrations, and they will function just as they always
|
8
|
+
have, but there is also the option of generating percona_ar migrations,
|
9
|
+
which use the percona tool for ALTER statements.
|
10
|
+
|
11
|
+
## Installation
|
12
|
+
|
13
|
+
Add this line to your application's Gemfile:
|
14
|
+
|
15
|
+
```ruby
|
16
|
+
gem 'percona_ar'
|
17
|
+
```
|
18
|
+
|
19
|
+
And then execute:
|
20
|
+
|
21
|
+
$ bundle
|
22
|
+
|
23
|
+
Or install it yourself as:
|
24
|
+
|
25
|
+
$ gem install percona_ar
|
26
|
+
|
27
|
+
## Dependencies
|
28
|
+
|
29
|
+
this tool relies on `pt-online-schema-change` being available from where
|
30
|
+
the migration is run.
|
31
|
+
|
32
|
+
https://www.percona.com/doc/percona-toolkit/2.1/pt-online-schema-change.html
|
33
|
+
|
34
|
+
## Usage
|
35
|
+
|
36
|
+
- to get started, run: `rails generate percona_ar SomeMigrationName`
|
37
|
+
|
38
|
+
- open the file in the db/migrate directory and use it just like you would
|
39
|
+
a normal rails migration
|
40
|
+
|
41
|
+
- The ALTER commands will get run by pt-online-schema-change, and all
|
42
|
+
other commands get run by ActiveRecord just like they normally would
|
43
|
+
|
44
|
+
- All the usual rails migration things still apply, your schema updates
|
45
|
+
still get kept track of wherever you usually have that done,
|
46
|
+
version gets added to schema_migrations, and rails yells at you if you
|
47
|
+
haven't yet migrated.
|
48
|
+
|
49
|
+
## Development
|
50
|
+
|
51
|
+
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
52
|
+
|
53
|
+
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
54
|
+
|
55
|
+
## Contributing
|
56
|
+
|
57
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/percona_ar_migration. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](contributor-covenant.org) code of conduct.
|
58
|
+
|
59
|
+
|
60
|
+
## License
|
61
|
+
|
62
|
+
The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
|
63
|
+
|
data/Rakefile
ADDED
data/bin/console
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require "bundler/setup"
|
4
|
+
require "percona_ar_migration"
|
5
|
+
|
6
|
+
# You can add fixtures and/or initialization code here to make experimenting
|
7
|
+
# with your gem easier. You can also use a different console, if you like.
|
8
|
+
|
9
|
+
# (If you use this, don't forget to add pry to your Gemfile!)
|
10
|
+
# require "pry"
|
11
|
+
# Pry.start
|
12
|
+
|
13
|
+
require "irb"
|
14
|
+
IRB.start
|
data/bin/setup
ADDED
@@ -0,0 +1,16 @@
|
|
1
|
+
class PerconaArGenerator < Rails::Generators::NamedBase
|
2
|
+
def create_percona_file
|
3
|
+
create_file(filename, <<-EOT)
|
4
|
+
class #{name} < PerconaAr::Migration
|
5
|
+
def change
|
6
|
+
# ALTER commands will get run by the Percona tool,
|
7
|
+
# all other commands will get run by ActiveRecord
|
8
|
+
end
|
9
|
+
end
|
10
|
+
EOT
|
11
|
+
end
|
12
|
+
|
13
|
+
def filename
|
14
|
+
"db/migrate/#{Time.now.strftime("%Y%m%d%H%M%S")}_#{name.underscore}.rb"
|
15
|
+
end
|
16
|
+
end
|
@@ -0,0 +1,26 @@
|
|
1
|
+
class PerconaAr::Connection < ActiveRecord::ConnectionAdapters::Mysql2Adapter
|
2
|
+
def initialize(conn)
|
3
|
+
super(
|
4
|
+
conn.instance_variable_get(:@connection),
|
5
|
+
Logger.new("/dev/null"),
|
6
|
+
conn.instance_variable_get(:@connection_options),
|
7
|
+
conn.instance_variable_get(:@config)
|
8
|
+
)
|
9
|
+
end
|
10
|
+
|
11
|
+
def execute(sql, name = nil)
|
12
|
+
return super unless sql =~ /^ALTER TABLE.*/
|
13
|
+
PerconaAr::PtOnlineSchemaChangeExecutor.new(sql).call
|
14
|
+
end
|
15
|
+
|
16
|
+
def not_implemented(*args)
|
17
|
+
raise NotImplementedError.new(
|
18
|
+
"This is not implemented with the percona tool, please use a standard migration"
|
19
|
+
)
|
20
|
+
end
|
21
|
+
|
22
|
+
alias :create_table :not_implemented
|
23
|
+
alias :remove_table :not_implemented
|
24
|
+
alias :change_table :not_implemented
|
25
|
+
alias :create_join_table :not_implemented
|
26
|
+
end
|
@@ -0,0 +1,33 @@
|
|
1
|
+
require 'rake'
|
2
|
+
require 'rake/file_utils'
|
3
|
+
|
4
|
+
class PerconaAr::PtOnlineSchemaChangeExecutor
|
5
|
+
include FileUtils
|
6
|
+
|
7
|
+
attr_accessor :sql
|
8
|
+
|
9
|
+
def initialize(sql)
|
10
|
+
@sql = sql
|
11
|
+
end
|
12
|
+
|
13
|
+
def call
|
14
|
+
if sql =~ /^ALTER TABLE `([^`]*)` (.*)/i
|
15
|
+
sh "#{boilerplate}#{suffix($1, $2)}"
|
16
|
+
end
|
17
|
+
end
|
18
|
+
|
19
|
+
private
|
20
|
+
|
21
|
+
def suffix(table, cmd)
|
22
|
+
"'#{cmd}' --recursion-method processlist --no-check-alter --execute D=#{config[:database]},t=#{table}"
|
23
|
+
|
24
|
+
end
|
25
|
+
|
26
|
+
def boilerplate
|
27
|
+
"pt-online-schema-change -u '#{config[:username]}' -h '#{config[:host]}' -p '#{config[:password]}' --alter "
|
28
|
+
end
|
29
|
+
|
30
|
+
def config
|
31
|
+
ActiveRecord::Base.connection_config
|
32
|
+
end
|
33
|
+
end
|
data/lib/percona_ar.rb
ADDED
@@ -0,0 +1,10 @@
|
|
1
|
+
require "mysql2"
|
2
|
+
require "active_record"
|
3
|
+
require "active_record/connection_adapters/mysql2_adapter"
|
4
|
+
require "percona_ar/version"
|
5
|
+
require "percona_ar/pt_online_schema_change_executor"
|
6
|
+
require "percona_ar/connection"
|
7
|
+
require "percona_ar/migration"
|
8
|
+
|
9
|
+
module PerconaAr
|
10
|
+
end
|
data/percona_ar.gemspec
ADDED
@@ -0,0 +1,26 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'percona_ar/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "percona_ar"
|
8
|
+
spec.version = PerconaAr::VERSION
|
9
|
+
spec.authors = ["James Mac William"]
|
10
|
+
spec.email = ["jimmy.macwilliam@gmail.com"]
|
11
|
+
|
12
|
+
spec.summary = %q{Use Percona (pt-online-schema-change) for migrations generated with this tool, all activerecord helpers are available.}
|
13
|
+
spec.homepage = "https://github.com/jamesmacwilliam/percona_ar"
|
14
|
+
spec.license = "MIT"
|
15
|
+
|
16
|
+
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
17
|
+
spec.bindir = "exe"
|
18
|
+
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
19
|
+
spec.require_paths = ["lib"]
|
20
|
+
|
21
|
+
spec.add_development_dependency "bundler", "~> 1.10"
|
22
|
+
spec.add_development_dependency "rake", "~> 10.0"
|
23
|
+
spec.add_development_dependency "rails", ">= 4.0.0"
|
24
|
+
spec.add_development_dependency "mysql2", ">= 0.3.0"
|
25
|
+
spec.add_development_dependency "rspec"
|
26
|
+
end
|
metadata
ADDED
@@ -0,0 +1,133 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: percona_ar
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- James Mac William
|
8
|
+
autorequire:
|
9
|
+
bindir: exe
|
10
|
+
cert_chain: []
|
11
|
+
date: 2016-03-25 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: bundler
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '1.10'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '1.10'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: rake
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '10.0'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '10.0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: rails
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - ">="
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: 4.0.0
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - ">="
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: 4.0.0
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: mysql2
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - ">="
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: 0.3.0
|
62
|
+
type: :development
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - ">="
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: 0.3.0
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: rspec
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - ">="
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '0'
|
76
|
+
type: :development
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - ">="
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: '0'
|
83
|
+
description:
|
84
|
+
email:
|
85
|
+
- jimmy.macwilliam@gmail.com
|
86
|
+
executables: []
|
87
|
+
extensions: []
|
88
|
+
extra_rdoc_files: []
|
89
|
+
files:
|
90
|
+
- ".gitignore"
|
91
|
+
- ".rspec"
|
92
|
+
- ".travis.yml"
|
93
|
+
- CODE_OF_CONDUCT.md
|
94
|
+
- Gemfile
|
95
|
+
- LICENSE.txt
|
96
|
+
- README.md
|
97
|
+
- Rakefile
|
98
|
+
- bin/console
|
99
|
+
- bin/setup
|
100
|
+
- lib/generators/percona_ar/percona_ar_generator.rb
|
101
|
+
- lib/percona_ar.rb
|
102
|
+
- lib/percona_ar/connection.rb
|
103
|
+
- lib/percona_ar/migration.rb
|
104
|
+
- lib/percona_ar/pt_online_schema_change_executor.rb
|
105
|
+
- lib/percona_ar/version.rb
|
106
|
+
- percona_ar.gemspec
|
107
|
+
homepage: https://github.com/jamesmacwilliam/percona_ar
|
108
|
+
licenses:
|
109
|
+
- MIT
|
110
|
+
metadata: {}
|
111
|
+
post_install_message:
|
112
|
+
rdoc_options: []
|
113
|
+
require_paths:
|
114
|
+
- lib
|
115
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
116
|
+
requirements:
|
117
|
+
- - ">="
|
118
|
+
- !ruby/object:Gem::Version
|
119
|
+
version: '0'
|
120
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
121
|
+
requirements:
|
122
|
+
- - ">="
|
123
|
+
- !ruby/object:Gem::Version
|
124
|
+
version: '0'
|
125
|
+
requirements: []
|
126
|
+
rubyforge_project:
|
127
|
+
rubygems_version: 2.4.5
|
128
|
+
signing_key:
|
129
|
+
specification_version: 4
|
130
|
+
summary: Use Percona (pt-online-schema-change) for migrations generated with this
|
131
|
+
tool, all activerecord helpers are available.
|
132
|
+
test_files: []
|
133
|
+
has_rdoc:
|