Bonsai ElasticSearch + Heroku + Python - 同义词文件的位置

时间:2014-09-30 17:47:52

标签: django heroku elasticsearch bonsai-elasticsearch

我正在使用bonsai.io并希望将elasticsearch指向我的同义词文件。

我已将wn_s.pl保存在heroku上的一个文件夹中,django应用程序可以看到该文件:

>>> call(['ls', '-l', os.path.join(settings.BASE_DIR, 'data', 'wn_s.pl')])
-rwx------ 1 u37195 37195 7494480 2014-09-30 17:24 /app/data/wn_s.pl

但是当我使用过滤器创建索引时:

'filter': {
          'my_filter': {
                       'type': 'synonym',
                       'format': 'wordnet',
                       'synonyms_path': os.path.join(settings.BASE_DIR, 'data', 'wn_s.pl')
                       }
          }

我收到错误:

TransportError: TransportError(500, u'IndexCreationException[[article-index] failed to create index]; nested: FailedToResolveConfigException[Failed to resolve config path [/app/data/wn_s.pl], tried file path [/app/data/wn_s.pl], path file [/opt/elasticsearch/current/config/app/data/wn_s.pl], and classpath]; ')

我该如何解决?

由于

1 个答案:

答案 0 :(得分:0)