safe-pg-migrations 3.1.1 → 3.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: af168a4b4f24db150d75db6f1451f1871aaedb01d3ae6356700b2b5e9a9c9554
4
- data.tar.gz: 95a282efef8b4a2ff73a6fdaa503b2f37f8b6d295b6ef93d723d1aa42e15609b
3
+ metadata.gz: af76c6a71e7dce8e5600ef503a813e679517ff798bbafca264d42d4715f2ed49
4
+ data.tar.gz: f69b55af92135e78ce3ca71589b006d4f2022c82002ea3c3ef66f2af676c2f23
5
5
  SHA512:
6
- metadata.gz: ab2c63020f0f282740638a77faced95ab1449597e51c6cde8d0e1e7b884c2768c231922f69278f8afc719e5295953ac13153ce5a372dbc831b6d3b41c2c027f9
7
- data.tar.gz: 77181bd3101c0f16de3d2f1d7efea52144140346ee841224e2939e4408206dca2e811084641b0541f99d3a2ef0587c3e351cedecf97b5f9daaa5c592de2cd1b5
6
+ metadata.gz: 447160106752cfce33c77671cecd77fd2ead10c5457b51ef739b2ffb5583a8c8ba0931fab9570b0936d1add997313b1a2622a6e6f32538759b60c71bd319686c
7
+ data.tar.gz: 2b3069d2d35658a4681c989cc1b58a6a0b5d92dd6a73001c9cf3aa3103cec76b049d31e84c061082e9d50e33158215e6b048ba145d5bcfda72b7ebeba9f1eafe
@@ -1,9 +1,12 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  require 'active_support/core_ext/numeric/time'
4
+ require 'safe-pg-migrations/helpers/pg_helper'
4
5
 
5
6
  module SafePgMigrations
6
7
  class Configuration
