codecamp

使用Collection API的异步调用

异步调用

由于某些集合API调用可能是长时间运行的任务(如SPLITSHARD),因此可以选择异步运行这些调用。指定async=<request-id>使您可以进行异步调用,在任何时候都可以使用 REQUESTSTATUS 调用请求其状态。

截至目前,REQUESTSTATUS不会自动清理跟踪数据结构,这意味着完成或失败任务的状态保持存储在ZooKeeper中,除非手动清除。DELETESTATUS可以用来清除存储的状态。但是,存储在群集中的异步调用响应数量有10,000个限制。

异步请求的示例

示例输入:

http://localhost:8983/solr/admin/collections?action=SPLITSHARD&collection=collection1&shard=shard1&async=1000

得到输出:

<response>
  <lst name="responseHeader">
    <int name="status">0</int>
    <int name="QTime">99</int>
  </lst>
  <str name="requestid">1000</str>
</response>
MOVEREPLICA:将副本移到新节点
SolrCloud参数引用
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

SolrCloud

SolrCloud配置和参数

如何使用AsciiDoc

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }