Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Riak Search - Results limited to first 10000

I have a Riak Search node running and am trying out some test queries to get a feel for performance.

I'm running a query via the search shell, and the results are being restricted to the first 10000. I want all results to come back, but can't find where this 10000 limit is coming from?

like image 555
AdaTheDev Avatar asked Dec 06 '25 01:12

AdaTheDev


1 Answers

From the riak_search root directory, edit rel/riaksearch/etc/app.config and in the riak search configuration, set your max_search_results:

...

{riak_search, [
                {search_backend, merge_index_backend},
                {java_home, "/usr"},
                {max_search_results, <put your max>}
               ]},
like image 185
Lyes Zaiko Avatar answered Dec 07 '25 23:12

Lyes Zaiko