当更新 sphinx.conf 中的索引时,总是需要在 sphinx 中重新启动 searchd 吗?

发布于 2024-12-05 19:01:36 字数 164 浏览 1 评论 0原文

如果我更新 sphinx.conf 文件中的资源,我可以使用 --rotate 重新索引,一切正常。如果我更新 sphinx.conf 中的索引或添加新索引 --rotate 不起作用,我必须重新启动 searchd。

我这样做是否正确,我觉得 --rotate 应该正确索引新的或修改的索引配置。

If I update a resource in my sphinx.conf file I can reindex with --rotate and everything works fine. If I update an index in my sphinx.conf or add a new index --rotate has no effect and I have to restart searchd.

Am I doing this correctly, I feel like --rotate should correctly index the new or modified index configurations.

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

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

发布评论

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

评论(2

忆伤 2024-12-12 19:01:36

这取决于您的 sphinx 版本。在最新版本中,几乎所有内容(可能除了 searchd 配置部分)都可以更改配置文件。

只需更改单个索引的设置,特定索引的 --rotate 索引就足够了。如果您更改特定索引的设置,并且实际上没有重新索引它,searchd 可能不会拾取这些更改。 (因为它从索引头读取内容,而不是直接从conf文件读取内容)

我刚刚测试了添加索引和删除索引。两者都以一种无缝的旋转方式发生。
Sphinx 2.0.1-beta (r2792)

在 0.9.9-rc1 之前 - 大多数配置文件更改都需要重新启动。

It depends on your sphinx version. In the latest versions just about anything (except maybe the searchd config section) will work with changing the config file.

Just changing the settings on an individual index, a --rotate indexing of the particular index is enough. If you change the settings of particular index, and dont actully reindex it, searchd probably wont pickup the changes. (because it reads stuff from the index header, not direct from conf file)

I just tested adding a index, and removing a index. both happened with a seemless rotate.
Sphinx 2.0.1-beta (r2792)

Prior to 0.9.9-rc1 - a restart would be required for most config file changes.

雨巷深深 2024-12-12 19:01:36

修改sphinx.conf文件时必须重新启动searchd。

旋转不会影响 sphinx.conf 文件中添加的新索引 - 它会重新索引原始索引的类似索引。有点像拥有一个文件和文件副本(1),然后交换它们。
如果修改 .conf 文件,就有点像声明一个全新的索引。
因此,如果先前不存在确切的索引,则 --rotate 不起作用。
看; http://sphinxsearch.com/docs/2.0.1/ref-indexer.html

You have to restart searchd when modifying the sphinx.conf file.

Rotate will not effect new index additions to your sphinx.conf file - it reindexes an analogous index of the original. Kind of like having a file and file-copy(1) then swapping them over.
If you modify the .conf file its sort of like declaring a brand new index.
Thus --rotate does not work if the exact index does not previously exist.
See; http://sphinxsearch.com/docs/2.0.1/ref-indexer.html

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