You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I query url @~ 'http://'
It does not ouput any debug message.
environment.
OS: CentOS7
pgroonga: 1.0.0
postgresql 9.4.5
table create
create table urls(id serial,url text);
\copy urls(url) from '/path/to/url_list'
create index ix_url_urls on urls using pgroonga(url) with(tokenizer='TokenRegexp');
like query
output debug message(OK)
set pgroonga.log_level = 'debug';
SET enable_seqscan = off;
select * from urls where url like 'http://%';
2015-12-16 17:32:03.388254|n| grn_init: <5.1.0>
2015-12-16 17:32:03.388394|n| vm.overcommit_memory kernel parameter should be 1: <0>: See INFO level log to resolve this
2015-12-16 17:32:03.388406|i| Some processings with vm.overcommit_memory != 1 may break DB under low memory condition.
2015-12-16 17:32:03.388411|i| To set vm.overcommit_memory to 1
2015-12-16 17:32:03.388415|i| add 'vm.overcommit_memory = 1' to /etc/sysctl.conf and restart your system or
2015-12-16 17:32:03.388419|i| run 'sudo /sbin/sysctl vm.overcommit_memory=1' command.
2015-12-16 17:32:03.408179|i| [object][search][index][key][exact] <Lexicon76021_0.index>
2015-12-16 17:32:03.408210|i| grn_ii_sel > (http://)
2015-12-16 17:32:03.408315|i| n=4 (http://)
2015-12-16 17:32:03.408626|i| exact: 66
2015-12-16 17:32:03.408643|i| hits=66
2015-12-16 17:32:03.417420|n| grn_fin (0)
@~ query
output debug message(NG)
set pgroonga.log_level = 'debug';
SET enable_seqscan = off;
select * from urls where url @~ 'http://';
2015-12-16 17:32:17.338293|n| grn_init: <5.1.0>
2015-12-16 17:32:17.338348|n| vm.overcommit_memory kernel parameter should be 1: <0>: See INFO level log to resolve this
2015-12-16 17:32:17.338352|i| Some processings with vm.overcommit_memory != 1 may break DB under low memory condition.
2015-12-16 17:32:17.338354|i| To set vm.overcommit_memory to 1
2015-12-16 17:32:17.338356|i| add 'vm.overcommit_memory = 1' to /etc/sysctl.conf and restart your system or
2015-12-16 17:32:17.338365|i| run 'sudo /sbin/sysctl vm.overcommit_memory=1' command.
2015-12-16 17:32:17.352145|n| grn_fin (0)
The text was updated successfully, but these errors were encountered:
problem.
When I query
url @~ 'http://'It does not ouput any debug message.
environment.
table create
like query
output debug message(OK)
@~ query
output debug message(NG)
The text was updated successfully, but these errors were encountered: