groonga-query-log 1.5.0 → 1.5.1
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 +4 -4
- data/doc/text/news.md +15 -0
- data/lib/groonga-query-log/command-line.rb +2 -1
- data/lib/groonga-query-log/command/check-performance-regression.rb +9 -8
- data/lib/groonga-query-log/command/run-regression-test.rb +4 -3
- data/lib/groonga-query-log/response-comparer.rb +5 -2
- data/lib/groonga-query-log/version.rb +1 -1
- data/test/#test-response-comparer.rb# +14750 -0
- data/test/command/test-run-regression-test.rb +37 -2
- data/test/fixtures/{regression-test-logs/results/url-format.log → run-regression-test/mail-notifier/failure.log} +0 -0
- data/test/fixtures/run-regression-test/{results/query.log → mail-notifier/success.log} +0 -0
- data/test/test-response-comparer.rb +30 -0
- metadata +45 -84
- data/test/fixtures/run-regression-test/db.new/db +0 -0
- data/test/fixtures/run-regression-test/db.new/db.0000000 +0 -0
- data/test/fixtures/run-regression-test/db.new/db.0000100 +0 -0
- data/test/fixtures/run-regression-test/db.new/db.0000101 +0 -0
- data/test/fixtures/run-regression-test/db.new/db.0000102 +0 -0
- data/test/fixtures/run-regression-test/db.new/db.0000103 +0 -0
- data/test/fixtures/run-regression-test/db.new/db.0000103.c +0 -0
- data/test/fixtures/run-regression-test/db.new/db.001 +0 -0
- data/test/fixtures/run-regression-test/db.new/db.conf +0 -0
- data/test/fixtures/run-regression-test/db.new/groonga.log +0 -165
- data/test/fixtures/run-regression-test/db.old/db +0 -0
- data/test/fixtures/run-regression-test/db.old/db.0000000 +0 -0
- data/test/fixtures/run-regression-test/db.old/db.0000100 +0 -0
- data/test/fixtures/run-regression-test/db.old/db.0000101 +0 -0
- data/test/fixtures/run-regression-test/db.old/db.0000102 +0 -0
- data/test/fixtures/run-regression-test/db.old/db.0000103 +0 -0
- data/test/fixtures/run-regression-test/db.old/db.0000103.c +0 -0
- data/test/fixtures/run-regression-test/db.old/db.001 +0 -0
- data/test/fixtures/run-regression-test/db.old/db.conf +0 -0
- data/test/fixtures/run-regression-test/db.old/groonga.log +0 -79
@@ -1,4 +1,5 @@
|
|
1
1
|
# Copyright (C) 2019 Kentaro Hayashi <hayashi@clear-code.com>
|
2
|
+
# Copyright (C) 2019 Horimoto Yasuhiro <horimoto@clear-code.com>
|
2
3
|
#
|
3
4
|
# This library is free software; you can redistribute it and/or
|
4
5
|
# modify it under the terms of the GNU Lesser General Public
|
@@ -20,7 +21,7 @@ class RunRegressionTestCommandTest < Test::Unit::TestCase
|
|
20
21
|
include Helper::Path
|
21
22
|
|
22
23
|
def fixture_path(*components)
|
23
|
-
super("regression-test
|
24
|
+
super("run-regression-test", *components)
|
24
25
|
end
|
25
26
|
|
26
27
|
class SMTPServer
|
@@ -114,7 +115,7 @@ QUIT
|
|
114
115
|
:mail_to => "noreply@example.com",
|
115
116
|
:mail_subject_on_success => "Success",
|
116
117
|
:mail_subject_on_failure => "Failure",
|
117
|
-
:path => fixture_path("
|
118
|
+
:path => fixture_path("mail-notifier/success.log"),
|
118
119
|
}
|
119
120
|
notifier = MailNotifier.new(options)
|
120
121
|
notifier.notify_finished(true, 3000)
|
@@ -133,6 +134,40 @@ To: #{options[:mail_to]}
|
|
133
134
|
Subject: Success
|
134
135
|
Date: #{@now}
|
135
136
|
|
137
|
+
Elapsed: 0days 00:50:00
|
138
|
+
|
139
|
+
.
|
140
|
+
QUIT
|
141
|
+
REQUEST
|
142
|
+
end
|
143
|
+
|
144
|
+
def test_failure
|
145
|
+
options = {
|
146
|
+
:smtp_server => @smtp_host,
|
147
|
+
:smtp_port => @smtp_port,
|
148
|
+
:mail_from => "groonga-query-log@example.com",
|
149
|
+
:mail_to => "noreply@example.com",
|
150
|
+
:mail_subject_on_success => "Success",
|
151
|
+
:mail_subject_on_failure => "Failure",
|
152
|
+
:path => fixture_path("mail-notifier/failure.log"),
|
153
|
+
}
|
154
|
+
notifier = MailNotifier.new(options)
|
155
|
+
notifier.notify_finished(false, 3000)
|
156
|
+
assert_equal(<<-REQUEST.gsub(/\n/, "\r\n").b, normalized_request)
|
157
|
+
EHLO 127.0.0.1
|
158
|
+
MAIL FROM:<#{options[:mail_from]}>
|
159
|
+
RCPT TO:<#{options[:mail_to]}>
|
160
|
+
DATA
|
161
|
+
MIME-Version: 1.0
|
162
|
+
X-Mailer: groonga-query-log test reporter #{GroongaQueryLog::VERSION};
|
163
|
+
https://github.com/groonga/groonga-query-log
|
164
|
+
Content-Type: text/plain; charset=utf-8
|
165
|
+
Content-Transfer-Encoding: 8bit
|
166
|
+
From: #{options[:mail_from]}
|
167
|
+
To: #{options[:mail_to]}
|
168
|
+
Subject: Failure
|
169
|
+
Date: #{@now}
|
170
|
+
|
136
171
|
Elapsed: 0days 00:50:00
|
137
172
|
Report:
|
138
173
|
Command:
|
File without changes
|
File without changes
|
@@ -186,6 +186,36 @@ class ResponseComparerTest < Test::Unit::TestCase
|
|
186
186
|
end
|
187
187
|
|
188
188
|
class LooseSortTest < self
|
189
|
+
def test_nonexistent_sort_keys
|
190
|
+
@command[:sort_keys] = "_id, nonexistent"
|
191
|
+
assert_true(same?([
|
192
|
+
[
|
193
|
+
[3],
|
194
|
+
[
|
195
|
+
["_id", "UInt32"],
|
196
|
+
["_score", "Int32"],
|
197
|
+
["count", "Int32"],
|
198
|
+
],
|
199
|
+
[1, 2, 10],
|
200
|
+
[2, 2, 10],
|
201
|
+
[3, 3, 11],
|
202
|
+
],
|
203
|
+
],
|
204
|
+
[
|
205
|
+
[
|
206
|
+
[3],
|
207
|
+
[
|
208
|
+
["_id", "UInt32"],
|
209
|
+
["_score", "Int32"],
|
210
|
+
["count", "Int32"],
|
211
|
+
],
|
212
|
+
[1, 2, 10],
|
213
|
+
[2, 2, 10],
|
214
|
+
[3, 3, 11],
|
215
|
+
],
|
216
|
+
]))
|
217
|
+
end
|
218
|
+
|
189
219
|
def test_sorted
|
190
220
|
@command[:sort_keys] = "_score,count"
|
191
221
|
assert_true(same?([
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: groonga-query-log
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.5.
|
4
|
+
version: 1.5.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Kouhei Sutou
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-09-
|
11
|
+
date: 2019-09-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: diff-lcs
|
@@ -154,18 +154,18 @@ description: ''
|
|
154
154
|
email:
|
155
155
|
- kou@clear-code.com
|
156
156
|
executables:
|
157
|
+
- groonga-query-log-detect-memory-leak
|
157
158
|
- groonga-query-log-analyze
|
158
|
-
- groonga-query-log-analyze-load
|
159
159
|
- groonga-query-log-check-crash
|
160
|
-
- groonga-query-log-extract
|
161
|
-
- groonga-query-log-check-command-version-compatibility
|
162
|
-
- groonga-query-log-check-performance-regression
|
163
160
|
- groonga-query-log-replay
|
164
|
-
- groonga-query-log-
|
165
|
-
- groonga-query-log-detect-memory-leak
|
161
|
+
- groonga-query-log-extract
|
166
162
|
- groonga-query-log-show-running-queries
|
167
|
-
- groonga-query-log-
|
163
|
+
- groonga-query-log-check-command-version-compatibility
|
168
164
|
- groonga-query-log-run-regression-test
|
165
|
+
- groonga-query-log-verify-server
|
166
|
+
- groonga-query-log-analyze-load
|
167
|
+
- groonga-query-log-format-regression-test-logs
|
168
|
+
- groonga-query-log-check-performance-regression
|
169
169
|
extensions: []
|
170
170
|
extra_rdoc_files: []
|
171
171
|
files:
|
@@ -232,6 +232,7 @@ files:
|
|
232
232
|
- lib/groonga/query-log/command/run-regression-test.rb
|
233
233
|
- lib/groonga/query-log/command/show-running-queries.rb
|
234
234
|
- lib/groonga/query-log/command/verify-server.rb
|
235
|
+
- test/#test-response-comparer.rb#
|
235
236
|
- test/command/test-analyzer.rb
|
236
237
|
- test/command/test-check-performance-regression.rb
|
237
238
|
- test/command/test-extract.rb
|
@@ -253,36 +254,16 @@ files:
|
|
253
254
|
- test/fixtures/query.log
|
254
255
|
- test/fixtures/regression-test-logs/command-format.log
|
255
256
|
- test/fixtures/regression-test-logs/error.log
|
256
|
-
- test/fixtures/regression-test-logs/results/url-format.log
|
257
257
|
- test/fixtures/regression-test-logs/url-format.log
|
258
258
|
- test/fixtures/reporter/console.expected
|
259
259
|
- test/fixtures/reporter/html.expected
|
260
260
|
- test/fixtures/reporter/json-stream.expected
|
261
261
|
- test/fixtures/reporter/json.expected
|
262
262
|
- test/fixtures/run-regression-test/data/data.grn
|
263
|
-
- test/fixtures/run-regression-test/db.new/db
|
264
|
-
- test/fixtures/run-regression-test/db.new/db.0000000
|
265
|
-
- test/fixtures/run-regression-test/db.new/db.0000100
|
266
|
-
- test/fixtures/run-regression-test/db.new/db.0000101
|
267
|
-
- test/fixtures/run-regression-test/db.new/db.0000102
|
268
|
-
- test/fixtures/run-regression-test/db.new/db.0000103
|
269
|
-
- test/fixtures/run-regression-test/db.new/db.0000103.c
|
270
|
-
- test/fixtures/run-regression-test/db.new/db.001
|
271
|
-
- test/fixtures/run-regression-test/db.new/db.conf
|
272
|
-
- test/fixtures/run-regression-test/db.new/groonga.log
|
273
|
-
- test/fixtures/run-regression-test/db.old/db
|
274
|
-
- test/fixtures/run-regression-test/db.old/db.0000000
|
275
|
-
- test/fixtures/run-regression-test/db.old/db.0000100
|
276
|
-
- test/fixtures/run-regression-test/db.old/db.0000101
|
277
|
-
- test/fixtures/run-regression-test/db.old/db.0000102
|
278
|
-
- test/fixtures/run-regression-test/db.old/db.0000103
|
279
|
-
- test/fixtures/run-regression-test/db.old/db.0000103.c
|
280
|
-
- test/fixtures/run-regression-test/db.old/db.001
|
281
|
-
- test/fixtures/run-regression-test/db.old/db.conf
|
282
|
-
- test/fixtures/run-regression-test/db.old/groonga.log
|
283
263
|
- test/fixtures/run-regression-test/indexes/indexes.grn
|
264
|
+
- test/fixtures/run-regression-test/mail-notifier/failure.log
|
265
|
+
- test/fixtures/run-regression-test/mail-notifier/success.log
|
284
266
|
- test/fixtures/run-regression-test/query-logs/query.log
|
285
|
-
- test/fixtures/run-regression-test/results/query.log
|
286
267
|
- test/fixtures/run-regression-test/schema/schema.grn
|
287
268
|
- test/fixtures/target-commands.expected
|
288
269
|
- test/fixtures/target-tables.expected
|
@@ -312,8 +293,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
312
293
|
- !ruby/object:Gem::Version
|
313
294
|
version: '0'
|
314
295
|
requirements: []
|
315
|
-
|
316
|
-
rubygems_version: 2.7.6.2
|
296
|
+
rubygems_version: 3.0.3
|
317
297
|
signing_key:
|
318
298
|
specification_version: 4
|
319
299
|
summary: Groonga-query-log is a collection of library and tools to process [Groonga](http://groonga.org/)'s
|
@@ -321,64 +301,45 @@ summary: Groonga-query-log is a collection of library and tools to process [Groo
|
|
321
301
|
as a library. You can analyze your Groonga's queries and test with your Groonga's
|
322
302
|
query log by using groonga-query-log as a tool.
|
323
303
|
test_files:
|
324
|
-
- test/test-parser.rb
|
325
|
-
- test/helper.rb
|
326
304
|
- test/run-test.rb
|
327
|
-
- test/
|
328
|
-
- test/
|
329
|
-
- test/
|
330
|
-
- test/
|
331
|
-
- test/
|
332
|
-
- test/
|
333
|
-
- test/test-replayer.rb
|
305
|
+
- test/fixtures/n_entries.expected
|
306
|
+
- test/fixtures/check-performance-regression/query1.log
|
307
|
+
- test/fixtures/check-performance-regression/cache.log
|
308
|
+
- test/fixtures/check-performance-regression/nquery2.log
|
309
|
+
- test/fixtures/check-performance-regression/nquery.log
|
310
|
+
- test/fixtures/check-performance-regression/query2.log
|
334
311
|
- test/fixtures/target-tables.expected
|
335
|
-
- test/fixtures/
|
336
|
-
- test/fixtures/
|
337
|
-
- test/fixtures/
|
338
|
-
- test/fixtures/
|
339
|
-
- test/fixtures/
|
340
|
-
- test/fixtures/regression-test-logs/error.log
|
312
|
+
- test/fixtures/no-report-summary.expected
|
313
|
+
- test/fixtures/order/-start-time.expected
|
314
|
+
- test/fixtures/order/-elapsed.expected
|
315
|
+
- test/fixtures/order/start-time.expected
|
316
|
+
- test/fixtures/order/elapsed.expected
|
341
317
|
- test/fixtures/regression-test-logs/url-format.log
|
342
318
|
- test/fixtures/regression-test-logs/command-format.log
|
319
|
+
- test/fixtures/regression-test-logs/error.log
|
320
|
+
- test/fixtures/multi.expected
|
321
|
+
- test/fixtures/query.log
|
343
322
|
- test/fixtures/other-query.log
|
344
|
-
- test/fixtures/
|
345
|
-
- test/fixtures/
|
346
|
-
- test/fixtures/
|
323
|
+
- test/fixtures/reporter/json-stream.expected
|
324
|
+
- test/fixtures/reporter/console.expected
|
325
|
+
- test/fixtures/reporter/json.expected
|
326
|
+
- test/fixtures/reporter/html.expected
|
347
327
|
- test/fixtures/run-regression-test/schema/schema.grn
|
348
|
-
- test/fixtures/run-regression-test/indexes/indexes.grn
|
349
|
-
- test/fixtures/run-regression-test/db.new/db.0000000
|
350
|
-
- test/fixtures/run-regression-test/db.new/db.0000100
|
351
|
-
- test/fixtures/run-regression-test/db.new/db.0000103.c
|
352
|
-
- test/fixtures/run-regression-test/db.new/db
|
353
|
-
- test/fixtures/run-regression-test/db.new/db.0000102
|
354
|
-
- test/fixtures/run-regression-test/db.new/groonga.log
|
355
|
-
- test/fixtures/run-regression-test/db.new/db.001
|
356
|
-
- test/fixtures/run-regression-test/db.new/db.conf
|
357
|
-
- test/fixtures/run-regression-test/db.new/db.0000103
|
358
|
-
- test/fixtures/run-regression-test/db.new/db.0000101
|
359
|
-
- test/fixtures/run-regression-test/db.old/db.0000000
|
360
|
-
- test/fixtures/run-regression-test/db.old/db.0000100
|
361
|
-
- test/fixtures/run-regression-test/db.old/db.0000103.c
|
362
|
-
- test/fixtures/run-regression-test/db.old/db
|
363
|
-
- test/fixtures/run-regression-test/db.old/db.0000102
|
364
|
-
- test/fixtures/run-regression-test/db.old/groonga.log
|
365
|
-
- test/fixtures/run-regression-test/db.old/db.001
|
366
|
-
- test/fixtures/run-regression-test/db.old/db.conf
|
367
|
-
- test/fixtures/run-regression-test/db.old/db.0000103
|
368
|
-
- test/fixtures/run-regression-test/db.old/db.0000101
|
369
328
|
- test/fixtures/run-regression-test/data/data.grn
|
370
|
-
- test/fixtures/
|
371
|
-
- test/fixtures/
|
372
|
-
- test/fixtures/
|
373
|
-
- test/fixtures/
|
374
|
-
- test/fixtures/order/start-time.expected
|
375
|
-
- test/fixtures/order/elapsed.expected
|
376
|
-
- test/fixtures/order/-start-time.expected
|
377
|
-
- test/fixtures/check-performance-regression/query1.log
|
378
|
-
- test/fixtures/check-performance-regression/nquery2.log
|
379
|
-
- test/fixtures/check-performance-regression/cache.log
|
380
|
-
- test/fixtures/check-performance-regression/query2.log
|
381
|
-
- test/fixtures/check-performance-regression/nquery.log
|
329
|
+
- test/fixtures/run-regression-test/mail-notifier/success.log
|
330
|
+
- test/fixtures/run-regression-test/mail-notifier/failure.log
|
331
|
+
- test/fixtures/run-regression-test/indexes/indexes.grn
|
332
|
+
- test/fixtures/run-regression-test/query-logs/query.log
|
382
333
|
- test/fixtures/target-commands.expected
|
334
|
+
- test/test-parser.rb
|
335
|
+
- test/helper.rb
|
336
|
+
- test/#test-response-comparer.rb#
|
337
|
+
- test/test-replayer.rb
|
338
|
+
- test/test-response-comparer.rb
|
339
|
+
- test/command/test-run-regression-test.rb
|
340
|
+
- test/command/test-check-performance-regression.rb
|
341
|
+
- test/command/test-format-regression-test-logs.rb
|
342
|
+
- test/command/test-analyzer.rb
|
343
|
+
- test/command/test-extract.rb
|
383
344
|
- test/test-incompatibility-detector.rb
|
384
345
|
- test/test-filter-rewriter.rb
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
@@ -1,165 +0,0 @@
|
|
1
|
-
2017-04-24 11:06:45.783903|n| grn_init: <7.0.1-105-gf940037>
|
2
|
-
2017-04-24 11:06:45.783995|n| vm.overcommit_memory kernel parameter should be 1: <0>: See INFO level log to resolve this
|
3
|
-
2017-04-24 11:06:45.785696|n| DDL:256:table_create Entries
|
4
|
-
2017-04-24 11:06:45.832240|n| spec:256:update:Entries:48(table:hash_key):0
|
5
|
-
2017-04-24 11:06:45.832566|n| DDL:257:column_create Entries description
|
6
|
-
2017-04-24 11:06:45.882379|n| spec:257:update:Entries.description:65(column:var_size):15(Text)
|
7
|
-
2017-04-24 11:06:45.902188|n| grn_fin (0)
|
8
|
-
2017-04-24 11:06:45.911851|n| grn_init: <7.0.1-105-gf940037>
|
9
|
-
2017-04-24 11:06:45.911981|n| vm.overcommit_memory kernel parameter should be 1: <0>: See INFO level log to resolve this
|
10
|
-
2017-04-24 11:06:45.927281|n| grn_fin (0)
|
11
|
-
2017-04-24 11:06:45.938921|n| grn_init: <7.0.1-105-gf940037>
|
12
|
-
2017-04-24 11:06:45.939085|n| vm.overcommit_memory kernel parameter should be 1: <0>: See INFO level log to resolve this
|
13
|
-
2017-04-24 11:06:45.943080|n| DDL:258:table_create Bigram
|
14
|
-
2017-04-24 11:06:45.990956|n| spec:258:update:Bigram:49(table:pat_key):0
|
15
|
-
2017-04-24 11:06:45.991456|n| DDL:259:column_create Bigram Entries_description
|
16
|
-
2017-04-24 11:06:46.084367|n| spec:259:update:Bigram.Entries_description:72(column:index):256(Entries)
|
17
|
-
2017-04-24 11:06:46.099864|n| DDL:259:set_source Bigram.Entries_description Entries.description
|
18
|
-
2017-04-24 11:06:46.099925|n| spec:257:update:Entries.description:65(column:var_size):15(Text)
|
19
|
-
2017-04-24 11:06:46.104701|n| spec:259:update:Bigram.Entries_description:72(column:index):256(Entries)
|
20
|
-
2017-04-24 11:06:46.113406|n| grn_fin (0)
|
21
|
-
2017-04-24 11:06:46.117714|n| grn_init: <7.0.1-105-gf940037>
|
22
|
-
2017-04-24 11:06:46.117765|n| vm.overcommit_memory kernel parameter should be 1: <0>: See INFO level log to resolve this
|
23
|
-
2017-04-24 11:06:46.117899|n| RLIMIT_NOFILE(4096,4096)
|
24
|
-
2017-04-24 11:06:47.117263|n| thread start (0/1)
|
25
|
-
2017-04-24 11:06:47.495184|n| thread end (0/0)
|
26
|
-
2017-04-24 11:06:47.498054|n| grn_fin (0)
|
27
|
-
2017-04-24 11:07:45.262160|n| grn_init: <7.0.1-105-gf940037>
|
28
|
-
2017-04-24 11:07:45.262192|n| vm.overcommit_memory kernel parameter should be 1: <0>: See INFO level log to resolve this
|
29
|
-
2017-04-24 11:07:45.262282|n| RLIMIT_NOFILE(4096,4096)
|
30
|
-
2017-04-24 11:07:46.261844|n| thread start (0/1)
|
31
|
-
2017-04-24 11:07:46.580606|n| thread end (0/0)
|
32
|
-
2017-04-24 11:07:46.583733|n| grn_fin (0)
|
33
|
-
2017-04-24 11:07:46.586691|n| grn_init: <7.0.1-105-gf940037>
|
34
|
-
2017-04-24 11:07:46.586724|n| vm.overcommit_memory kernel parameter should be 1: <0>: See INFO level log to resolve this
|
35
|
-
2017-04-24 11:07:46.586809|n| RLIMIT_NOFILE(4096,4096)
|
36
|
-
2017-04-24 11:07:47.585962|n| thread start (0/1)
|
37
|
-
2017-04-24 11:07:48.028639|n| thread end (0/0)
|
38
|
-
2017-04-24 11:07:48.030048|n| grn_fin (0)
|
39
|
-
2017-04-24 11:07:48.034362|n| grn_init: <7.0.1-105-gf940037>
|
40
|
-
2017-04-24 11:07:48.034410|n| vm.overcommit_memory kernel parameter should be 1: <0>: See INFO level log to resolve this
|
41
|
-
2017-04-24 11:07:48.034549|n| RLIMIT_NOFILE(4096,4096)
|
42
|
-
2017-04-24 11:07:49.032453|n| thread start (0/1)
|
43
|
-
2017-04-24 11:07:49.195891|n| thread end (0/0)
|
44
|
-
2017-04-24 11:07:49.196755|n| grn_fin (0)
|
45
|
-
2017-04-24 11:10:47.018307|n| grn_init: <7.0.1-105-gf940037>
|
46
|
-
2017-04-24 11:10:47.018349|n| vm.overcommit_memory kernel parameter should be 1: <0>: See INFO level log to resolve this
|
47
|
-
2017-04-24 11:10:47.018437|n| RLIMIT_NOFILE(4096,4096)
|
48
|
-
2017-04-24 11:10:48.017869|n| thread start (0/1)
|
49
|
-
2017-04-24 11:10:48.313167|n| thread end (0/0)
|
50
|
-
2017-04-24 11:10:48.314042|n| grn_fin (0)
|
51
|
-
2017-04-24 11:10:48.316882|n| grn_init: <7.0.1-105-gf940037>
|
52
|
-
2017-04-24 11:10:48.316926|n| vm.overcommit_memory kernel parameter should be 1: <0>: See INFO level log to resolve this
|
53
|
-
2017-04-24 11:10:48.317007|n| RLIMIT_NOFILE(4096,4096)
|
54
|
-
2017-04-24 11:10:49.315935|n| thread start (0/1)
|
55
|
-
2017-04-24 11:10:49.698905|n| thread end (0/0)
|
56
|
-
2017-04-24 11:10:49.700064|n| grn_fin (0)
|
57
|
-
2017-04-24 11:10:49.705284|n| grn_init: <7.0.1-105-gf940037>
|
58
|
-
2017-04-24 11:10:49.705412|n| vm.overcommit_memory kernel parameter should be 1: <0>: See INFO level log to resolve this
|
59
|
-
2017-04-24 11:10:49.705578|n| RLIMIT_NOFILE(4096,4096)
|
60
|
-
2017-04-24 11:10:50.702205|n| thread start (0/1)
|
61
|
-
2017-04-24 11:10:50.858002|n| thread end (0/0)
|
62
|
-
2017-04-24 11:10:50.858862|n| grn_fin (0)
|
63
|
-
2017-04-24 11:11:12.606175|n| grn_init: <7.0.1-105-gf940037>
|
64
|
-
2017-04-24 11:11:12.606214|n| vm.overcommit_memory kernel parameter should be 1: <0>: See INFO level log to resolve this
|
65
|
-
2017-04-24 11:11:12.606307|n| RLIMIT_NOFILE(4096,4096)
|
66
|
-
2017-04-24 11:11:13.605834|n| thread start (0/1)
|
67
|
-
2017-04-24 11:11:13.842406|n| thread end (0/0)
|
68
|
-
2017-04-24 11:11:13.843288|n| grn_fin (0)
|
69
|
-
2017-04-24 11:11:13.846133|n| grn_init: <7.0.1-105-gf940037>
|
70
|
-
2017-04-24 11:11:13.846164|n| vm.overcommit_memory kernel parameter should be 1: <0>: See INFO level log to resolve this
|
71
|
-
2017-04-24 11:11:13.846254|n| RLIMIT_NOFILE(4096,4096)
|
72
|
-
2017-04-24 11:11:14.845410|n| thread start (0/1)
|
73
|
-
2017-04-24 11:11:15.127688|n| thread end (0/0)
|
74
|
-
2017-04-24 11:11:15.128568|n| grn_fin (0)
|
75
|
-
2017-04-24 11:11:15.131325|n| grn_init: <7.0.1-105-gf940037>
|
76
|
-
2017-04-24 11:11:15.131357|n| vm.overcommit_memory kernel parameter should be 1: <0>: See INFO level log to resolve this
|
77
|
-
2017-04-24 11:11:15.131440|n| RLIMIT_NOFILE(4096,4096)
|
78
|
-
2017-04-24 11:11:16.130617|n| thread start (0/1)
|
79
|
-
2017-04-24 11:11:42.306188|n| grn_init: <7.0.1-105-gf940037>
|
80
|
-
2017-04-24 11:11:42.306219|n| vm.overcommit_memory kernel parameter should be 1: <0>: See INFO level log to resolve this
|
81
|
-
2017-04-24 11:11:42.306306|n| RLIMIT_NOFILE(4096,4096)
|
82
|
-
2017-04-24 11:11:43.308553|n| thread start (0/1)
|
83
|
-
2017-04-24 11:11:43.580788|n| thread end (0/0)
|
84
|
-
2017-04-24 11:11:43.581685|n| grn_fin (0)
|
85
|
-
2017-04-24 11:11:43.584541|n| grn_init: <7.0.1-105-gf940037>
|
86
|
-
2017-04-24 11:11:43.584576|n| vm.overcommit_memory kernel parameter should be 1: <0>: See INFO level log to resolve this
|
87
|
-
2017-04-24 11:11:43.584662|n| RLIMIT_NOFILE(4096,4096)
|
88
|
-
2017-04-24 11:11:44.583985|n| thread start (0/1)
|
89
|
-
2017-04-24 11:11:44.874262|n| thread end (0/0)
|
90
|
-
2017-04-24 11:11:44.875167|n| grn_fin (0)
|
91
|
-
2017-04-24 11:11:44.877971|n| grn_init: <7.0.1-105-gf940037>
|
92
|
-
2017-04-24 11:11:44.878014|n| vm.overcommit_memory kernel parameter should be 1: <0>: See INFO level log to resolve this
|
93
|
-
2017-04-24 11:11:44.878098|n| RLIMIT_NOFILE(4096,4096)
|
94
|
-
2017-04-24 11:11:45.877207|n| thread start (0/1)
|
95
|
-
2017-04-24 11:11:46.066477|n| thread end (0/0)
|
96
|
-
2017-04-24 11:11:46.067611|n| grn_fin (0)
|
97
|
-
2017-04-24 11:12:06.890149|n| grn_init: <7.0.1-105-gf940037>
|
98
|
-
2017-04-24 11:12:06.890181|n| vm.overcommit_memory kernel parameter should be 1: <0>: See INFO level log to resolve this
|
99
|
-
2017-04-24 11:12:06.890263|n| RLIMIT_NOFILE(4096,4096)
|
100
|
-
2017-04-24 11:12:07.889979|n| thread start (0/1)
|
101
|
-
2017-04-24 11:12:08.166979|n| thread end (0/0)
|
102
|
-
2017-04-24 11:12:08.167884|n| grn_fin (0)
|
103
|
-
2017-04-24 11:12:08.170752|n| grn_init: <7.0.1-105-gf940037>
|
104
|
-
2017-04-24 11:12:08.170794|n| vm.overcommit_memory kernel parameter should be 1: <0>: See INFO level log to resolve this
|
105
|
-
2017-04-24 11:12:08.170877|n| RLIMIT_NOFILE(4096,4096)
|
106
|
-
2017-04-24 11:12:09.170034|n| thread start (0/1)
|
107
|
-
2017-04-24 11:12:09.466889|n| thread end (0/0)
|
108
|
-
2017-04-24 11:12:09.467813|n| grn_fin (0)
|
109
|
-
2017-04-24 11:12:09.470729|n| grn_init: <7.0.1-105-gf940037>
|
110
|
-
2017-04-24 11:12:09.470761|n| vm.overcommit_memory kernel parameter should be 1: <0>: See INFO level log to resolve this
|
111
|
-
2017-04-24 11:12:09.470845|n| RLIMIT_NOFILE(4096,4096)
|
112
|
-
2017-04-24 11:12:10.469841|n| thread start (0/1)
|
113
|
-
2017-04-24 11:12:10.568799|n| thread end (0/0)
|
114
|
-
2017-04-24 11:12:10.569881|n| grn_fin (0)
|
115
|
-
2017-04-24 11:12:21.466214|n| grn_init: <7.0.1-105-gf940037>
|
116
|
-
2017-04-24 11:12:21.466249|n| vm.overcommit_memory kernel parameter should be 1: <0>: See INFO level log to resolve this
|
117
|
-
2017-04-24 11:12:21.466332|n| RLIMIT_NOFILE(4096,4096)
|
118
|
-
2017-04-24 11:12:22.466174|n| thread start (0/1)
|
119
|
-
2017-04-24 11:12:22.724694|n| thread end (0/0)
|
120
|
-
2017-04-24 11:12:22.725556|n| grn_fin (0)
|
121
|
-
2017-04-24 11:12:22.728489|n| grn_init: <7.0.1-105-gf940037>
|
122
|
-
2017-04-24 11:12:22.728520|n| vm.overcommit_memory kernel parameter should be 1: <0>: See INFO level log to resolve this
|
123
|
-
2017-04-24 11:12:22.728608|n| RLIMIT_NOFILE(4096,4096)
|
124
|
-
2017-04-24 11:12:23.727545|n| thread start (0/1)
|
125
|
-
2017-04-24 11:12:23.997429|n| thread end (0/0)
|
126
|
-
2017-04-24 11:12:23.998293|n| grn_fin (0)
|
127
|
-
2017-04-24 11:12:24.001106|n| grn_init: <7.0.1-105-gf940037>
|
128
|
-
2017-04-24 11:12:24.001138|n| vm.overcommit_memory kernel parameter should be 1: <0>: See INFO level log to resolve this
|
129
|
-
2017-04-24 11:12:24.001219|n| RLIMIT_NOFILE(4096,4096)
|
130
|
-
2017-04-24 11:12:25.000343|n| thread start (0/1)
|
131
|
-
2017-04-24 11:12:25.201017|n| thread end (0/0)
|
132
|
-
2017-04-24 11:12:25.202162|n| grn_fin (0)
|
133
|
-
2017-04-24 11:19:59.316027|n| grn_init: <7.0.1-105-gf940037>
|
134
|
-
2017-04-24 11:19:59.316064|n| vm.overcommit_memory kernel parameter should be 1: <0>: See INFO level log to resolve this
|
135
|
-
2017-04-24 11:19:59.316148|n| RLIMIT_NOFILE(4096,4096)
|
136
|
-
2017-04-24 11:20:00.315342|n| thread start (0/1)
|
137
|
-
2017-04-24 11:20:00.543339|n| thread end (0/0)
|
138
|
-
2017-04-24 11:20:00.544322|n| grn_fin (0)
|
139
|
-
2017-04-24 11:20:00.547319|n| grn_init: <7.0.1-105-gf940037>
|
140
|
-
2017-04-24 11:20:00.547355|n| vm.overcommit_memory kernel parameter should be 1: <0>: See INFO level log to resolve this
|
141
|
-
2017-04-24 11:20:00.547440|n| RLIMIT_NOFILE(4096,4096)
|
142
|
-
2017-04-24 11:20:01.545653|n| thread start (0/1)
|
143
|
-
2017-04-24 11:20:01.731747|n| thread end (0/0)
|
144
|
-
2017-04-24 11:20:01.732644|n| grn_fin (0)
|
145
|
-
2017-04-24 11:20:01.735519|n| grn_init: <7.0.1-105-gf940037>
|
146
|
-
2017-04-24 11:20:01.735558|n| vm.overcommit_memory kernel parameter should be 1: <0>: See INFO level log to resolve this
|
147
|
-
2017-04-24 11:20:01.735643|n| RLIMIT_NOFILE(4096,4096)
|
148
|
-
2017-04-24 11:20:02.734551|n| thread start (0/1)
|
149
|
-
2017-04-24 11:20:02.951152|n| thread end (0/0)
|
150
|
-
2017-04-24 11:20:02.952691|n| grn_fin (0)
|
151
|
-
2017-04-24 11:20:09.446073|n| grn_init: <7.0.1-105-gf940037>
|
152
|
-
2017-04-24 11:20:09.446115|n| vm.overcommit_memory kernel parameter should be 1: <0>: See INFO level log to resolve this
|
153
|
-
2017-04-24 11:20:09.446201|n| RLIMIT_NOFILE(4096,4096)
|
154
|
-
2017-04-24 11:20:10.448377|n| thread start (0/1)
|
155
|
-
2017-04-24 11:20:10.789136|n| thread end (0/0)
|
156
|
-
2017-04-24 11:20:10.792153|n| grn_fin (0)
|
157
|
-
2017-04-24 13:01:10.344434|e| system call error: Interrupted system call: epoll_wait
|
158
|
-
2017-04-24 13:01:10.344720|e| /tmp/local/lib/libgroonga.so.0(grn_com_event_poll+0x600) [0x7fe1890695cf]
|
159
|
-
2017-04-24 13:01:10.344749|e| /tmp/local/bin/groonga(+0x8db6) [0x564c572ecdb6]
|
160
|
-
2017-04-24 13:01:10.344763|e| /tmp/local/bin/groonga(+0x9e7c) [0x564c572ede7c]
|
161
|
-
2017-04-24 13:01:10.344776|e| /tmp/local/bin/groonga(+0xa035) [0x564c572ee035]
|
162
|
-
2017-04-24 13:01:10.344788|e| /tmp/local/bin/groonga(+0x132b7) [0x564c572f72b7]
|
163
|
-
2017-04-24 13:01:10.344800|e| /tmp/local/bin/groonga(+0x18088) [0x564c572fc088]
|
164
|
-
2017-04-24 13:01:10.344813|e| /lib/x86_64-linux-gnu/libc.so.6(__libc_start_main+0xf1) [0x7fe1872bf2b1]
|
165
|
-
2017-04-24 13:01:10.344825|e| /tmp/local/bin/groonga(+0x4e2a) [0x564c572e8e2a]
|