belated 0.5.3 → 0.5.7

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2e16dfb18af8fa012bede8622dba2328f725884870aa921f1759350350e50382
4
- data.tar.gz: 522d6992077f9fcc93c250ccc3dd20d818d60633a3dcf9874d0cc469d225c283
3
+ metadata.gz: 0c1e102693d57c373c84b2f6a4fb5624770334b0fb15bc3cffa05541cf7bbe29
4
+ data.tar.gz: bb18635e1ce9a04d83618cbd41fbdb91912c9b2f5c2d5f9dc6715154ef9254dc
5
5
  SHA512:
6
- metadata.gz: 28cc95841c797852585a165fabf2a9bab8d27da36d204e92daa7a3ec03db142a990d0e90647fef928d14e7520ad03499872187a6adfa10df8b1e55a15e1b0c88
7
- data.tar.gz: 41b757722ecffe023764820b9992e3e0f007cd6bbe41ce473f8398aaf65d50a8d4e8e609acd61c79e0c6e58f3fdc8be57cc20424c1bf6bd11753be9cb95a5217
6
+ metadata.gz: 3465242fd5fe5a55ccd288cbc7d034ad6538e4bd75d8eeaa60c65b73e2f2a2c545ce63885172b85a8ec1e5c5a320dd51eaaf2038542bcc0f95da7a381973a217
7
+ data.tar.gz: f889516ac99765cfb5aa744589c614e7d6c59b7488223214e1f8a8eb6da879fef0a0b66556609dd625a04dcba454300f1915b1e45ff01a68e2bc212ea4ed4857
@@ -10,7 +10,8 @@ jobs:
10
10
  - name: Set up Ruby
11
11
  uses: ruby/setup-ruby@v1
12
12
  with:
13
- ruby-version: 3.0.1
13
+ ruby-version: 3.0.2
14
14
  bundler-cache: true
15
+ cache-version: 1
15
16
  - name: Run the default task
16
17
  run: bundle exec rake
data/.rubocop.yml CHANGED
@@ -1,7 +1,12 @@
1
- require: rubocop-performance
2
1
  AllCops:
3
2
  TargetRubyVersion: 2.7
4
3
  NewCops: enable
4
+ Exclude:
5
+ - 'dummy/**/*'
6
+ - 'vendor/**/*'
7
+
8
+ Lint/HashCompareByIdentity:
9
+ Enabled: false
5
10
 
6
11
  Style/StringLiterals:
7
12
  Enabled: true
@@ -23,9 +28,6 @@ Style/AsciiComments:
23
28
  Style/ClassVars:
24
29
  Enabled: false
25
30
 
26
- Style/Documentation:
27
- Enabled: false
28
-
29
31
  Style/GlobalVars:
30
32
  Enabled: false
31
33
 
data/CHANGELOG.md CHANGED
@@ -1,5 +1,24 @@
1
1
  ## [Unreleased]
2
2
 
3
+ ## [0.5.7] - 2021-08-18
4
+
5
+ - Got errors under heavy load and restarting. Hopefully fixed by rescuing the DRb connection error.
6
+ ## [0.5.6] - 2021-08-17
7
+
8
+ - Now the client has a hash table that holds references to the objects you push through it. This is to get by GC, otherwise the objects are collected on clientside, but are still referenced on server side. This means that you do not want to use two instances of Client at the same time. Also, might need to write a way to close the client...
9
+ - Should work a bit more safely now! Performance testing 0.5.5 online using a Rails project, it performed horribly, so it should be a bit better now.
10
+ ## [0.5.5] - 2021-08-15
11
+
12
+ - Use SortedSet for future jobs, to avoid having to go through the whole list every few seconds.
13
+
14
+
15
+ ## [0.5.4] - 2021-08-13
16
+
17
+ - Client was using 100% CPU when it had no connection. (on $5 Digital Ocean droplet) Should be fixed now.
18
+
19
+ ## [0.5.3] - 2021-08-13
20
+
21
+ - A bit less looping - better performance.
3
22
  ## [0.5.2] - 2021-08-13
4
23
 
5
24
  - An error with shutdown handling was fixed.
data/Gemfile CHANGED
@@ -13,6 +13,6 @@ gem 'database_cleaner-active_record'
13
13
  gem 'rails', '>= 6.1.3'
14
14
  gem 'rspec-rails'
15
15
  gem 'rubocop', '~> 1.7'
16
- gem 'rubocop-performance', require: false
16
+ gem 'rubocop-discourse'
17
17
  gem 'sqlite3'
18
18
  gem 'stackprof'
data/Gemfile.lock CHANGED
@@ -1,9 +1,10 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- belated (0.5.3)
4
+ belated (0.5.7)
5
5
  drb
6
6
  dry-configurable
7
+ sorted_set
7
8
 
