Class: Sequent::Rake::MigrationTasks

Inherits:
Rake::TaskLib
  • Object
show all
Includes:
Rake::DSL
Defined in:
lib/sequent/rake/migration_tasks.rb

Instance Method Summary collapse

Instance Method Details

#register_tasks!Object



16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
# File 'lib/sequent/rake/migration_tasks.rb', line 16

def register_tasks!
  namespace :sequent do
    desc <<~EOS
      Set the SEQUENT_ENV to RAILS_ENV or RACK_ENV if not already set
    EOS
    task :set_env_var do
      ENV['SEQUENT_ENV'] ||= ENV['RAILS_ENV'] || ENV['RACK_ENV']
    end

    desc <<~EOS
      Rake task that runs before all sequent rake tasks and after the environment is set.
      Hook applications can use to for instance run other rake tasks:

        Rake::Task['sequent:init'].enhance(['my_task'])

    EOS
    task init: :set_env_var

    desc 'Creates sequent view schema if not exists and runs internal migrations'
    task create_and_migrate_sequent_view_schema: ['sequent:init', :init] do
      ensure_sequent_env_set!
      Sequent::Migrations::ViewSchema.create_view_schema_if_not_exists(env: @env)
    end

    namespace :db do
      desc 'Creates the database and initializes the event_store schema for the current env'
      task create: ['sequent:init'] do
        ensure_sequent_env_set!

        db_config = Sequent::Support::Database.read_config(@env)
        Sequent::Support::Database.create!(db_config)

        Sequent::Migrations::SequentSchema.create_sequent_schema_if_not_exists(env: @env, fail_if_exists: true)
      end

      desc 'Drops the database for the current env'
      task :drop, [:production] => ['sequent:init'] do |_t, args|
        ensure_sequent_env_set!

        if @env == 'production' && args[:production] != 'yes_drop_production'
          fail <<~EOS
            Wont drop db in production unless you whitelist the environment as follows: rake sequent:db:drop[yes_drop_production]
          EOS
        end

        db_config = Sequent::Support::Database.read_config(@env)
        Sequent::Support::Database.drop!(db_config)
      end

      desc 'Creates the view schema for the current env'
      task create_view_schema: ['sequent:init'] do
        ensure_sequent_env_set!

        Sequent::Migrations::ViewSchema.create_view_schema_if_not_exists(env: @env)
      end

      desc 'Creates the event_store schema for the current env'
      task create_event_store: ['sequent:init'] do
        ensure_sequent_env_set!
        Sequent::Migrations::SequentSchema.create_sequent_schema_if_not_exists(env: @env, fail_if_exists: true)
      end

      desc 'Utility tasks that can be used to guard against unsafe usage of rails db:migrate directly'
      task :dont_use_db_migrate_directly do
        fail <<~EOS unless ENV['SEQUENT_MIGRATION_SCHEMAS'].present?
          Don't call rails db:migrate directly but wrap in your own task instead:

            task :migrate_db do
              ENV['SEQUENT_MIGRATION_SCHEMAS'] = 'public'
              Rake::Task['db:migrate'].invoke
            end

          You can choose whatever name for migrate_db you like.
        EOS
      end
    end

    namespace :migrate do
      desc <<~EOS
        Rake task that runs before all migrate rake tasks. Hook applications can use to for instance run other rake tasks.
      EOS
      task :init

      desc 'Prints the current version in the database'
      task current_version: [:create_and_migrate_sequent_view_schema] do
        puts "Current version in the database is: #{Sequent::Migrations::Versions.current_version}"
      end

      desc 'Returns whether a migration is currently running'
      task check_running_migrations: [:create_and_migrate_sequent_view_schema] do
        if Sequent::Migrations::Versions.running.any?
          puts <<~EOS
            Migration is running, current version: #{Sequent::Migrations::Versions.current_version},
            target version #{Sequent::Migrations::Versions.version_currently_migrating}
          EOS
        else
          puts 'No running migrations'
        end
      end

      desc 'Returns whether a migration is pending'
      task check_pending_migrations: [:create_and_migrate_sequent_view_schema] do
        if Sequent.new_version != Sequent::Migrations::Versions.current_version
          puts <<~EOS
            Migration is pending, current version: #{Sequent::Migrations::Versions.current_version},
            pending version: #{Sequent.new_version}
          EOS
        else
          puts 'No pending migrations'
        end
      end

      desc 'Aborts if a migration is pending'
      task abort_if_pending_migrations: [:create_and_migrate_sequent_view_schema] do
        abort if Sequent.new_version != Sequent::Migrations::Versions.current_version
      end

      desc <<-EOS
        Shows the current status of the migrations
      EOS
      task status: ['sequent:init', :init] do
        ensure_sequent_env_set!
        db_config = Sequent::Support::Database.read_config(@env)
        view_schema = Sequent::Migrations::ViewSchema.new(db_config: db_config)

        latest_done_version = Sequent::Migrations::Versions.done.latest
        latest_version = Sequent::Migrations::Versions.latest
        pending_version = Sequent.new_version
        case latest_version.status
        when Sequent::Migrations::Versions::DONE
          if pending_version == latest_version.version
            puts "Current version #{latest_version.version}, no pending changes"
          else
            puts "Current version #{latest_version.version}, pending version #{pending_version}"
          end
        when Sequent::Migrations::Versions::MIGRATE_ONLINE_RUNNING
          puts "Online migration from #{latest_done_version.version} to #{latest_version.version} is running"
        when Sequent::Migrations::Versions::MIGRATE_ONLINE_FINISHED
          projectors = view_schema.plan.projectors
          event_types = projectors.flat_map { |projector| projector.message_mapping.keys }.uniq.map(&:name)

          current_snapshot_xmin_xact_id = Sequent::Migrations::Versions.current_snapshot_xmin_xact_id
          pending_events = Sequent.configuration.event_record_class
            .where(event_type: event_types)
            .where('xact_id >= ?', current_snapshot_xmin_xact_id)
            .count
          print <<~EOS
            Online migration from #{latest_done_version.version} to #{latest_version.version} is finished.
            #{current_snapshot_xmin_xact_id - latest_version.xmin_xact_id} transactions behind current state (#{pending_events} pending events).
          EOS
        when Sequent::Migrations::Versions::MIGRATE_OFFLINE_RUNNING
          puts "Offline migration from #{latest_done_version.version} to #{latest_version.version} is running"
        end
      end

      desc <<~EOS
        Migrates the Projectors while the app is running. Call +sequent:migrate:offline+ after this successfully completed.
      EOS
      task online: ['sequent:init', :init] do
        ensure_sequent_env_set!

        db_config = Sequent::Support::Database.read_config(@env)
        view_schema = Sequent::Migrations::ViewSchema.new(db_config: db_config)

        view_schema.migrate_online
      end

      desc <<~EOS
        Migrates the events inserted while +online+ was running. It is expected +sequent:migrate:online+ ran first.
      EOS
      task offline: ['sequent:init', :init] do
        ensure_sequent_env_set!

        db_config = Sequent::Support::Database.read_config(@env)
        view_schema = Sequent::Migrations::ViewSchema.new(db_config: db_config)

        view_schema.migrate_offline
      end

      desc <<~EOS
        Runs the projectors in replay mode without making any changes to the database, useful for (performance) testing against real data.

        Pass a regular expression as parameter to select the projectors to run, otherwise all projectors are selected.
      EOS
      task :dryrun, %i[regex group_target_size] => ['sequent:init', :init] do |_task, args|
        ensure_sequent_env_set!

        db_config = Sequent::Support::Database.read_config(@env)
        view_schema = Sequent::DryRun::ViewSchema.new(db_config: db_config)

        Sequent.configuration.replay_group_target_size = group_target_size

        view_schema.migrate_dryrun(regex: args[:regex])
      end
    end

    namespace :snapshots do
      desc <<~EOS
        Rake task that runs before all snapshots rake tasks. Hook applications can use to for instance run other rake tasks.
      EOS
      task :init

      task :connect, ['sequent:init', :init, :set_env_var] do
        ensure_sequent_env_set!

        Sequent.configuration.command_handlers << Sequent::Core::AggregateSnapshotter.new

        db_config = Sequent::Support::Database.read_config(@env)
        Sequent::Support::Database.establish_connection(db_config)
      end

      desc <<~EOS
        Takes up-to `limit` snapshots, starting with the highest priority aggregates (based on snapshot outdated time and number of events)
      EOS
      task :take_snapshots, %i[limit] => :connect do |_t, args|
        limit = args['limit']&.to_i

        unless limit
          fail ArgumentError,
               'usage rake sequent:snapshots:take_snapshots[limit]'
        end

        aggregate_ids = Sequent.configuration.event_store.select_aggregates_for_snapshotting(limit:)

        Sequent.logger.info "Taking #{aggregate_ids.size} snapshots"
        aggregate_ids.each do |aggregate_id|
          Sequent.command_service.execute_commands(Sequent::Core::TakeSnapshot.new(aggregate_id:))
        end
      end

      desc <<~EOS
        Takes a new snapshot for the aggregate specified by `aggregate_id`
      EOS
      task :take_snapshot, %i[aggregate_id] => :connect do |_t, args|
        aggregate_id = args['aggregate_id']

        unless aggregate_id
          fail ArgumentError,
               'usage rake sequent:snapshots:take_snapshot[aggregate_id]'
        end

        Sequent.command_service.execute_commands(Sequent::Core::TakeSnapshot.new(aggregate_id:))
      end

      desc <<~EOS
        Delete all aggregate snapshots, which can negatively impact performance of a running system.
      EOS
      task delete_all: :connect do
        Sequent.configuration.event_store.delete_all_snapshots
        Sequent.logger.info 'Deleted all aggregate snapshots from the event store'
      end
    end
  end
end