在哪里可以找到solr 5的schema.xml文件

时间:2017-05-18 14:58:24

标签: xml solr schema solr5

在哪里可以找到solr 5的schema.xml文件, 或者它应该手动创建, 我应该为每个示例的每个核心或schema.xml创建schema.xml吗?

1 个答案:

答案 0 :(得分:0)

在云模式下,每个集合都有一个架构。此架构不会自动添加。您无需从头开始自己创建文件。您可以在example目录中找到随时可用的配置集,然后您可以修改该配置集以供自己使用。

在云模式下,所有配置文件都存储在zookeeper上。您可以使用solr安装提供的zkcli.sh脚本连接到它。对于6.x,您可以在${SOLR_HOME}/server/scripts/cloud-scripts/zkcli.sh

下找到它

上传架构集:

server/scripts/cloud-scripts/zkcli.sh -z localhost:9983 -cmd upconfig -confdir example/files/conf -confname collection1

创建一个新集合,然后检索文件:

server/scripts/cloud-scripts/zkcli.sh -zkhost localhost:9983 -cmd get /configs/<your_collection_name>/managed-schema