码迷,mamicode.com
首页 > 其他好文 > 详细

solr数据分片相关

时间:2017-07-06 20:45:34      阅读:159      评论:0      收藏:0      [点我收藏+]

标签:select   source   启动   div   名称   相关   创建   参数   core   

solr操作url

使用正常的core,使用命令生成coillection

solr create_collection -c students2 -d ../server/solr/my/conf -shards 2 -replicationFactor 2  -router implicit  -routerField name
## 等价于调用以下url
http://localhost:8081/solr/admin/collections?action=CREATE&name=students&numShards=2&replicationFactor=2&maxShardsPerNode=2&collection.configName=students

1:所有shard上查询数据
http://localhost:8081/solr/mycollection/select?q=*%3A*
2:指定shard查询数据
http://localhost:8081/solr/mycollection/select?q=*%3A*&shard=shard1
3:当shard没有启动时,为了能正常查询需如下:
http://localhost:8081/solr/mycollection/select?q=*%3A*&shards.tolerant=true
4:添加集合
http://localhost:8081/solr/admin/collections?action=CREATE&name=mycollection&numShards=2&replicationFactor=2
参数名 说明
Name 要创建的集合名称
numShards 指定集合Shard的数量
replicationFactor 指定每个Shard副本数量
maxShardsPerNode 每个Solr服务器节点上最大Shard数量
5:删除集合
http://localhost:8081/solr/admin/collections?action=DELETE&name=mycollection
6:重新加载
http://localhost:8081/solr/admin/collections?action=RELOAD&name=mycollection

solr数据分片相关

标签:select   source   启动   div   名称   相关   创建   参数   core   

原文地址:http://www.cnblogs.com/faunjoe88/p/7127931.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!