-
Notifications
You must be signed in to change notification settings - Fork 57
Expand file tree
/
Copy pathprosopite.rb
More file actions
282 lines (219 loc) · 7.38 KB
/
prosopite.rb
File metadata and controls
282 lines (219 loc) · 7.38 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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
270
271
272
273
274
275
276
277
278
279
280
281
282
module Prosopite
DEFAULT_ALLOW_LIST = [
/active_record\/relation.rb.*preload_associations/,
'active_record/validations/uniqueness'
].freeze
class NPlusOneQueriesError < StandardError; end
class << self
attr_writer :raise,
:stderr_logger,
:rails_logger,
:prosopite_logger,
:custom_logger,
:allow_stack_paths,
:ignore_queries,
:ignore_pauses,
:min_n_queries,
:backtrace_cleaner
def allow_list=(value)
puts "Prosopite.allow_list= is deprecated. Use Prosopite.allow_stack_paths= instead."
self.allow_stack_paths = value
end
def backtrace_cleaner
@backtrace_cleaner ||= Rails.backtrace_cleaner
end
def scan
tc[:prosopite_scan] ||= false
return if scan?
subscribe
tc[:prosopite_query_counter] = Hash.new(0)
tc[:prosopite_query_holder] = Hash.new { |h, k| h[k] = [] }
tc[:prosopite_query_caller] = {}
@allow_stack_paths ||= []
@ignore_pauses ||= false
@min_n_queries ||= 2
tc[:prosopite_scan] = true
if block_given?
begin
block_result = yield
finish
block_result
ensure
tc[:prosopite_scan] = false
end
end
end
def tc
Thread.current
end
def pause
if @ignore_pauses
return block_given? ? yield : nil
end
if block_given?
begin
previous = tc[:prosopite_scan]
tc[:prosopite_scan] = false
yield
ensure
tc[:prosopite_scan] = previous
end
else
tc[:prosopite_scan] = false
end
end
def resume
tc[:prosopite_scan] = true
end
def scan?
!!(tc[:prosopite_scan] && tc[:prosopite_query_counter] &&
tc[:prosopite_query_holder] && tc[:prosopite_query_caller])
end
def finish
return unless scan?
tc[:prosopite_scan] = false
create_notifications
send_notifications if tc[:prosopite_notifications].present?
tc[:prosopite_query_counter] = nil
tc[:prosopite_query_holder] = nil
tc[:prosopite_query_caller] = nil
end
def create_notifications
tc[:prosopite_notifications] = {}
tc[:prosopite_query_counter].each do |location_key, count|
if count >= @min_n_queries
fingerprints = tc[:prosopite_query_holder][location_key].group_by do |q|
begin
fingerprint(q)
rescue
raise q
end
end
queries = fingerprints.values.select { |q| q.size >= @min_n_queries }
next unless queries.any?
kaller = tc[:prosopite_query_caller][location_key]
allow_list = (@allow_stack_paths + DEFAULT_ALLOW_LIST)
is_allowed = kaller.any? { |f| allow_list.any? { |s| f.match?(s) } }
unless is_allowed
queries.each do |q|
tc[:prosopite_notifications][q] = kaller
end
end
end
end
end
def fingerprint(query)
if ActiveRecord::Base.connection.adapter_name.downcase.include?('mysql')
mysql_fingerprint(query)
else
begin
require 'pg_query'
rescue LoadError => e
msg = "Could not load the 'pg_query' gem. Add `gem 'pg_query'` to your Gemfile"
raise LoadError, msg, e.backtrace
end
PgQuery.fingerprint(query)
end
end
# Many thanks to https://github.com/genkami/fluent-plugin-query-fingerprint/
def mysql_fingerprint(query)
query = query.dup
return "mysqldump" if query =~ %r#\ASELECT /\*!40001 SQL_NO_CACHE \*/ \* FROM `#
return "percona-toolkit" if query =~ %r#\*\w+\.\w+:[0-9]/[0-9]\*/#
if match = /\A\s*(call\s+\S+)\(/i.match(query)
return match.captures.first.downcase!
end
if match = /\A((?:INSERT|REPLACE)(?: IGNORE)?\s+INTO.+?VALUES\s*\(.*?\))\s*,\s*\(/im.match(query)
query = match.captures.first
end
query.gsub!(%r#/\*[^!].*?\*/#m, "")
query.gsub!(/(?:--|#)[^\r\n]*(?=[\r\n]|\Z)/, "")
return query if query.gsub!(/\Ause \S+\Z/i, "use ?")
query.gsub!(/\\["']/, "")
query.gsub!(/".*?"/m, "?")
query.gsub!(/'.*?'/m, "?")
query.gsub!(/\btrue\b|\bfalse\b/i, "?")
query.gsub!(/[0-9+-][0-9a-f.x+-]*/, "?")
query.gsub!(/[xb.+-]\?/, "?")
query.strip!
query.gsub!(/[ \n\t\r\f]+/, " ")
query.downcase!
query.gsub!(/\bnull\b/i, "?")
query.gsub!(/\b(in|values?)(?:[\s,]*\([\s?,]*\))+/, "\\1(?+)")
query.gsub!(/(?<!\w)field\s*\(\s*(\S+)\s*,\s*(\?+)(?:\s*,\s*\?+)*\)/, 'field(\1, \2+)')
query.gsub!(/\b(select\s.*?)(?:(\sunion(?:\sall)?)\s\1)+/, "\\1 /*repeat\\2*/")
query.gsub!(/\blimit \?(?:, ?\?| offset \?)/, "limit ?")
if query =~ /\border by/
query.gsub!(/\G(.+?)\s+asc/, "\\1")
end
query
end
def clean_notifications(notifications)
notifications.map do |queries, kaller|
kaller = backtrace_cleaner.clean(kaller)
[queries, kaller]
end.to_h
end
def generate_notification_message(notifications)
notifications_str = ''
notifications.each do |queries, kaller|
notifications_str << "N+1 queries detected:\n"
queries.each { |q| notifications_str << " #{q}\n" }
notifications_str << "Call stack:\n"
kaller = backtrace_cleaner.clean(kaller)
kaller.each do |f|
notifications_str << " #{f}\n"
end
notifications_str << "\n"
end
notifications_str
end
def send_notifications
@custom_logger ||= false
@rails_logger ||= false
@stderr_logger ||= false
@prosopite_logger ||= false
@raise ||= false
notifications = clean_notifications(tc[:prosopite_notifications])
notifications_str = generate_notification_message(notifications)
if @custom_logger
if @custom_logger.method(:warn).arity == 0
@custom_logger.warn(notifications: notifications)
else
@custom_logger.warn(notifications_str)
end
end
Rails.logger.warn(red(notifications_str)) if @rails_logger
$stderr.puts(red(notifications_str)) if @stderr_logger
if @prosopite_logger
File.open(File.join(Rails.root, 'log', 'prosopite.log'), 'a') do |f|
f.puts(notifications_str)
end
end
raise NPlusOneQueriesError.new(notifications_str) if @raise
end
def red(str)
str.split("\n").map { |line| "\e[91m#{line}\e[0m" }.join("\n")
end
def ignore_query?(sql)
@ignore_queries ||= []
@ignore_queries.any? { |q| q === sql }
end
def subscribe
@subscribed ||= false
return if @subscribed
ActiveSupport::Notifications.subscribe 'sql.active_record' do |_, _, _, _, data|
sql, name = data[:sql], data[:name]
if scan? && name != "SCHEMA" && sql.include?('SELECT') && data[:cached].nil? && !ignore_query?(sql)
location_key = Digest::SHA1.hexdigest(caller.join)
tc[:prosopite_query_counter][location_key] += 1
tc[:prosopite_query_holder][location_key] << sql
if tc[:prosopite_query_counter][location_key] > 1
tc[:prosopite_query_caller][location_key] = caller.dup
end
end
end
@subscribed = true
end
end
end