8
+ include Helpers::PgHelper
9
+
7
10
  attr_accessor(*%i[
8
11
  backfill_batch_size
9
12
  backfill_pause
@@ -77,12 +80,5 @@ module SafePgMigrations
77
80
  # By reducing the lock timeout by a very small margin, we ensure that the lock timeout is raised in priority
78
81
  pg_duration safe_timeout * 0.99
79
82
  end
80
-
81
- private
82
-
83
- def pg_duration(duration)
84
- value, unit = duration.integer? ? [duration, 's'] : [(duration * 1000).to_i, 'ms']
85
- "#{value}#{unit}"
86
- end
87
83
  end
88
84
  end
@@ -0,0 +1,12 @@
1
+ # frozen_string_literal: true
2
+
3
+ module SafePgMigrations
4
+ module Helpers
5
+ module PgHelper
6
+ def pg_duration(duration)
7
+ value, unit = duration.integer? ? [duration, 's'] : [(duration * 1000).to_i, 'ms']
8
+ "#{value}#{unit}"
9
+ end
10
+ end
11
+ end
12
+ end
@@ -3,6 +3,7 @@
3
3
  module SafePgMigrations
4
4
  module StatementRetrier
5
5
  include Helpers::StatementsHelper
6
+ include Helpers::PgHelper
6
7
 
7
8
  RETRIABLE_SCHEMA_STATEMENTS.each do |method|
8
9
  define_method method do |*args, **options, &block|
@@ -13,17 +14,14 @@ module SafePgMigrations
13
14
  private
14
15
 
15
16
  def retry_if_lock_timeout
16
- initial_lock_timeout = SafePgMigrations.config.lock_timeout
17
+ @lock_timeout = SafePgMigrations.config.lock_timeout
17
18
  number_of_retries = 0
18
19
  begin
19
20
  number_of_retries += 1
20
21
  yield
21
- rescue ActiveRecord::LockWaitTimeout
22
+ rescue ActiveRecord::LockWaitTimeout => e
22
23
  # Retrying is useless if we're inside a transaction.
23
- if transaction_open? || number_of_retries >= SafePgMigrations.config.max_tries
24
- SafePgMigrations.config.lock_timeout = initial_lock_timeout
25
- raise
26
- end
24
+ raise e if transaction_open? || number_of_retries >= SafePgMigrations.config.max_tries
27
25
 
28
26
  retry_delay = SafePgMigrations.config.retry_delay
29
27
  Helpers::Logger.say "Retrying in #{retry_delay} seconds...", sub_item: true
@@ -39,20 +37,23 @@ module SafePgMigrations
39
37
  end
40
38
 
41
39
  def increase_lock_timeout
42
- Helpers::Logger.say " Increasing the lock timeout... Currently set to #{SafePgMigrations.config.lock_timeout}",
40
+ Helpers::Logger.say " Increasing the lock timeout... Currently set to #{pg_duration(@lock_timeout)}",
43
41
  sub_item: true
44
- SafePgMigrations.config.lock_timeout = (SafePgMigrations.config.lock_timeout + lock_timeout_step)
45
- unless SafePgMigrations.config.lock_timeout < SafePgMigrations.config.max_lock_timeout_for_retry
46
- SafePgMigrations.config.lock_timeout = SafePgMigrations.config.max_lock_timeout_for_retry
42
+ @lock_timeout += lock_timeout_step
43
+ unless @lock_timeout < SafePgMigrations.config.max_lock_timeout_for_retry
44
+ @lock_timeout = SafePgMigrations.config.max_lock_timeout_for_retry
47
45
  end
48
- Helpers::Logger.say " Lock timeout is now set to #{SafePgMigrations.config.lock_timeout}", sub_item: true
46
+ execute("SET lock_timeout TO '#{pg_duration(@lock_timeout)}'")
47
+ Helpers::Logger.say " Lock timeout is now set to #{pg_duration(@lock_timeout)}", sub_item: true
49
48
  end
50
49
 
51
50
  def lock_timeout_step
51
+ return @lock_timeout_step if defined?(@lock_timeout_step)
52
+
52
53
  max_lock_timeout_for_retry = SafePgMigrations.config.max_lock_timeout_for_retry
53
54
  lock_timeout = SafePgMigrations.config.lock_timeout
54
55
  max_tries = SafePgMigrations.config.max_tries
55
- @lock_timeout_step ||= (max_lock_timeout_for_retry - lock_timeout) / (max_tries - 1)
56
+ @lock_timeout_step = (max_lock_timeout_for_retry - lock_timeout) / (max_tries - 1)
56
57
  end
57
58
  end
58
59
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module SafePgMigrations
4
- VERSION = '3.1.1'
4
+ VERSION = '3.1.2'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: safe-pg-migrations
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.1.1
4
+ version: 3.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Matthieu Prat
@@ -11,7 +11,7 @@ authors:
11
11
  autorequire:
12
12
  bindir: bin
13
13
  cert_chain: []
14
- date: 2024-05-16 00:00:00.000000000 Z
14
+ date: 2025-03-18 00:00:00.000000000 Z
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency
17
17
  name: activerecord
@@ -57,6 +57,7 @@ files:
57
57
  - lib/safe-pg-migrations/helpers/blocking_activity_selector.rb
58
58
  - lib/safe-pg-migrations/helpers/index_helper.rb
59
59
  - lib/safe-pg-migrations/helpers/logger.rb
60
+ - lib/safe-pg-migrations/helpers/pg_helper.rb
60
61
  - lib/safe-pg-migrations/helpers/satisfied_helper.rb
61
62
  - lib/safe-pg-migrations/helpers/session_setting_management.rb
62
63
  - lib/safe-pg-migrations/helpers/statements_helper.rb
@@ -99,7 +100,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
99
100
  - !ruby/object:Gem::Version
100
101
  version: '0'
101
102
  requirements: []
102
- rubygems_version: 3.4.19
103
+ rubygems_version: 3.3.7
103
104
  signing_key:
104
105
  specification_version: 4
105
106
  summary: Make your PG migrations safe.