Solrcloud delete collection bug?

依然范特西╮ 提交于 2020-01-13 19:07:05

问题


First,I create a collection called usercollection:

http://xxxxx/solr/admin/collections?action=CREATE&name=usercollection&numShards=3&replicationFactor=3&maxShardsPerNode=3

Then I found something wrong, so I delete it.

 http://xxxx/solr/admin/collections?action=DELETE&name=usercollection

At last ,I want to create the collection again. And I found something wrong.

`May 16, 2013 8:32:23 PM org.apache.solr.cloud.OverseerCollectionProcessor run
 INFO: Overseer Collection Processor: Get the message id:/overseer/collection-queue-    work/qn-0000000000 message:{
"operation":"createcollection",
"numShards":"3",
"maxShardsPerNode":"3",
"createNodeSet":null,
"name":"usercollection",
"replicationFactor":"3"}
May 16, 2013 8:32:23 PM org.apache.solr.common.SolrException log
SEVERE: Collection createcollection of createcollection           failed:org.apache.solr.common.SolrException: collection already exists: usercollection
    at org.apache.solr.cloud.OverseerCollectionProcessor.createCollection(OverseerCollectionProcessor.java:311)
    at org.apache.solr.cloud.OverseerCollectionProcessor.processMessage(OverseerCollectionProcessor.java:160)
    at org.apache.solr.cloud.OverseerCollectionProcessor.run(OverseerCollectionProcessor.java:112)
    at java.lang.Thread.run(Thread.java:662)`

So, I think the collection API has something wrong when delete.Thus, how can I really delete a collection?


回答1:


Had the same problem and ended up resolving by manually editing and updating clusterstate.json in zookeeper using zkcli.sh provided with Solr.

  1. Download clusterstate.json:

    zkcli.sh -z zk-host-name -cmd getfile /clusterstate.json clusterstateLoca.json

  2. Edit the downloaded clusterstateLocal.json, remove the nodes for the deleted collection, save clusterstateLocal.json locally.

  3. Remove stale clusterstate.json from ZK

    zkcli.sh -z zk-host-name -cmd clear /clusterstate.json

  4. Upload modified clusterstate.json to ZK:

    zkcli.sh -z zk-host-name -cmd putfile /clusterstate.json ./clusterstateLocal.json




回答2:


After deleting a collection you should also Commit (you can do the same without curl if using browser)

curl http://localhost:8080/solr/update -H "Content-type: text/xml" --data-binary '<commit />'

...and it is also a good idea to tell Solr to optimize it's index at this point:

curl http://localhost:8080/solr/update -H "Content-type: text/xml" --data-binary '<optimize />'

Source http://www.alphadevx.com/a/365-Clearing-a-Solr-search-index




回答3:


You need to update clusterstate.json file in your zookeeper ensemble. Your cloud collection information is kept there.



来源:https://stackoverflow.com/questions/16579242/solrcloud-delete-collection-bug

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!