groonga-query-log 1.5.3 → 1.5.4
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 +8 -0
- data/lib/groonga-query-log/command/check-performance-regression.rb +3 -14
- data/lib/groonga-query-log/command/format-regression-test-logs.rb +27 -0
- data/lib/groonga-query-log/command/run-regression-test.rb +7 -0
- data/lib/groonga-query-log/formattable.rb +34 -0
- data/lib/groonga-query-log/server-verifier.rb +3 -3
- data/lib/groonga-query-log/version.rb +1 -1
- data/test/command/test-format-regression-test-logs.rb +20 -12
- data/test/command/test-run-regression-test.rb +68 -30
- data/test/fixtures/regression-test-logs/slow.log +4 -0
- data/test/fixtures/run-regression-test/results/{query.log → query.log.log} +0 -0
- data/test/helper.rb +15 -0
- metadata +7 -44
- 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
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d325e59172238d3ece39754e02b5947025f420f6e4e61f014fcb67f9638fbf7b
|
4
|
+
data.tar.gz: c7ecef9756afcf9bccfc3cd1c818f0a1b0caedf9a55fb0c481ca0bfc444b775a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c7480195b39194b7332460287dcf79edffff0aa1ec309d3f8821c50d674485d6881a3e0a0152b4384055e750b0fe55c9d38067ed9810b5eebb4a7abdb34861ec
|
7
|
+
data.tar.gz: b240aca0c66216b4d30e7536146d78fe57f525e00066a9bc7c2b0386cf4014873318565fa46c717683b805bccecf10a1fe7f74271f4f0f9a2452aaf948c06c7a
|
data/doc/text/news.md
CHANGED
@@ -21,6 +21,7 @@ require "optparse"
|
|
21
21
|
|
22
22
|
require "groonga-query-log"
|
23
23
|
require "groonga-query-log/command-line"
|
24
|
+
require "groonga-query-log/formattable"
|
24
25
|
|
25
26
|
require "groonga-query-log/command/analyzer"
|
26
27
|
require "groonga-query-log/command/analyzer/sized-statistics"
|
@@ -345,6 +346,8 @@ module GroongaQueryLog
|
|
345
346
|
end
|
346
347
|
|
347
348
|
class Checker
|
349
|
+
include Formattable
|
350
|
+
|
348
351
|
def initialize(old_statistics,
|
349
352
|
new_statistics,
|
350
353
|
output,
|
@@ -446,20 +449,6 @@ Summary:
|
|
446
449
|
@target_queries.include?(statistic.raw_command)
|
447
450
|
end
|
448
451
|
|
449
|
-
def format_elapsed_time(elapsed_time)
|
450
|
-
if elapsed_time < (1 / 1000.0 / 1000.0)
|
451
|
-
"%.1fnsec" % (elapsed_time * 1000 * 1000)
|
452
|
-
elsif elapsed_time < (1 / 1000.0)
|
453
|
-
"%.1fusec" % (elapsed_time * 1000 * 1000)
|
454
|
-
elsif elapsed_time < 1
|
455
|
-
"%.1fmsec" % (elapsed_time * 1000)
|
456
|
-
elsif elapsed_time < 60
|
457
|
-
"%.1fsec" % elapsed_time
|
458
|
-
else
|
459
|
-
"%.1fmin" % (elapsed_time / 60)
|
460
|
-
end
|
461
|
-
end
|
462
|
-
|
463
452
|
def format_diff(statistic)
|
464
453
|
"%s%s/%+.2f" % [
|
465
454
|
statistic.diff_elapsed_time < 0 ? "-" : "+",
|
@@ -24,11 +24,14 @@ require "diff/lcs"
|
|
24
24
|
require "diff/lcs/hunk"
|
25
25
|
require "groonga/command/parser"
|
26
26
|
|
27
|
+
require "groonga-query-log/formattable"
|
27
28
|
require "groonga-query-log/version"
|
28
29
|
|
29
30
|
module GroongaQueryLog
|
30
31
|
module Command
|
31
32
|
class FormatRegressionTestLogs
|
33
|
+
include Formattable
|
34
|
+
|
32
35
|
def initialize(options={})
|
33
36
|
@output = options[:output] || $stdout
|
34
37
|
end
|
@@ -67,6 +70,9 @@ module GroongaQueryLog
|
|
67
70
|
response_new = nil
|
68
71
|
backtrace = []
|
69
72
|
error_message = nil
|
73
|
+
elapsed_time_old = nil
|
74
|
+
elapsed_time_new = nil
|
75
|
+
elapsed_time_ratio = nil
|
70
76
|
|
71
77
|
input.each_line do |line|
|
72
78
|
unless line.valid_encoding?
|
@@ -89,6 +95,16 @@ module GroongaQueryLog
|
|
89
95
|
backtrace.clear
|
90
96
|
when /\Abacktrace: /
|
91
97
|
backtrace.unshift($POSTMATCH.chomp)
|
98
|
+
when /\Aelapsed_time_old: /
|
99
|
+
elapsed_time_old = Float($POSTMATCH.chomp)
|
100
|
+
when /\Aelapsed_time_new: /
|
101
|
+
elapsed_time_new = Float($POSTMATCH.chomp)
|
102
|
+
when /\Aelapsed_time_ratio: /
|
103
|
+
elapsed_time_ratio = Float($POSTMATCH.chomp)
|
104
|
+
report_slow(command,
|
105
|
+
elapsed_time_old,
|
106
|
+
elapsed_time_new,
|
107
|
+
elapsed_time_ratio)
|
92
108
|
end
|
93
109
|
end
|
94
110
|
end
|
@@ -170,6 +186,17 @@ module GroongaQueryLog
|
|
170
186
|
@output.puts(backtrace)
|
171
187
|
end
|
172
188
|
|
189
|
+
def report_slow(command,
|
190
|
+
elapsed_time_old,
|
191
|
+
elapsed_time_new,
|
192
|
+
elapsed_time_ratio)
|
193
|
+
report_command(command)
|
194
|
+
@output.puts("Slow:")
|
195
|
+
@output.puts(" Old: %s" % format_elapsed_time(elapsed_time_old))
|
196
|
+
@output.puts(" New: %s" % format_elapsed_time(elapsed_time_new))
|
197
|
+
@output.puts(" Ratio: +%.1f%%" % ((elapsed_time_ratio * 100) - 100))
|
198
|
+
end
|
199
|
+
|
173
200
|
def report_command(command)
|
174
201
|
@output.puts("Command:")
|
175
202
|
@output.puts(command)
|
@@ -36,6 +36,8 @@ module GroongaQueryLog
|
|
36
36
|
@input_directory = Pathname.new(".")
|
37
37
|
@working_directory = Pathname.new(".")
|
38
38
|
|
39
|
+
@n_clients = 1
|
40
|
+
|
39
41
|
@old_groonga = "groonga"
|
40
42
|
@old_database = "db.old/db"
|
41
43
|
@old_groonga_options = []
|
@@ -304,6 +306,11 @@ module GroongaQueryLog
|
|
304
306
|
"(#{@notifier_options[:smtp_port]})") do |port|
|
305
307
|
@notifier_options[:smtp_port] = port
|
306
308
|
end
|
309
|
+
parser.on("--mail-from=FROM",
|
310
|
+
"Send a notification e-mail from FROM",
|
311
|
+
"(#{@notifier_options[:mail_from]})") do |from|
|
312
|
+
@notifier_options[:mail_from] = from
|
313
|
+
end
|
307
314
|
parser.on("--mail-to=TO",
|
308
315
|
"Send a notification e-mail to TO",
|
309
316
|
"(#{@notifier_options[:mail_to]})") do |to|
|
@@ -0,0 +1,34 @@
|
|
1
|
+
# Copyright (C) 2019 Sutou Kouhei <kou@clear-code.com>
|
2
|
+
#
|
3
|
+
# This library is free software; you can redistribute it and/or
|
4
|
+
# modify it under the terms of the GNU Lesser General Public
|
5
|
+
# License as published by the Free Software Foundation; either
|
6
|
+
# version 2.1 of the License, or (at your option) any later version.
|
7
|
+
#
|
8
|
+
# This library is distributed in the hope that it will be useful,
|
9
|
+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
10
|
+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
11
|
+
# Lesser General Public License for more details.
|
12
|
+
#
|
13
|
+
# You should have received a copy of the GNU Lesser General Public
|
14
|
+
# License along with this library; if not, write to the Free Software
|
15
|
+
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
16
|
+
|
17
|
+
module GroongaQueryLog
|
18
|
+
module Formattable
|
19
|
+
private
|
20
|
+
def format_elapsed_time(elapsed_time)
|
21
|
+
if elapsed_time < (1 / 1000.0 / 1000.0)
|
22
|
+
"%.1fnsec" % (elapsed_time * 1000 * 1000)
|
23
|
+
elsif elapsed_time < (1 / 1000.0)
|
24
|
+
"%.1fusec" % (elapsed_time * 1000 * 1000)
|
25
|
+
elsif elapsed_time < 1
|
26
|
+
"%.1fmsec" % (elapsed_time * 1000)
|
27
|
+
elsif elapsed_time < 60
|
28
|
+
"%.1fsec" % elapsed_time
|
29
|
+
else
|
30
|
+
"%.1fmin" % (elapsed_time / 60)
|
31
|
+
end
|
32
|
+
end
|
33
|
+
end
|
34
|
+
end
|
@@ -228,9 +228,9 @@ module GroongaQueryLog
|
|
228
228
|
def report_slow(output, command, old_elapsed_time, new_elapsed_time)
|
229
229
|
command_source = command.original_source || command.to_uri_format
|
230
230
|
output.puts("command: #{command_source}")
|
231
|
-
output.puts("
|
232
|
-
output.puts("
|
233
|
-
output.puts("
|
231
|
+
output.puts("elapsed_time_old: #{old_elapsed_time}")
|
232
|
+
output.puts("elapsed_time_new: #{new_elapsed_time}")
|
233
|
+
output.puts("elapsed_time_ratio: #{new_elapsed_time / old_elapsed_time}")
|
234
234
|
output.flush
|
235
235
|
end
|
236
236
|
|
@@ -17,6 +17,7 @@
|
|
17
17
|
require "groonga-query-log/command/format-regression-test-logs"
|
18
18
|
|
19
19
|
class FormatRegressionTestLogsCommandTest < Test::Unit::TestCase
|
20
|
+
include Helper::Command
|
20
21
|
include Helper::Path
|
21
22
|
|
22
23
|
def setup
|
@@ -24,18 +25,7 @@ class FormatRegressionTestLogsCommandTest < Test::Unit::TestCase
|
|
24
25
|
end
|
25
26
|
|
26
27
|
def run_command(command_line)
|
27
|
-
|
28
|
-
output = Tempfile.open("output")
|
29
|
-
success = false
|
30
|
-
begin
|
31
|
-
$stdout.reopen(output)
|
32
|
-
success = @command.run(command_line)
|
33
|
-
ensure
|
34
|
-
$stdout.reopen(stdout)
|
35
|
-
end
|
36
|
-
output.close
|
37
|
-
output.open
|
38
|
-
[success, output.read]
|
28
|
+
super(@command, command_line)
|
39
29
|
end
|
40
30
|
|
41
31
|
def fixture_path(*components)
|
@@ -109,6 +99,24 @@ Backtrace:
|
|
109
99
|
run_command([fixture_path("error.log")]))
|
110
100
|
end
|
111
101
|
|
102
|
+
def test_slow
|
103
|
+
output = <<-OUTPUT
|
104
|
+
Command:
|
105
|
+
/d/select?match_columns=description&query=column_create&table=Entries
|
106
|
+
Name: select
|
107
|
+
Arguments:
|
108
|
+
match_columns: description
|
109
|
+
query: column_create
|
110
|
+
table: Entries
|
111
|
+
Slow:
|
112
|
+
Old: 174.8usec
|
113
|
+
New: 201.7usec
|
114
|
+
Ratio: +15.4%
|
115
|
+
OUTPUT
|
116
|
+
assert_equal([true, output],
|
117
|
+
run_command([fixture_path("slow.log")]))
|
118
|
+
end
|
119
|
+
|
112
120
|
sub_test_case(".new") do
|
113
121
|
def setup
|
114
122
|
end
|
@@ -18,32 +18,33 @@
|
|
18
18
|
require "groonga-query-log/command/run-regression-test"
|
19
19
|
|
20
20
|
class RunRegressionTestCommandTest < Test::Unit::TestCase
|
21
|
+
include Helper::Command
|
21
22
|
include Helper::Path
|
22
23
|
|
23
|
-
def
|
24
|
-
|
24
|
+
def setup
|
25
|
+
@command = GroongaQueryLog::Command::RunRegressionTest.new
|
26
|
+
FileUtils.rm_rf(fixture_path("db.old"))
|
27
|
+
FileUtils.rm_rf(fixture_path("db.new"))
|
28
|
+
setup_smtp_server
|
25
29
|
end
|
26
30
|
|
27
|
-
|
28
|
-
|
29
|
-
@socket = TCPServer.open(host, port)
|
30
|
-
end
|
31
|
+
def teardown
|
32
|
+
teardown_smtp_server
|
31
33
|
end
|
32
34
|
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
client = @server.accept
|
35
|
+
def setup_smtp_server
|
36
|
+
@smtp_host = "127.0.0.1"
|
37
|
+
@smtp_port = 20025
|
38
|
+
@smtp_request_lines = []
|
39
|
+
@now = "Tue, 26 Mar 2019 16:39:46 +0900"
|
40
|
+
@smtp_server = TCPServer.open(@smtp_host, @smtp_port)
|
41
|
+
@smtp_server_running = true
|
42
|
+
@smtp_server_thread = Thread.new do
|
43
|
+
while @smtp_server_running
|
44
|
+
client = @smtp_server.accept
|
44
45
|
client.print("220 localhost SMTP server\r\n")
|
45
46
|
client.each_line do |line|
|
46
|
-
@
|
47
|
+
@smtp_request_lines << line
|
47
48
|
case line.chomp
|
48
49
|
when /\AEHLO /
|
49
50
|
client.print("250 AUTH\r\n")
|
@@ -63,18 +64,55 @@ class RunRegressionTestCommandTest < Test::Unit::TestCase
|
|
63
64
|
end
|
64
65
|
end
|
65
66
|
end
|
67
|
+
end
|
66
68
|
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
69
|
+
def teardown_smtp_server
|
70
|
+
@smtp_server_running = false
|
71
|
+
smtp_client = TCPSocket.new(@smtp_host, @smtp_port)
|
72
|
+
smtp_client.write("QUIT\r\n")
|
73
|
+
smtp_client.gets
|
74
|
+
smtp_client.close
|
75
|
+
@smtp_server.close
|
76
|
+
@smtp_server_thread.join
|
77
|
+
end
|
78
|
+
|
79
|
+
def normalized_smtp_request
|
80
|
+
@smtp_request_lines
|
81
|
+
.join("")
|
82
|
+
.gsub(/^Date: .*\r\n/,
|
83
|
+
"Date: #{@now}\r\n")
|
84
|
+
end
|
71
85
|
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
86
|
+
def fixture_path(*components)
|
87
|
+
super("run-regression-test", *components)
|
88
|
+
end
|
89
|
+
|
90
|
+
def run_command(command_line)
|
91
|
+
Dir.chdir(fixture_path) do
|
92
|
+
super(@command, command_line)
|
77
93
|
end
|
94
|
+
end
|
95
|
+
|
96
|
+
def test_mail_from
|
97
|
+
success, _output = run_command(["--smtp-server", @smtp_host,
|
98
|
+
"--smtp-port", @smtp_port.to_s,
|
99
|
+
"--mail-to", "noreply@example.com",
|
100
|
+
"--mail-from", "tester@example.com"])
|
101
|
+
assert_equal([
|
102
|
+
success,
|
103
|
+
[
|
104
|
+
"From: tester@example.com\r",
|
105
|
+
"From: tester@example.com\r",
|
106
|
+
],
|
107
|
+
],
|
108
|
+
[
|
109
|
+
true,
|
110
|
+
normalized_smtp_request.scan(/From: .+/),
|
111
|
+
])
|
112
|
+
end
|
113
|
+
|
114
|
+
sub_test_case("MailNotifier") do
|
115
|
+
MailNotifier = GroongaQueryLog::Command::RunRegressionTest::MailNotifier
|
78
116
|
|
79
117
|
def test_started
|
80
118
|
options = {
|
@@ -86,7 +124,7 @@ class RunRegressionTestCommandTest < Test::Unit::TestCase
|
|
86
124
|
}
|
87
125
|
notifier = MailNotifier.new(options)
|
88
126
|
notifier.notify_started
|
89
|
-
assert_equal(<<-REQUEST.gsub(/\n/, "\r\n").b,
|
127
|
+
assert_equal(<<-REQUEST.gsub(/\n/, "\r\n").b, normalized_smtp_request)
|
90
128
|
EHLO 127.0.0.1
|
91
129
|
MAIL FROM:<#{options[:mail_from]}>
|
92
130
|
RCPT TO:<#{options[:mail_to]}>
|
@@ -119,7 +157,7 @@ QUIT
|
|
119
157
|
}
|
120
158
|
notifier = MailNotifier.new(options)
|
121
159
|
notifier.notify_finished(true, 3000)
|
122
|
-
assert_equal(<<-REQUEST.gsub(/\n/, "\r\n").b,
|
160
|
+
assert_equal(<<-REQUEST.gsub(/\n/, "\r\n").b, normalized_smtp_request)
|
123
161
|
EHLO 127.0.0.1
|
124
162
|
MAIL FROM:<#{options[:mail_from]}>
|
125
163
|
RCPT TO:<#{options[:mail_to]}>
|
@@ -153,7 +191,7 @@ QUIT
|
|
153
191
|
}
|
154
192
|
notifier = MailNotifier.new(options)
|
155
193
|
notifier.notify_finished(false, 3000)
|
156
|
-
assert_equal(<<-REQUEST.gsub(/\n/, "\r\n").b,
|
194
|
+
assert_equal(<<-REQUEST.gsub(/\n/, "\r\n").b, normalized_smtp_request)
|
157
195
|
EHLO 127.0.0.1
|
158
196
|
MAIL FROM:<#{options[:mail_from]}>
|
159
197
|
RCPT TO:<#{options[:mail_to]}>
|
File without changes
|
data/test/helper.rb
CHANGED
@@ -41,5 +41,20 @@ module Helper
|
|
41
41
|
end
|
42
42
|
end
|
43
43
|
end
|
44
|
+
|
45
|
+
def run_command(command, command_line)
|
46
|
+
stdout = $stdout.dup
|
47
|
+
output = Tempfile.open("output")
|
48
|
+
success = false
|
49
|
+
begin
|
50
|
+
$stdout.reopen(output)
|
51
|
+
success = command.run(command_line)
|
52
|
+
ensure
|
53
|
+
$stdout.reopen(stdout)
|
54
|
+
end
|
55
|
+
output.close
|
56
|
+
output.open
|
57
|
+
[success, output.read]
|
58
|
+
end
|
44
59
|
end
|
45
60
|
end
|
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.4
|
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-10-
|
11
|
+
date: 2019-10-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: charty
|
@@ -229,6 +229,7 @@ files:
|
|
229
229
|
- lib/groonga-query-log/command/show-running-queries.rb
|
230
230
|
- lib/groonga-query-log/command/verify-server.rb
|
231
231
|
- lib/groonga-query-log/filter-rewriter.rb
|
232
|
+
- lib/groonga-query-log/formattable.rb
|
232
233
|
- lib/groonga-query-log/incompatibility-detector.rb
|
233
234
|
- lib/groonga-query-log/memory-leak-detector.rb
|
234
235
|
- lib/groonga-query-log/parser.rb
|
@@ -271,37 +272,18 @@ files:
|
|
271
272
|
- test/fixtures/query.log
|
272
273
|
- test/fixtures/regression-test-logs/command-format.log
|
273
274
|
- test/fixtures/regression-test-logs/error.log
|
275
|
+
- test/fixtures/regression-test-logs/slow.log
|
274
276
|
- test/fixtures/regression-test-logs/url-format.log
|
275
277
|
- test/fixtures/reporter/console.expected
|
276
278
|
- test/fixtures/reporter/html.expected
|
277
279
|
- test/fixtures/reporter/json-stream.expected
|
278
280
|
- test/fixtures/reporter/json.expected
|
279
281
|
- test/fixtures/run-regression-test/data/data.grn
|
280
|
-
- test/fixtures/run-regression-test/db.new/db
|
281
|
-
- test/fixtures/run-regression-test/db.new/db.0000000
|
282
|
-
- test/fixtures/run-regression-test/db.new/db.0000100
|
283
|
-
- test/fixtures/run-regression-test/db.new/db.0000101
|
284
|
-
- test/fixtures/run-regression-test/db.new/db.0000102
|
285
|
-
- test/fixtures/run-regression-test/db.new/db.0000103
|
286
|
-
- test/fixtures/run-regression-test/db.new/db.0000103.c
|
287
|
-
- test/fixtures/run-regression-test/db.new/db.001
|
288
|
-
- test/fixtures/run-regression-test/db.new/db.conf
|
289
|
-
- test/fixtures/run-regression-test/db.new/groonga.log
|
290
|
-
- test/fixtures/run-regression-test/db.old/db
|
291
|
-
- test/fixtures/run-regression-test/db.old/db.0000000
|
292
|
-
- test/fixtures/run-regression-test/db.old/db.0000100
|
293
|
-
- test/fixtures/run-regression-test/db.old/db.0000101
|
294
|
-
- test/fixtures/run-regression-test/db.old/db.0000102
|
295
|
-
- test/fixtures/run-regression-test/db.old/db.0000103
|
296
|
-
- test/fixtures/run-regression-test/db.old/db.0000103.c
|
297
|
-
- test/fixtures/run-regression-test/db.old/db.001
|
298
|
-
- test/fixtures/run-regression-test/db.old/db.conf
|
299
|
-
- test/fixtures/run-regression-test/db.old/groonga.log
|
300
282
|
- test/fixtures/run-regression-test/indexes/indexes.grn
|
301
283
|
- test/fixtures/run-regression-test/mail-notifier/failure.log
|
302
284
|
- test/fixtures/run-regression-test/mail-notifier/success.log
|
303
285
|
- test/fixtures/run-regression-test/query-logs/query.log
|
304
|
-
- test/fixtures/run-regression-test/results/query.log
|
286
|
+
- test/fixtures/run-regression-test/results/query.log.log
|
305
287
|
- test/fixtures/run-regression-test/schema/schema.grn
|
306
288
|
- test/fixtures/target-commands.expected
|
307
289
|
- test/fixtures/target-tables.expected
|
@@ -357,35 +339,16 @@ test_files:
|
|
357
339
|
- test/fixtures/reporter/json-stream.expected
|
358
340
|
- test/fixtures/regression-test-logs/error.log
|
359
341
|
- test/fixtures/regression-test-logs/url-format.log
|
342
|
+
- test/fixtures/regression-test-logs/slow.log
|
360
343
|
- test/fixtures/regression-test-logs/command-format.log
|
361
344
|
- test/fixtures/other-query.log
|
362
345
|
- test/fixtures/no-report-summary.expected
|
363
|
-
- test/fixtures/run-regression-test/results/query.log
|
346
|
+
- test/fixtures/run-regression-test/results/query.log.log
|
364
347
|
- test/fixtures/run-regression-test/query-logs/query.log
|
365
348
|
- test/fixtures/run-regression-test/schema/schema.grn
|
366
349
|
- test/fixtures/run-regression-test/indexes/indexes.grn
|
367
350
|
- test/fixtures/run-regression-test/mail-notifier/failure.log
|
368
351
|
- test/fixtures/run-regression-test/mail-notifier/success.log
|
369
|
-
- test/fixtures/run-regression-test/db.new/db.0000000
|
370
|
-
- test/fixtures/run-regression-test/db.new/db.0000100
|
371
|
-
- test/fixtures/run-regression-test/db.new/db.0000103.c
|
372
|
-
- test/fixtures/run-regression-test/db.new/db
|
373
|
-
- test/fixtures/run-regression-test/db.new/db.0000102
|
374
|
-
- test/fixtures/run-regression-test/db.new/groonga.log
|
375
|
-
- test/fixtures/run-regression-test/db.new/db.001
|
376
|
-
- test/fixtures/run-regression-test/db.new/db.conf
|
377
|
-
- test/fixtures/run-regression-test/db.new/db.0000103
|
378
|
-
- test/fixtures/run-regression-test/db.new/db.0000101
|
379
|
-
- test/fixtures/run-regression-test/db.old/db.0000000
|
380
|
-
- test/fixtures/run-regression-test/db.old/db.0000100
|
381
|
-
- test/fixtures/run-regression-test/db.old/db.0000103.c
|
382
|
-
- test/fixtures/run-regression-test/db.old/db
|
383
|
-
- test/fixtures/run-regression-test/db.old/db.0000102
|
384
|
-
- test/fixtures/run-regression-test/db.old/groonga.log
|
385
|
-
- test/fixtures/run-regression-test/db.old/db.001
|
386
|
-
- test/fixtures/run-regression-test/db.old/db.conf
|
387
|
-
- test/fixtures/run-regression-test/db.old/db.0000103
|
388
|
-
- test/fixtures/run-regression-test/db.old/db.0000101
|
389
352
|
- test/fixtures/run-regression-test/data/data.grn
|
390
353
|
- test/fixtures/query.log
|
391
354
|
- test/fixtures/n_entries.expected
|
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]
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
@@ -1,79 +0,0 @@
|
|
1
|
-
2017-04-24 11:06:44.872561|n| grn_init: <7.0.1-105-gf940037>
|
2
|
-
2017-04-24 11:06:44.872642|n| vm.overcommit_memory kernel parameter should be 1: <0>: See INFO level log to resolve this
|
3
|
-
2017-04-24 11:06:44.873832|n| DDL:256:table_create Entries
|
4
|
-
2017-04-24 11:06:44.929837|n| spec:256:update:Entries:48(table:hash_key):0
|
5
|
-
2017-04-24 11:06:44.930157|n| DDL:257:column_create Entries description
|
6
|
-
2017-04-24 11:06:44.979980|n| spec:257:update:Entries.description:65(column:var_size):15(Text)
|
7
|
-
2017-04-24 11:06:45.005342|n| grn_fin (0)
|
8
|
-
2017-04-24 11:06:45.013826|n| grn_init: <7.0.1-105-gf940037>
|
9
|
-
2017-04-24 11:06:45.013966|n| vm.overcommit_memory kernel parameter should be 1: <0>: See INFO level log to resolve this
|
10
|
-
2017-04-24 11:06:45.030106|n| grn_fin (0)
|
11
|
-
2017-04-24 11:06:45.038715|n| grn_init: <7.0.1-105-gf940037>
|
12
|
-
2017-04-24 11:06:45.038857|n| vm.overcommit_memory kernel parameter should be 1: <0>: See INFO level log to resolve this
|
13
|
-
2017-04-24 11:06:45.042555|n| DDL:258:table_create Bigram
|
14
|
-
2017-04-24 11:06:45.088700|n| spec:258:update:Bigram:49(table:pat_key):0
|
15
|
-
2017-04-24 11:06:45.089198|n| DDL:259:column_create Bigram Entries_description
|
16
|
-
2017-04-24 11:06:45.189880|n| spec:259:update:Bigram.Entries_description:72(column:index):256(Entries)
|
17
|
-
2017-04-24 11:06:45.210684|n| DDL:259:set_source Bigram.Entries_description Entries.description
|
18
|
-
2017-04-24 11:06:45.210758|n| spec:257:update:Entries.description:65(column:var_size):15(Text)
|
19
|
-
2017-04-24 11:06:45.215438|n| spec:259:update:Bigram.Entries_description:72(column:index):256(Entries)
|
20
|
-
2017-04-24 11:06:45.223494|n| grn_fin (0)
|
21
|
-
2017-04-24 11:06:46.117605|n| grn_init: <7.0.1-105-gf940037>
|
22
|
-
2017-04-24 11:06:46.117680|n| vm.overcommit_memory kernel parameter should be 1: <0>: See INFO level log to resolve this
|
23
|
-
2017-04-24 11:06:46.117807|n| RLIMIT_NOFILE(4096,4096)
|
24
|
-
2017-04-24 11:06:47.117914|n| thread start (0/1)
|
25
|
-
2017-04-24 11:06:47.495106|n| thread end (0/0)
|
26
|
-
2017-04-24 11:06:47.498049|n| grn_fin (0)
|
27
|
-
2017-04-24 11:07:45.260497|n| grn_init: <7.0.1-105-gf940037>
|
28
|
-
2017-04-24 11:07:45.260555|n| vm.overcommit_memory kernel parameter should be 1: <0>: See INFO level log to resolve this
|
29
|
-
2017-04-24 11:07:45.260635|n| RLIMIT_NOFILE(4096,4096)
|
30
|
-
2017-04-24 11:07:46.262231|n| thread start (0/1)
|
31
|
-
2017-04-24 11:07:49.196124|n| thread end (0/0)
|
32
|
-
2017-04-24 11:07:49.199045|n| grn_fin (0)
|
33
|
-
2017-04-24 11:10:47.015640|n| grn_init: <7.0.1-105-gf940037>
|
34
|
-
2017-04-24 11:10:47.015723|n| vm.overcommit_memory kernel parameter should be 1: <0>: See INFO level log to resolve this
|
35
|
-
2017-04-24 11:10:47.015811|n| RLIMIT_NOFILE(4096,4096)
|
36
|
-
2017-04-24 11:10:48.018144|n| thread start (0/1)
|
37
|
-
2017-04-24 11:10:50.858117|n| thread end (0/0)
|
38
|
-
2017-04-24 11:10:50.861057|n| grn_fin (0)
|
39
|
-
2017-04-24 11:11:12.604406|n| grn_init: <7.0.1-105-gf940037>
|
40
|
-
2017-04-24 11:11:12.604464|n| vm.overcommit_memory kernel parameter should be 1: <0>: See INFO level log to resolve this
|
41
|
-
2017-04-24 11:11:12.604542|n| RLIMIT_NOFILE(4096,4096)
|
42
|
-
2017-04-24 11:11:13.606243|n| thread start (0/1)
|
43
|
-
2017-04-24 11:11:42.304545|n| grn_init: <7.0.1-105-gf940037>
|
44
|
-
2017-04-24 11:11:42.304594|n| vm.overcommit_memory kernel parameter should be 1: <0>: See INFO level log to resolve this
|
45
|
-
2017-04-24 11:11:42.304674|n| RLIMIT_NOFILE(4096,4096)
|
46
|
-
2017-04-24 11:11:43.305717|n| thread start (0/1)
|
47
|
-
2017-04-24 11:11:46.066584|n| thread end (0/0)
|
48
|
-
2017-04-24 11:11:46.070501|n| grn_fin (0)
|
49
|
-
2017-04-24 11:12:06.886810|n| grn_init: <7.0.1-105-gf940037>
|
50
|
-
2017-04-24 11:12:06.886857|n| vm.overcommit_memory kernel parameter should be 1: <0>: See INFO level log to resolve this
|
51
|
-
2017-04-24 11:12:06.886933|n| RLIMIT_NOFILE(4096,4096)
|
52
|
-
2017-04-24 11:12:06.888501|n| thread start (0/1)
|
53
|
-
2017-04-24 11:12:10.568618|n| thread end (0/0)
|
54
|
-
2017-04-24 11:12:10.571785|n| grn_fin (0)
|
55
|
-
2017-04-24 11:12:21.462928|n| grn_init: <7.0.1-105-gf940037>
|
56
|
-
2017-04-24 11:12:21.462974|n| vm.overcommit_memory kernel parameter should be 1: <0>: See INFO level log to resolve this
|
57
|
-
2017-04-24 11:12:21.463054|n| RLIMIT_NOFILE(4096,4096)
|
58
|
-
2017-04-24 11:12:21.467367|n| thread start (0/1)
|
59
|
-
2017-04-24 11:12:25.201154|n| thread end (0/0)
|
60
|
-
2017-04-24 11:12:25.205066|n| grn_fin (0)
|
61
|
-
2017-04-24 11:19:59.312302|n| grn_init: <7.0.1-105-gf940037>
|
62
|
-
2017-04-24 11:19:59.312348|n| vm.overcommit_memory kernel parameter should be 1: <0>: See INFO level log to resolve this
|
63
|
-
2017-04-24 11:19:59.312424|n| RLIMIT_NOFILE(4096,4096)
|
64
|
-
2017-04-24 11:19:59.314172|n| thread start (0/1)
|
65
|
-
2017-04-24 11:20:02.950972|n| thread end (0/0)
|
66
|
-
2017-04-24 11:20:02.956336|n| grn_fin (0)
|
67
|
-
2017-04-24 11:20:09.443167|n| grn_init: <7.0.1-105-gf940037>
|
68
|
-
2017-04-24 11:20:09.443214|n| vm.overcommit_memory kernel parameter should be 1: <0>: See INFO level log to resolve this
|
69
|
-
2017-04-24 11:20:09.443297|n| RLIMIT_NOFILE(4096,4096)
|
70
|
-
2017-04-24 11:20:10.445853|n| thread start (0/1)
|
71
|
-
2017-04-24 11:20:10.789276|n| thread end (0/0)
|
72
|
-
2017-04-24 11:20:10.792230|n| grn_fin (0)
|
73
|
-
2017-04-24 13:01:10.343392|e| system call error: Interrupted system call: epoll_wait
|
74
|
-
2017-04-24 13:01:10.343699|e| /tmp/local/lib/libgroonga.so.0(grn_com_event_poll+0x600) [0x7f8575c9c5cf]
|
75
|
-
2017-04-24 13:01:10.343722|e| groonga(+0xc58b) [0x56012441658b]
|
76
|
-
2017-04-24 13:01:10.343737|e| groonga(+0xde2e) [0x560124417e2e]
|
77
|
-
2017-04-24 13:01:10.343748|e| groonga(+0x54e0) [0x56012440f4e0]
|
78
|
-
2017-04-24 13:01:10.343759|e| /lib/x86_64-linux-gnu/libc.so.6(__libc_start_main+0xf1) [0x7f857478d2b1]
|
79
|
-
2017-04-24 13:01:10.343771|e| groonga(+0x5e6a) [0x56012440fe6a]
|