如何禁用从 Solr Master 复制所有从站上的特定核心?

How to disable the replication from Solr Master for particular cores on all slaves?

我知道我可以禁用从主服务器到所有从服务器的复制,如下所示:

http://master_host:port/solr/replication?command=disablereplication

但是,据我了解,这种复制禁用适用于所有核心。我们可以指定要为哪个核心禁用复制吗?

请注意,我不想使用从属端的复制禁用工具。

您的命令中缺少核心名称。我认为如果您添加核心名称,那么它应该可以工作。我在 Solr Index Replication 文档中找到了这个命令。

http://master_host:port/solr/core_name/replication?command=disablereplication

此外,我认为您可以探索复制屏幕以从主端禁用复制。 Solr Replication Screen 文档中也提到了这一点。

希望对您有所帮助。