在哪里可以找到 solr 5 的 schema.xml 文件
where to find schema.xml file for solr 5
在哪里可以找到 solr 5 的 schema.xml 文件,
或者它应该手动创建,
我应该为每个核心创建 schema.xml 还是为每个示例创建 schema.xml?
在云模式下,每个 collection 都有一个架构。此架构不会自动添加。您不需要自己从头开始创建文件。您可以在 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
新建collection然后检索文件:
server/scripts/cloud-scripts/zkcli.sh -zkhost localhost:9983 -cmd get /configs/<your_collection_name>/managed-schema
在哪里可以找到 solr 5 的 schema.xml 文件, 或者它应该手动创建, 我应该为每个核心创建 schema.xml 还是为每个示例创建 schema.xml?
在云模式下,每个 collection 都有一个架构。此架构不会自动添加。您不需要自己从头开始创建文件。您可以在 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
新建collection然后检索文件:
server/scripts/cloud-scripts/zkcli.sh -zkhost localhost:9983 -cmd get /configs/<your_collection_name>/managed-schema