groonga-query-log 1.2.8 → 1.2.9
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/bin/groonga-query-log-analyze +3 -4
- data/bin/groonga-query-log-analyze-load +22 -0
- data/bin/groonga-query-log-check-command-version-compatibility +2 -2
- data/bin/groonga-query-log-check-crash +22 -0
- data/bin/groonga-query-log-detect-memory-leak +2 -2
- data/bin/groonga-query-log-extract +2 -2
- data/bin/groonga-query-log-format-regression-test-logs +2 -2
- data/bin/groonga-query-log-replay +3 -5
- data/bin/groonga-query-log-run-regression-test +2 -2
- data/bin/groonga-query-log-show-running-queries +2 -2
- data/bin/groonga-query-log-verify-server +2 -2
- data/doc/text/news.md +31 -0
- data/groonga-query-log.gemspec +5 -4
- data/lib/groonga-query-log.rb +42 -0
- data/lib/{groonga/query-log/command-line-utils.rb → groonga-query-log/command-line.rb} +25 -13
- data/lib/{groonga/query-log → groonga-query-log}/command-version-compatibility-checker.rb +3 -5
- data/lib/groonga-query-log/command/analyze-load.rb +188 -0
- data/lib/{groonga/query-log → groonga-query-log/command}/analyzer.rb +60 -44
- data/lib/{groonga/query-log → groonga-query-log/command}/analyzer/reporter.rb +15 -20
- data/lib/{groonga/query-log → groonga-query-log/command}/analyzer/reporter/console.rb +19 -18
- data/lib/groonga-query-log/command/analyzer/reporter/csv.rb +77 -0
- data/lib/{groonga/query-log → groonga-query-log/command}/analyzer/reporter/html.rb +32 -16
- data/lib/{groonga/query-log → groonga-query-log/command}/analyzer/reporter/json-stream.rb +4 -6
- data/lib/{groonga/query-log → groonga-query-log/command}/analyzer/reporter/json.rb +7 -7
- data/lib/{groonga/query-log → groonga-query-log/command}/analyzer/sized-grouped-operations.rb +3 -5
- data/lib/{groonga/query-log → groonga-query-log/command}/analyzer/sized-statistics.rb +4 -6
- data/lib/{groonga/query-log → groonga-query-log/command}/analyzer/streamer.rb +4 -6
- data/lib/groonga-query-log/command/check-command-version-compatibility.rb +69 -0
- data/lib/groonga-query-log/command/check-crash.rb +169 -0
- data/lib/groonga-query-log/command/detect-memory-leak.rb +89 -0
- data/lib/groonga-query-log/command/extract.rb +171 -0
- data/lib/groonga-query-log/command/format-regression-test-logs.rb +143 -0
- data/lib/groonga-query-log/command/replay.rb +117 -0
- data/lib/groonga-query-log/command/run-regression-test.rb +432 -0
- data/lib/groonga-query-log/command/show-running-queries.rb +78 -0
- data/lib/{groonga/query-log/command/replay.rb → groonga-query-log/command/verify-server.rb} +68 -37
- data/lib/{groonga/query-log → groonga-query-log}/incompatibility-detector.rb +3 -5
- data/lib/{groonga/query-log → groonga-query-log}/memory-leak-detector.rb +3 -7
- data/lib/groonga-query-log/parser.rb +173 -0
- data/lib/{groonga/query-log → groonga-query-log}/replayer.rb +7 -8
- data/lib/{groonga/query-log → groonga-query-log}/response-comparer.rb +3 -5
- data/lib/{groonga/query-log → groonga-query-log}/server-verifier.rb +3 -5
- data/lib/groonga-query-log/statistic.rb +192 -0
- data/lib/{groonga/query-log → groonga-query-log}/version.rb +2 -4
- data/lib/groonga/query-log.rb +21 -9
- data/lib/groonga/query-log/command/analyzer.rb +18 -0
- data/lib/groonga/query-log/command/check-command-version-compatibility.rb +2 -55
- data/lib/groonga/query-log/command/detect-memory-leak.rb +3 -78
- data/lib/groonga/query-log/command/extract.rb +5 -179
- data/lib/groonga/query-log/command/format-regression-test-logs.rb +3 -130
- data/lib/groonga/query-log/command/reply.rb +18 -0
- data/lib/groonga/query-log/command/run-regression-test.rb +2 -418
- data/lib/groonga/query-log/command/show-running-queries.rb +3 -65
- data/lib/groonga/query-log/command/verify-server.rb +2 -137
- data/test/{test-analyzer.rb → command/test-analyzer.rb} +17 -11
- data/test/command/test-extract.rb +9 -18
- data/test/command/test-format-regression-test-logs.rb +3 -3
- data/test/fixtures/reporter/html.expected +55 -20
- data/test/helper.rb +22 -7
- data/test/test-incompatibility-detector.rb +3 -3
- data/test/test-parser.rb +19 -4
- data/test/test-replayer.rb +4 -4
- data/test/test-response-comparer.rb +2 -2
- metadata +86 -97
- data/lib/groonga/query-log/analyzer/statistic.rb +0 -194
- data/lib/groonga/query-log/parser.rb +0 -125
- 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
- data/test/fixtures/run-regression-test/results/query.log +0 -0
@@ -1,125 +0,0 @@
|
|
1
|
-
# Copyright (C) 2011-2016 Kouhei Sutou <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
|
-
require "English"
|
18
|
-
|
19
|
-
require "groonga/query-log/analyzer/statistic"
|
20
|
-
|
21
|
-
module Groonga
|
22
|
-
module QueryLog
|
23
|
-
class Parser
|
24
|
-
def initialize(options={})
|
25
|
-
@options = options
|
26
|
-
@slow_operation_threshold = options[:slow_operation_threshold]
|
27
|
-
@slow_response_threshold = options[:slow_response_threshold]
|
28
|
-
@target_commands = options[:target_commands]
|
29
|
-
@target_tables = options[:target_tables]
|
30
|
-
@parsing_statistics = {}
|
31
|
-
end
|
32
|
-
|
33
|
-
# Parses query-log file as stream to
|
34
|
-
# {Groonga::QueryLog::Analyzer::Statistics} including some
|
35
|
-
# informations for each query.
|
36
|
-
#
|
37
|
-
# @param [IO] input IO for input query log file.
|
38
|
-
# @yield [statistics] if a block is specified, it is called
|
39
|
-
# every time a query is finished parsing.
|
40
|
-
# @yieldparam [Groonga::QueryLog::Analyzer::Statistic] statistic
|
41
|
-
# statistics of each query in log files.
|
42
|
-
def parse(input, &block)
|
43
|
-
input.each_line do |line|
|
44
|
-
next unless line.valid_encoding?
|
45
|
-
case line
|
46
|
-
when /\A(\d{4})-(\d\d)-(\d\d) (\d\d):(\d\d):(\d\d)\.(\d+)\|(.+?)\|([>:<])/
|
47
|
-
year, month, day, hour, minutes, seconds, micro_seconds =
|
48
|
-
$1, $2, $3, $4, $5, $6, $7
|
49
|
-
context_id = $8
|
50
|
-
type = $9
|
51
|
-
rest = $POSTMATCH.strip
|
52
|
-
time_stamp = Time.local(year, month, day, hour, minutes, seconds,
|
53
|
-
micro_seconds)
|
54
|
-
parse_line(time_stamp, context_id, type, rest, &block)
|
55
|
-
end
|
56
|
-
end
|
57
|
-
end
|
58
|
-
|
59
|
-
def parsing_statistics
|
60
|
-
@parsing_statistics.values
|
61
|
-
end
|
62
|
-
|
63
|
-
private
|
64
|
-
def parse_line(time_stamp, context_id, type, rest, &block)
|
65
|
-
case type
|
66
|
-
when ">"
|
67
|
-
return if rest.empty?
|
68
|
-
statistic = create_statistic(context_id)
|
69
|
-
statistic.start(time_stamp, rest)
|
70
|
-
@parsing_statistics[context_id] = statistic
|
71
|
-
when ":"
|
72
|
-
return unless /\A(\d+) (.+)\((\d+)\)(\[.+\])?/ =~ rest
|
73
|
-
elapsed = $1
|
74
|
-
name = $2
|
75
|
-
name += $4 if $4
|
76
|
-
n_records = $3.to_i
|
77
|
-
statistic = @parsing_statistics[context_id]
|
78
|
-
return if statistic.nil?
|
79
|
-
statistic.add_operation(:name => name,
|
80
|
-
:elapsed => elapsed.to_i,
|
81
|
-
:n_records => n_records)
|
82
|
-
when "<"
|
83
|
-
return unless /\A(\d+) rc=(-?\d+)/ =~ rest
|
84
|
-
elapsed = $1
|
85
|
-
return_code = $2
|
86
|
-
statistic = @parsing_statistics.delete(context_id)
|
87
|
-
return if statistic.nil?
|
88
|
-
statistic.finish(elapsed.to_i, return_code.to_i)
|
89
|
-
return unless target_statistic?(statistic)
|
90
|
-
block.call(statistic)
|
91
|
-
end
|
92
|
-
end
|
93
|
-
|
94
|
-
def create_statistic(context_id)
|
95
|
-
statistic = Analyzer::Statistic.new(context_id)
|
96
|
-
if @slow_operation_threshold
|
97
|
-
statistic.slow_operation_threshold = @slow_operation_threshold
|
98
|
-
end
|
99
|
-
if @slow_response_threshold
|
100
|
-
statistic.slow_response_threshold = @slow_response_threshold
|
101
|
-
end
|
102
|
-
statistic
|
103
|
-
end
|
104
|
-
|
105
|
-
def target_statistic?(statistic)
|
106
|
-
if @target_commands
|
107
|
-
unless @target_commands.include?(statistic.command.name)
|
108
|
-
return false
|
109
|
-
end
|
110
|
-
end
|
111
|
-
|
112
|
-
if @target_tables
|
113
|
-
table = statistic.command["table"]
|
114
|
-
return false if table.nil?
|
115
|
-
|
116
|
-
unless @target_tables.include?(table)
|
117
|
-
return false
|
118
|
-
end
|
119
|
-
end
|
120
|
-
|
121
|
-
true
|
122
|
-
end
|
123
|
-
end
|
124
|
-
end
|
125
|
-
end
|
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]
|
File without changes
|