8
9
  GEM
9
10
  remote: https://rubygems.org/
@@ -135,6 +136,7 @@ GEM
135
136
  thor (~> 1.0)
136
137
  rainbow (3.0.0)
137
138
  rake (13.0.6)
139
+ rbtree (0.4.4)
138
140
  regexp_parser (2.1.1)
139
141
  rexml (3.2.5)
140
142
  rspec (3.10.0)
@@ -158,21 +160,28 @@ GEM
158
160
  rspec-mocks (~> 3.10)
159
161
  rspec-support (~> 3.10)
160
162
  rspec-support (3.10.2)
161
- rubocop (1.18.3)
163
+ rubocop (1.19.0)
162
164
  parallel (~> 1.10)
163
165
  parser (>= 3.0.0.0)
164
166
  rainbow (>= 2.2.2, < 4.0)
165
167
  regexp_parser (>= 1.8, < 3.0)
166
168
  rexml
167
- rubocop-ast (>= 1.7.0, < 2.0)
169
+ rubocop-ast (>= 1.9.1, < 2.0)
168
170
  ruby-progressbar (~> 1.7)
169
171
  unicode-display_width (>= 1.4.0, < 3.0)
170
- rubocop-ast (1.7.0)
172
+ rubocop-ast (1.10.0)
171
173
  parser (>= 3.0.1.1)
172
- rubocop-performance (1.11.4)
173
- rubocop (>= 1.7.0, < 2.0)
174
- rubocop-ast (>= 0.4.0)
174
+ rubocop-discourse (2.4.2)
175
+ rubocop (>= 1.1.0)
176
+ rubocop-rspec (>= 2.0.0)
177
+ rubocop-rspec (2.4.0)
178
+ rubocop (~> 1.0)
179
+ rubocop-ast (>= 1.1.0)
175
180
  ruby-progressbar (1.11.0)
181
+ set (1.0.1)
182
+ sorted_set (1.0.3)
183
+ rbtree
184
+ set (~> 1.0)
176
185
  sprockets (4.0.2)
177
186
  concurrent-ruby (~> 1.0)
178
187
  rack (> 1, < 3)
@@ -203,7 +212,7 @@ DEPENDENCIES
203
212
  rspec (~> 3.0)
204
213
  rspec-rails
205
214
  rubocop (~> 1.7)
206
- rubocop-performance
215
+ rubocop-discourse
207
216
  sqlite3
208
217
  stackprof
209
218
 
data/README.md CHANGED
@@ -16,8 +16,10 @@ Can be used with or without Rails.
16
16
 
17
17
  TODO LIST:
18
18
 
19
+ - Use GDBM for queue storage? That way could maybe get rid of YAML dumping and make things a bit safer. Not ordered though, so maybe keep a list of the jobs as YAML and update it sometimes? Just as backup.
20
+ - Rescue `DRb::DRbRemoteError` when shutting down, might not need to if using GDBM?
19
21
  - Don't use class instance variables.
20
- - Make port configurable.
22
+ - Make DRb port configurable.
21
23
  - Don't hardcode timezone.
22
24
  - Add some checks to the client for proper jobs.
23
25
  - Have multiple queues?
@@ -27,6 +29,7 @@ TODO LIST:
27
29
  - Do some performance testing.
28
30
  - Deploy a Rails app to production that is using Belated
29
31
  and mention it in the readme. (Capistrano support?)
