在 SOLR 中动态创建新的核心目录

发布于 2024-09-29 15:09:12 字数 522 浏览 4 评论 0原文

我正在使用 solr 1.4.1 构建分布式搜索引擎,但我不想只使用一个索引文件 - 我想在我的 java 代码中动态创建新的核心“索引”目录。

我发现以下其余API可以使用现有核心目录(http:// /wiki.apache.org/solr/CoreAdmin)。

http://localhost:8983/solr/admin/cores?action=CREATE&name=coreX&instanceDir=path_to_instance_directory&config=config_file_name.xml&schema=schem_file_name.xml&dataDir=data

有没有办法在没有现有核心目录的情况下创建新核心? solr有这样的功能吗?通过休息还是在 solrj-api 中?谢谢。

i am using solr 1.4.1 for building a distributed search engine, but i dont want to use only one index file - i want to create new core "index"-directories on the fly in my java code.

i found following rest api to create new cores using an EXISTING core directory (http://wiki.apache.org/solr/CoreAdmin).

http://localhost:8983/solr/admin/cores?action=CREATE&name=coreX&instanceDir=path_to_instance_directory&config=config_file_name.xml&schema=schem_file_name.xml&dataDir=data

is there a way to create a new core without an extisting core directory? has solr such a function? via rest or in the solrj-api? thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

回忆凄美了谁 2024-10-06 15:09:12

目前无法以编程方式将架构和配置提交到 Solr 以创建新的核心。 这是有关此问题的 JIRA 问题

正如评论中提到的,您可以使用 WebDAV、scp 或 sftp 等工具来解决这个问题。

It's not currently possible to programmatically submit your schema and config to Solr to create a new core. Here's the JIRA issue about it.

As mentioned in the comments, you can work around it by using something like WebDAV or scp or sftp.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文