Created
March 26, 2014 02:23
-
-
Save zhenwusw/9775827 to your computer and use it in GitHub Desktop.
Redis-profile
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
#!/usr/bin/env ruby | |
# Evaluates a sample of keys/values from each redis database, computing statistics for each key pattern: | |
# keys: number of keys matching the given pattern | |
# size: approximation of the associated memory occupied (based on size/length of value) | |
# percent: the proportion of this 'size' relative to the sample's total | |
# | |
# Copyright Weplay, Inc. 2010. Available for use under the MIT license. | |
require 'rubygems' | |
require 'redis' | |
require 'yaml' | |
SAMPLE_SIZE = 10_0000 # number of keys to sample from each db before computing stats | |
# Naive approximation of memory footprint: size/length of value. | |
def redis_size(db, k) | |
t = db.type(k) | |
case t | |
when 'string' then db.get(k).length | |
when 'list' then db.lrange(k, 0, -1).size | |
when 'zset' then db.zrange(k, 0, -1).size | |
when 'set' then db.smembers(k).size | |
else raise("Redis type '#{t}' not yet supported.") # TODO accommodate more types | |
end | |
end | |
def array_sum(array) | |
array.inject(0){ |sum, e| sum + e } | |
end | |
def redis_db_profile(db_name, sample_size = SAMPLE_SIZE) | |
db = Redis.new(:db => db_name) | |
keys = [] | |
sample_size.times { |i| keys << db.randomkey } | |
key_patterns = keys.group_by{ |key| | |
if key =~ /controller\/ics\/(\d+)/ | |
key.gsub(/controller\/ics\/(\d+)/, 'ics') | |
elsif key =~ /qor_i18n(.*)/ | |
key.gsub(/^qor_i18n(.*)/, 'qor_i18n') | |
else | |
key.gsub(/\d+/, '#') | |
end | |
} | |
# key_patterns = keys.group_by{ |key| key.gsub(/\d+/, '#') } | |
data = key_patterns.map{ |pattern, keys| | |
[pattern, {'keys' => keys.size, 'size' => array_sum(keys.map{ |k| redis_size(db, k) })}] | |
}.sort_by{ |a| a.last['size'] }.reverse | |
size_sum = data.inject(0){|sum, d| sum += d.last['size'] } | |
data.each { |d| d.last['percent'] = '%.2f%' % (d.last['size'].to_f*100/size_sum) } | |
end | |
db_names = `redis-cli info | grep ^db[0-9]`.split.map{ |line| line.scan(/^db\d+/).first } | |
db_names.each do |name| | |
puts "\nProfiling \"#{name}\"...\n#{'-'*20}" | |
File.open('test.yml', 'w') {|f| f.write redis_db_profile(name).to_yaml } | |
# YAML.dump redis_db_profile(name) | |
end | |
puts "\nOverall statistics:\n#{'-'*20}" | |
puts `redis-cli info | grep memory` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment