codecamp

RELOAD:重新加载一个集合

/admin/collections?action=RELOAD&name=name

在更改ZooKeeper中的配置时将使用RELOAD操作。

RELOAD参数

name

要重新加载的集合的名称。该参数是必需的。

async

请求ID来跟踪这个将被异步处理的操作。

RELOAD响应

响应将包括请求的状态和重新加载的核心。如果状态不是“success”,则会显示错误消息,说明请求失败的原因。

使用RELOAD的例子

您输入以下内容:

http://localhost:8983/solr/admin/collections?action=RELOAD&name=newCollection

则会得到如下输出:

<response>
  <lst name="responseHeader">
    <int name="status">0</int>
    <int name="QTime">1551</int>
  </lst>
  <lst name="success">
    <lst name="10.0.1.6:8983_solr">
      <lst name="responseHeader">
        <int name="status">0</int>
        <int name="QTime">761</int>
      </lst>
    </lst>
    <lst name="10.0.1.4:8983_solr">
      <lst name="responseHeader">
        <int name="status">0</int>
        <int name="QTime">1527</int>
      </lst>
    </lst>
  </lst>
</response>
Collections API修改集合属性的操作:MODIFYCOLLECTION
SPLITSHARD:分割碎片
温馨提示
下载编程狮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; }