3

我正在尝试使用 django-haystack 为 Solr 中的模型建立索引,但它返回了以下错误(使用rebuild_index 或 update_index 时):

Failed to add documents to Solr: [Reason: Error 404 Not Found]

这是 search_indexes.py

from haystack import indexes
from haystack.indexes import SearchIndex
from jobpost.models import *



class JobIndex(indexes.SearchIndex, indexes.Indexable):
    text = indexes.CharField(document=True, use_template=True)
    post_type = indexes.CharField(model_attr='post_type')
    location = indexes.CharField(model_attr='location')
    job_type = indexes.CharField(model_attr='job_type')
    company_name = indexes.CharField(model_attr='company_name')
    title = indexes.CharField(model_attr='title')

    def get_model(self):
        return jobpost

    def index_queryset(self,**kwargs):
        return self.get_model().objects.all()

干草堆连接:

HAYSTACK_CONNECTIONS = {
    'default': {
        'ENGINE': 'haystack.backends.solr_backend.SolrEngine',
        'URL': 'http://127.0.0.1:8983/solr',

        'SITECONF': 'jobpost.search_sites'
    },
}

我已经多次生成 schema.xml 重新启动 solr.. 将它放在 solr/conf.. 不知道是什么问题

4

1 回答 1

5

设置文档中所述,您需要指定核心的 url。好像您错过了 URL 中的核心。您需要创建一个核心,并且 url 应该如下所示:

'URL': 'http://localhost:9001/solr/default',
于 2015-04-23T20:47:08.937 回答