I have a saved search which will return about 80000++ results. I tried the below command in Search bar, it returns correct total of results.
| savedsearch "get_complete_dataset"
Then I use it in my view:
module name="Search" layoutPanel="panel_row1_col1" autoRun="True">
param name="search">| savedsearch "get_complete_dataset"/param>
module name="HTML">
param name="html">
sid=$results.sid$<br>
]]></param>
/module>
/module>
About view return sid="1373012981.47". Then I run below command in Search bar: | loadjob "1373012981.47"
I'm suprise as the job only returns 10000 results. Why is this happened? What can I do so that the search can return correct result?