codecamp

REQUESTSTATUS:异步呼叫的请求状态

REQUESTSTATUS操作可以请求已提交的异步集合API(以下)调用的状态和响应。此调用也用于清除存储的状态。

/admin/collections?action=REQUESTSTATUS&requestid=request-id

REQUESTSTATUS参数

requestid

用户为请求定义的请求ID。这可以用来跟踪提交的异步任务的状态。该参数是必需的。

使用REQUESTSTATUS的例子

在该例中输入:有效的请求ID

http://localhost:8983/solr/admin/collections?action=REQUESTSTATUS&requestid=1000

得到的输出为:

<response>
  <lst name="responseHeader">
    <int name="status">0</int>
    <int name="QTime">1</int>
  </lst>
  <lst name="status">
    <str name="state">completed</str>
    <str name="msg">found 1000 in completed tasks</str>
  </lst>
</response>

或者输入:无效的请求ID

http://localhost:8983/solr/admin/collections?action=REQUESTSTATUS&requestid=1004

得到的输出:

<response>
  <lst name="responseHeader">
    <int name="status">0</int>
    <int name="QTime">1</int>
  </lst>
  <lst name="status">
    <str name="state">notfound</str>
    <str name="msg">Did not find taskid [1004] in any tasks queue</str>
  </lst>
</response>
SolrCloud群集状态:CLUSTERSTATUS
SolrCloud删除状态:DELETESTATUS
温馨提示
下载编程狮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; }