在elastic4s中滚动期间是否启用了`scan`参数?

时间:2015-05-07 06:51:16

标签: scala scroll elasticsearch elastic4s

Here (at the end of table)关于在scrolls中使用elastic4s的示例,但我看不到任何用于设置scan参数的API。它是默认启用还是应该与某些钩子一起使用?

顺便说一下

默认情况下,在弹性搜索的scan期间启用scrolling参数?

1 个答案:

答案 0 :(得分:4)

在初始搜索时设置scan参数,所以:

client.execute {
  search in "index" / "type" query <somequery> searchType SearchType.Scan scroll "1m"
}

之后

client.execute {
  search scroll <id> keepAlive "1m"
}

(取自1.5x版本的elastic4s)