如何使用solrj放置solrconfig.xml和schema.xml

问题描述 投票:0回答:1

我想用solrj把新的solrconfig.xmlschema.xml。 我已经找到了SchemaRquest。但是,它只提供了一些添加/更新/删除功能。 我想要做的是首先定义solrconfig.xmlschema.xml并将其放入集合并使用solrj使用它。

solr solrj
1个回答
0
投票

假设您有SolrCloud设置,您可以这样做:

$SOLR_HOME/server/scripts/cloud-scripts/zkcli.sh -zkhost zkhost:3181 -confname example-cmd putfile /configs/example/managed-schema ./managed-schema 

如果你想使用Java,你可以这样做:

ZooKeeper zk = new ZooKeeper(host, tick * 15, this);
zk.setData(PATH_IN_ZK, contentString.getBytes(StandardCharsets.UTF_8), -1);
© www.soinside.com 2019 - 2024. All rights reserved.