32
+ ([Wasurechatta](https://wasurechatta.com/))
30
33
  - Add a section telling people to use Sidekiq if they can
31
34
 
32
35
  ## Installation
@@ -101,7 +104,9 @@ If you don't want the job to run right away, you can also pass it a keyword para
101
104
  client.perform_belated(job, Time.now + 1.month)
102
105
  ```
103
106
 
104
- Note that you probably want to memoize the client, as it always creates a 'banker thread' now if you have no connection and there is the overhead of connecting to dRuby. Maybe even use it as a global!(`$client`)
107
+ Note that you probably want to memoize the client, as it always creates a 'banker thread' and there is the overhead of connecting to dRuby. Maybe even use it as a global!(`$client`).
108
+
109
+ The client also holds references to the jobs that have been pushed so that they are not collected by GC.
105
110
 
106
111
  # Settings
107
112
 
data/belated.gemspec CHANGED
@@ -33,6 +33,7 @@ Gem::Specification.new do |spec|
33
33
  # Uncomment to register a new dependency of your gem
34
34
  spec.add_dependency 'drb'
35
35
  spec.add_dependency 'dry-configurable'
36
+ spec.add_dependency 'sorted_set'
36
37
  spec.add_development_dependency 'byebug'
37
38
 
38
39
  # For more information and examples about making a new gem, checkout our
data/lib/belated.rb CHANGED
@@ -65,9 +65,9 @@ class Belated
65
65
  @@queue.push(:shutdown)
66
66
  end
67
67
  Thread.new { stop_workers }
68
- # Max 30 seconds to shutdown
68
+ # Max 40 seconds to shutdown
69
69
  timeout = 0
70
- until (timeout += 0.1) >= 30 || @@queue.empty? || $TESTING
70
+ until (timeout += 0.1) >= 40 || @@queue.empty? || $TESTING
71
71
  sleep 0.1
72
72
  end
73
73
  exit
@@ -89,19 +89,20 @@ class Belated
89
89
  end
90
90
 
91
91
  def enqueue_future_jobs
92
- log 'starting future jobs thread'
93
92
  loop do
94
93
  sleep 0.1
95
- if @@queue.future_jobs.empty?
96
- sleep 1
94
+ job = @@queue.future_jobs.min
95
+ if job.nil?
96
+ sleep 5
97
97
  next
98
98
  end
99
- @@queue.future_jobs.each_with_index do |job, i|
100
- if job.at <= Time.now.utc
101
- log "Deleting #{@@queue.future_jobs.delete_at(i)} from future jobs"
102
- @@queue.push(job)
103
- end
99
+ if job.at <= Time.now.utc
100
+ log "Deleting #{@@queue.future_jobs.delete(job)} from future jobs"
101
+ @@queue.push(job)
104
102
  end
103
+ rescue DRb::DRbConnError
104
+ log 'DRb connection error!!!!!!'
105
+ log stats
105
106
  end
106
107
  end
107
108
 
@@ -138,7 +139,7 @@ class Belated
138
139
 
139
140
  def banner_and_info
140
141
  log banner
141
- log "Currently running Belated version #{Belated::VERSION}"
142
+ log "Currently running Belated version #{Belated::VERSION} in #{Belated.config.environment}"
142
143
  log %(Belated running #{@worker_list&.length.to_i} workers on #{URI}...)
143
144
  end
144
145
 
@@ -7,7 +7,7 @@ class Belated
7
7
  # client = Belated::Client.new
8
8
  # client.enqueue(JubJub.new, at: Time.now + 5.seconds)
9
9
  class Client
10
- attr_accessor :queue, :bank, :banker_thread
10
+ attr_accessor :queue, :bank, :banker_thread, :table
11
11
 
12
12
  # Starts up the client.
13
13
  # Connects to the queue through DRb.
@@ -15,8 +15,10 @@ class Belated
15
15
  def initialize
16
16
  server_uri = Belated::URI
17
17
  DRb.start_service
18
+ self.table = {}
18
19
  self.bank = Thread::Queue.new
19
20
  self.queue = DRbObject.new_with_uri(server_uri)
21
+ start_banker_thread
20
22
  end
21
23
 
22
24
  # Thread in charge of handling the bank queue.
@@ -26,13 +28,27 @@ class Belated
26
28
  def start_banker_thread
27
29
  self.banker_thread = Thread.new do
28
30
  loop do
29
- job = bank.pop
31
+ sleep 0.01
30
32
 
31
- perform(job)
33
+ delete_from_table
34
+
35
+ if bank.empty?
36
+ sleep 10
37
+ else
38
+ perform(bank.pop)
39
+ end
32
40
  end
33
41
  end
34
42
  end
35
43
 
44
+ def delete_from_table
45
+ return if table.empty?
46
+
47
+ table.select { |_k, v| v.completed }.each do |key, _value|
48
+ table.delete(key)
49
+ end
50
+ end
51
+
36
52
  # The method that pushes the jobs to the queue.
37
53
  # If there is no connection, it pushes the job to the bank.
38
54
  # @param job [Object] - The the job to be pushed.
@@ -40,19 +56,27 @@ class Belated
40
56
  # @param max_retries [Integer] - Times the job should be retried if it fails.
41
57
  # @return [JobWrapper] - The job wrapper for the queue.
42
58
  def perform(job, at: nil, max_retries: 5)
59
+ log 'Passing a proc and at time is deprecated and will be removed in 0.6' if job.instance_of?(Proc) && !at.nil?
60
+
43
61
  job_wrapper = if job.is_a?(JobWrapper)
44
62
  job
45
63
  else
46
64
  JobWrapper.new(job: job, at: at, max_retries: max_retries)
47
65
  end
48
- pp queue.push(job_wrapper)
49
- job_wrapper
66
+ queue.push(job_wrapper)
67
+ table[job_wrapper.object_id] = job_wrapper
50
68
  rescue DRb::DRbConnError
51
69
  bank.push(job_wrapper)
52
- start_banker_thread if banker_thread.nil?
53
- banker_thread.wakeup if banker_thread.status == 'sleep'
54
70
  end
55
71
  alias perform_belated perform
56
72
  alias perform_later perform
73
+
74
+ private
75
+
76
+ def drb_connected?
77
+ queue.connected?
78
+ rescue StandardError
79
+ false
80
+ end
57
81
  end
58
82
  end
@@ -2,9 +2,18 @@ require 'securerandom'
2
2
  require_relative 'logging'
3
3
 
4
4
  class Belated
5
+ # JobWrapper is a wrapper for a job. It is responsible for
6
+ # - logging
7
+ # - error handling
8
+ # - job execution
9
+ # - job result handling
10
+ # - job result logging
11
+ # - job retries
12
+ # - job retry delay
5
13
  class JobWrapper
14
+ include Comparable
6
15
  include Logging
7
- attr_accessor :retries, :max_retries, :id, :job, :at
16
+ attr_accessor :retries, :max_retries, :id, :job, :at, :completed
8
17
 
9
18
  def initialize(job:, max_retries: 5, at: nil)
10
19
  self.retries = 0
@@ -12,15 +21,22 @@ class Belated
12
21
  self.id = SecureRandom.uuid
13
22
  self.job = job
14
23
  self.at = at
24
+ self.completed = false
25
+ end
26
+
27
+ def <=>(other)
28
+ at <=> other.at
15
29
  end
16
30
 
17
31
  # rubocop:disable Lint/RescueException
18
32
  def perform
19
- if job.respond_to?(:call)
20
- job.call
21
- else
22
- job.perform
23
- end
33
+ resp = if job.respond_to?(:call)
34
+ job.call
35
+ else
36
+ job.perform
37
+ end
38
+ self.completed = true
39
+ resp
24
40
  rescue Exception => e
25
41
  case e.class
26
42
  when Interrupt, SignalException
@@ -1,4 +1,6 @@
1
1
  class Belated
2
+ # Logger for Belated.
3
+ # Include this module in your class to get a logger.
2
4
  module Logging
3
5
  extend self
4
6
 
data/lib/belated/queue.rb CHANGED
@@ -3,20 +3,27 @@
3
3
  require 'belated/job'
4
4
  require 'belated/logging'
5
5
  require 'belated/job_wrapper'
6
+ require 'sorted_set'
7
+
6
8
  class Belated
9
+ # Job queues that Belated uses.
10
+ # queue is the jobs that are currenly
11
+ # waiting for a worker to start working on them.
12
+ # future_jobs is a SortedSet of jobs that are going
13
+ # to be added to queue at some point in the future.
7
14
  class Queue
8
15
  include Logging
9
16
  attr_accessor :future_jobs
10
17
 
11
18
  FILE_NAME = 'belated_dump'
12
19
 
13
- def initialize(queue: Thread::Queue.new, future_jobs: [])
20
+ def initialize(queue: Thread::Queue.new, future_jobs: SortedSet.new)
14
21
  @queue = queue
15
22
  self.future_jobs = future_jobs
16
23
  end
17
24
 
18
25
  def push(job)
19
- if job == :shutdown || job.at.nil? ||
26
+ if job.is_a?(Symbol) || job.at.nil? ||
20
27
  job.at <= Time.now.utc
21
28
  @queue.push(job)
22
29
  else
@@ -72,10 +79,14 @@ class Belated
72
79
  pp File.open(FILE_NAME, 'wb') { |f| f.write(YAML.dump(class_array)) }
73
80
  end
74
81
 
82
+ def connected?
83
+ true
84
+ end
85
+
75
86
  private
76
87
 
77
88
  def proc_or_shutdown?(job)
78
- job.job.instance_of?(Proc) || job == :shutdown
89
+ job.is_a?(Symbol) || job.job.instance_of?(Proc)
79
90
  end
80
91
  end
81
92
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  class Belated
4
- VERSION = '0.5.3'
4
+ VERSION = '0.5.7'
5
5
  end
@@ -16,10 +16,12 @@ class Belated
16
16
  log "Worker #{@number} fetching jobs!"
17
17
  next unless (job = Belated.fetch_job)
18
18
 
19
- break if job == :shutdown
19
+ break if job.is_a?(Symbol)
20
20
 
21
21
  log "Worker #{@number} got job: #{job.inspect}"
22
- job.perform
22
+ log job.perform
23
+ rescue Errno::ECONNREFUSED, RangeError => e
24
+ log e
23
25
  end
24
26
  end
25
27
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: belated
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.3
4
+ version: 0.5.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sampo Kuokkanen
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-08-13 00:00:00.000000000 Z
11
+ date: 2021-08-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: drb
@@ -38,6 +38,20 @@ dependencies:
38
38
  - - ">="
39
39
  - !ruby/object:Gem::Version
40
40
  version: '0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: sorted_set
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ">="
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
41
55
  - !ruby/object:Gem::Dependency
42
56
  name: byebug
43
57
  requirement: !ruby/object:Gem::Requirement