Created
December 1, 2015 10:14
-
-
Save tsyber1an/4229a25869a06782d6ab to your computer and use it in GitHub Desktop.
sidekiq.rb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if ENV["PROFILE"] | |
require "objspace" | |
ObjectSpace.trace_object_allocations_start | |
Sidekiq.logger.info "allocations tracing enabled" | |
module Sidekiq | |
module Middleware | |
module Server | |
class Profiler | |
# Number of jobs to process before reporting | |
JOBS = 1 | |
class << self | |
mattr_accessor :counter | |
self.counter = 0 | |
def synchronize(&block) | |
@lock ||= Mutex.new | |
@lock.synchronize(&block) | |
end | |
end | |
def call(worker_instance, item, queue) | |
begin | |
yield | |
ensure | |
self.class.synchronize do | |
self.class.counter += 1 | |
if self.class.counter % JOBS == 0 | |
Sidekiq.logger.info "reporting allocations after #{self.class.counter} jobs" | |
GC.start | |
ObjectSpace.dump_all(output: File.open("heap.json", "w")) | |
Sidekiq.logger.info "heap saved to heap.json" | |
end | |
end | |
end | |
end | |
end | |
end | |
end | |
end | |
Sidekiq.configure_server do |config| | |
config.server_middleware do |chain| | |
chain.add Sidekiq::Middleware::Server::Profiler | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment