1

./manage.py rebuild_index を使用して初めて、ubuntu で Django の solr インデックスを構築しようとしていますが、次のエラーが発生します。

Removing all documents from your index because you said so.
Failed to clear Solr index: Connection to server 'http://localhost:8983/solr/update/?commit=true'                timed out: HTTPConnectionPool(host='localhost', port=8983): Request timed out. (timeout=10)
All documents removed.
Indexing 4 dishess
Failed to add documents to Solr: Connection to server 'http://localhost:8983/solr/update/?commit=true' timed out: HTTPConnectionPool(host='localhost', port=8983): Request timed out. (timeout=10)

ウェブブラウザから localhost:8983/solr/ と localhost:8983/solr/admin にアクセスできます

4

2 に答える 2

4

TIMEOUTでバンプアップできますsettings.py

例えば

HAYSTACK_CONNECTIONS = {
    'default': {
        'ENGINE': 'haystack.backends.solr_backend.SolrEngine',
        'URL': 'http://127.0.0.1:8080/solr/default',
        'INCLUDE_SPELLING': True,
        'TIMEOUT': 60 * 5,
    },
}
于 2013-11-06T04:13:13.583 に答える