Class: PgEasyReplicate::CLI
- Inherits:
-
Thor
- Object
- Thor
- PgEasyReplicate::CLI
- Defined in:
- lib/pg_easy_replicate/cli.rb
Class Method Summary collapse
Instance Method Summary collapse
- #bootstrap ⇒ Object
- #cleanup ⇒ Object
- #config_check ⇒ Object
- #start_sync ⇒ Object
- #stats ⇒ Object
- #stop_sync ⇒ Object
-
#switchover ⇒ Object
method_option :bi_directional, aliases: “-b”, desc: “Setup replication from target database to source database”.
- #version ⇒ Object
Class Method Details
.exit_on_failure? ⇒ Boolean
136 137 138 |
# File 'lib/pg_easy_replicate/cli.rb', line 136 def self.exit_on_failure? true end |
Instance Method Details
#bootstrap ⇒ Object
42 43 44 |
# File 'lib/pg_easy_replicate/cli.rb', line 42 def bootstrap PgEasyReplicate.bootstrap() end |
#cleanup ⇒ Object
59 60 61 |
# File 'lib/pg_easy_replicate/cli.rb', line 59 def cleanup PgEasyReplicate.cleanup() end |
#config_check ⇒ Object
19 20 21 22 23 24 25 26 |
# File 'lib/pg_easy_replicate/cli.rb', line 19 def config_check PgEasyReplicate.assert_config( special_user_role: [:special_user_role], copy_schema: [:copy_schema], ) puts "✅ Config is looking good." end |
#start_sync ⇒ Object
82 83 84 |
# File 'lib/pg_easy_replicate/cli.rb', line 82 def start_sync PgEasyReplicate::Orchestrate.start_sync() end |
#stats ⇒ Object
123 124 125 126 127 128 129 |
# File 'lib/pg_easy_replicate/cli.rb', line 123 def stats if [:watch] PgEasyReplicate::Stats.follow([:group_name]) else PgEasyReplicate::Stats.print([:group_name]) end end |
#stop_sync ⇒ Object
92 93 94 |
# File 'lib/pg_easy_replicate/cli.rb', line 92 def stop_sync PgEasyReplicate::Orchestrate.stop_sync(group_name: [:group_name]) end |
#switchover ⇒ Object
method_option :bi_directional,
aliases: "-b",
desc:
"Setup replication from target database to source database"
110 111 112 113 114 115 |
# File 'lib/pg_easy_replicate/cli.rb', line 110 def switchover PgEasyReplicate::Orchestrate.switchover( group_name: [:group_name], lag_delta_size: [:lag_delta_size], ) end |
#version ⇒ Object
132 133 134 |
# File 'lib/pg_easy_replicate/cli.rb', line 132 def version puts PgEasyReplicate::VERSION end |